Explore the base color
Review HEX, RGB, HSL, and HSV for red, then browse shades, tints, tones, and hues.
Red color codes for #FF0000 — HEX, RGB, HSL, HSV, shades, named reds, and copy-ready CSS. Free online tool — no sign-up. Runs locally in your browser.
Loading tool…
Follow these steps for a clear answer.
Review HEX, RGB, HSL, and HSV for red, then browse shades, tints, tones, and hues.
Click a generated strip or a CSS named red shade to load codes and harmonies.
Copy HEX, rgb(), hsl(), or the keyword—and check contrast on white and black.
Core relationships used by this color tool.
Common picks with formula and result.
CSS keyword
Family neighbor
Background use
Harmony hint
Version 1.0.0
Shades/tints/tones adjust HSL L or S from base H; harmonies offset H on the hue circleRed signals urgency, sale, and error states in UI. Use it sparingly for CTAs and alerts; pair with neutrals so it stays readable.
For full keyword search across all hues, use HTML color codes. For palette generation, try the color scheme generator or color wheel.
:root {
--red: #ff0000;
--red-deep: #8b0000;
--red-soft: #fa8072;
}
.banner {
background-color: var(--red);
color: #ffffff;
}
| Name | HEX | RGB | Feel |
|---|---|---|---|
| red | #FF0000 | 255, 0, 0 | Base keyword |
| maroon | #800000 | 128, 0, 0 | Named shade |
| orange | #FFA500 | 255, 165, 0 | Named shade |
| tomato | #FF6347 | 255, 99, 71 | Named shade |
| coral | #FF7F50 | 255, 127, 80 | Named shade |
| pink | #FFC0CB | 255, 192, 203 | Named shade |
| deeppink | #FF1493 | 255, 20, 147 | Dark shade |
| crimson | #DC143C | 220, 20, 60 | Named shade |
| darkred | #8B0000 | 139, 0, 0 | Dark shade |
| darksalmon | #E9967A | 233, 150, 122 | Dark shade |
| firebrick | #B22222 | 178, 34, 34 | Named shade |
| indianred | #CD5C5C | 205, 92, 92 | Named shade |
Key distinctions behind the tool.
The CSS named color red is #FF0000, equal to rgb(255, 0, 0) and hsl(0°, 100%, 50%).
Red is full-intensity primary red. Maroon is a darker, browner red often better for text or muted branding.
Neutrals (white, black, gray) keep red sharp. Soft pinks and peaches calm it; teal/cyan complements add contrast. Always check text contrast.
Pure red on white usually passes AA, but can feel harsh for long text—prefer darker reds like darkred or maroon for body copy.
Use color: red;, color: #FF0000;, or color: rgb(255, 0, 0); on any property that accepts a <color> value, including background-color and border-color.