CSS Gradient Generator — illustrative example INPUT Create a left-to-right background from #fff7ed to #fed7aa, with a solid fallback. RESULT background-color: #fff7ed; background-image: linear-gradient(90deg, #fff7ed 0%, #fed7aa 100%); Check any foreground text against the full gradient, not just one endpoint. REVIEW A gradient should specify direction, stops and intended surface. Check contrast wherever text overlays it and provide a solid fallback when the design requires one. This is a teaching example, not a live execution record.