Web Safe Color
Copy-ready color values
HEX
#330099RGB
rgb(51, 0, 153)HSL
hsl(260, 100%, 30%)HSV
hsv(260, 100%, 60%)CMYK approx.
cmyk(67, 100, 0, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #330099 | |
| RGB | rgb(51, 0, 153) | |
| HSL | hsl(260, 100%, 30%) | |
| HSV | hsv(260, 100%, 60%) | |
| CMYK approx. | cmyk(67, 100, 0, 40) | |
| CSS keyword | 330099 |
Contrast and classification
DarkLightness13.12:1Contrast with white1.60:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#471AA3
White 30%#704DB8
White 70%#C2B3E0
White 90%#EBE6F5
Black 10%#2E008A
Black 30%#24006B
Black 70%#0F002E
Black 90%#05000F
Harmony palettes
Complementary
#CCFF66#D8FF8BAnalogous
#2D008D#331287Triadic
#009933#993300Split complementary
#D5FF82#A7D154Using 330099
330099 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-330099: #330099;
}
.button-primary {
background: var(--color-330099);
color: #ffffff;
}
$330099: #330099;
// Tailwind arbitrary value
class="bg-[#330099] text-white"