Flame Linear
GradientFlame Linear is a flame-like warmth gradient built with linear CSS syntax.
Red and Yellow CSS gradients pair red with yellow for layouts that need a clear two-color system. This page generates 8 reusable gradient variations from the same pair, including linear blends, radial lighting, conic sweeps, deeper backgrounds, brighter accents, and a hard split option. The goal is to make the color relationship easy to evaluate before you open a generator or copy a declaration into a project. Red sets one side of the visual temperature, while Yellow changes the contrast, depth, and direction of the final effect. The related preset links below connect this pair back to real CSS Forge presets when matching tags exist, so the page is not isolated from the rest of the gallery. Use the generated gradients for quick exploration, then move to the gradient generator when you need exact angle, center, or stop control.
Gradients
A direct diagonal blend for hero panels and cards.
background: linear-gradient(135deg, #ef4444 0%, #facc15 100%);A reversed angle that changes the visual weight of the same pair.
background: linear-gradient(45deg, #facc15 0%, #ef4444 100%);A softer center-weighted gradient with a clear outer color.
background: radial-gradient(circle at center, #f36d6d 0%, #ef4444 38%, #facc15 100%);A corner-lit gradient for cards with visible direction.
background: radial-gradient(circle at top left, #fbd748 0%, #facc15 34%, #ad3337 100%);A conic sweep useful for badges and decorative blocks.
background: conic-gradient(from 45deg, #ef4444, #facc15, #f36d6d, #ef4444);A deeper gradient for dark UI backgrounds.
background: linear-gradient(160deg, #ad3337 0%, #ef4444 45%, #b59516 100%);A brighter variation that keeps both colors visible.
background: linear-gradient(120deg, #f36d6d 0%, #ef4444 48%, #fbd748 100%);A hard split for graphic sections and comparison layouts.
background: linear-gradient(90deg, #ef4444 0%, #ef4444 42%, #facc15 42%, #facc15 100%);Shadows
box-shadow: 0px 22px 52px -26px rgba(239, 68, 68, 0.44), 0px 8px 18px -12px rgba(2, 6, 23, 0.18);
box-shadow: 12px 16px 0px 0px rgba(250, 204, 21, 0.44), 0px 8px 18px -12px rgba(2, 6, 23, 0.18);
box-shadow: 0px 0px 42px -6px rgba(239, 68, 68, 0.44), 0px 8px 18px -12px rgba(2, 6, 23, 0.18);
box-shadow: 0px 34px 80px -36px rgba(250, 204, 21, 0.44), 0px 8px 18px -12px rgba(2, 6, 23, 0.18);
Related