#450A0A color
The swatch above shows #450A0A with its hex code written on it in white and in black, so you can see which of the two is legible before reading the measured ratios below.
#450A0A is a very dark, vivid red, closest to the CSS named color maroon (#800000).
It is also a Tailwind CSS default: red-950. That means you can write bg-red-950 or text-red-950 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #450A0A |
| RGB | rgb(69, 10, 10) |
| HSL | hsl(0, 75%, 15%) |
| CMYK | cmyk(0%, 86%, 86%, 73%) |
| Decimal | 4524554 |
| CSS | color: #450A0A; |
| Android | 0xFF450A0A |
| Swift | UIColor(red: 0.271, green: 0.039, blue: 0.039, alpha: 1) |
Accessibility and contrast
| White text on #450A0A | 16.14:1 — AA pass · AA large pass · AAA pass |
| Black text on #450A0A | 1.30:1 — AA fail · AA large fail · AAA fail |
| Recommended text color | white |
WCAG 2.1 asks for at least 4.5:1 for body text and 3:1 for large text (18 pt, or 14 pt bold).
Tints and shades of #450A0A
Each swatch keeps the hue and saturation of #450A0A and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #450A0A
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #450A0A in code
/* CSS */
.element { color: #450A0A; background-color: #450A0A; }
.element { color: rgb(69 10 10); }
.element { color: hsl(0 75% 15%); }
/* Tailwind */
<div class="bg-red-950 text-white">
/* SCSS variable */
$brand: #450A0A;
Frequently asked questions
What color is #450A0A?
#450A0A is a very dark, vivid red. Its hue sits at 0° on the color wheel, with 75% saturation and 15% lightness.
What is #450A0A in RGB?
#450A0A converts to rgb(69, 10, 10) — 69 red, 10 green and 10 blue.
What is #450A0A in CMYK?
Approximately cmyk(0%, 86%, 86%, 73%). Print output depends on the ICC profile of the press and paper, so treat this as a starting point rather than an exact match.
Should text on #450A0A be white or black?
White gives the better contrast ratio (16.14:1 versus 1.30:1).
What is the complementary color of #450A0A?
#0A4343 — the hue directly opposite #450A0A on the color wheel.