Web Safe Color
Copy-ready color values
HEX
#FFCC33RGB
rgb(255, 204, 51)HSL
hsl(45, 100%, 60%)HSV
hsv(45, 80%, 100%)CMYK approx.
cmyk(0, 20, 80, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFCC33 | |
| RGB | rgb(255, 204, 51) | |
| HSL | hsl(45, 100%, 60%) | |
| HSV | hsv(45, 80%, 100%) | |
| CMYK approx. | cmyk(0, 20, 80, 0) | |
| CSS keyword | ffcc33 |
Contrast and classification
LightLightness1.51:1Contrast with white13.94:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFD147
White 30%#FFDB70
White 70%#FFF0C2
White 90%#FFFAEB
Black 10%#E6B82E
Black 30%#B38F24
Black 70%#4D3D0F
Black 90%#1A1405
Harmony palettes
Complementary
#0033CC#3D64D8Analogous
#F9CC4B#FFBA45Triadic
#CC33FF#33FFCCSplit complementary
#2E58D5#002AA7Using Ffcc33
Ffcc33 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-ffcc33: #ffcc33;
}
.button-primary {
background: var(--color-ffcc33);
color: #000000;
}
$ffcc33: #ffcc33;
// Tailwind arbitrary value
class="bg-[#ffcc33] text-white"