Toolumina Extended Palette
Copy-ready color values
HEX
#3AB6DFRGB
rgb(58, 182, 223)HSL
hsl(195, 72%, 55%)HSV
hsv(195, 74%, 87%)CMYK approx.
cmyk(74, 18, 0, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3AB6DF | |
| RGB | rgb(58, 182, 223) | |
| HSL | hsl(195, 72%, 55%) | |
| HSV | hsv(195, 74%, 87%) | |
| CMYK approx. | cmyk(74, 18, 0, 13) | |
| CSS keyword | toolumina-h195-s72-l55 |
Contrast and classification
LightLightness2.35:1Contrast with white8.94:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#4EBDE2
White 30%#75CCE9
White 70%#C4E9F5
White 90%#EBF8FC
Black 10%#34A4C9
Black 30%#297F9C
Black 70%#113743
Black 90%#061216
Harmony palettes
Complementary
#C54920#D37556Analogous
#49B6CB#3ABBDATriadic
#B6DF3A#DF3AB6Split complementary
#CF6A48#A23C1AUsing Toolumina H195 S72 L55
Toolumina H195 S72 L55 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-toolumina-h195-s72-l55: #3ab6df;
}
.button-primary {
background: var(--color-toolumina-h195-s72-l55);
color: #000000;
}
$toolumina-h195-s72-l55: #3ab6df;
// Tailwind arbitrary value
class="bg-[#3ab6df] text-white"