CSS Named Color
Copy-ready color values
HEX
#FF6347RGB
rgb(255, 99, 71)HSL
hsl(9, 100%, 64%)HSV
hsv(9, 72%, 100%)CMYK approx.
cmyk(0, 61, 72, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF6347 | |
| RGB | rgb(255, 99, 71) | |
| HSL | hsl(9, 100%, 64%) | |
| HSV | hsv(9, 72%, 100%) | |
| CMYK approx. | cmyk(0, 61, 72, 0) | |
| CSS keyword | tomato |
Contrast and classification
LightLightness2.95:1Contrast with white7.13:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FF7359
White 30%#FF927E
White 70%#FFD0C8
White 90%#FFEFED
Black 10%#E65940
Black 30%#B34532
Black 70%#4D1E15
Black 90%#1A0A07
Harmony palettes
Complementary
#009CB8#3DB4C9Analogous
#EC635D#FF604ATriadic
#6347FF#47FF63Split complementary
#2EAEC5#008097Using Tomato
Tomato works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-tomato: #ff6347;
}
.button-primary {
background: var(--color-tomato);
color: #000000;
}
$tomato: #ff6347;
// Tailwind arbitrary value
class="bg-[#ff6347] text-white"