Skip to content
Portfolio
Dawn Departs#ccffffrgb(204, 255, 255) · blue

Dawn Departs #ccffff

Dawn Departs is the registered name for #ccffff. Below: values, variations, harmonies, contrast and ready-to-paste CSS.

Color values

The same color written in every notation you are likely to need. Click any row to copy it.

What HEX means

#ccffff packs three channels into hexadecimal pairs from 00 to FF: cc red, ff green, ff blue.

What RGB means

Red 204, green 255, blue 255 — each from 0 to 255. It is the same color as the hex above, just in decimal.

What HSL means

Hue 180° (blue), saturation 100%, lightness 90%. HSL is handy when you want the same hue a little lighter or less saturated.

Why OKLCH

OKLCH is a perceptual space — changing its lightness (96.5%) matches how your eye reads brightness far better than HSL, which is why the palette below is generated in it.

Accessibility & contrast

WCAG requires at least 4.5:1 for normal text and 3:1 for large text at level AA. Use this to decide whether white or black text belongs on this color.

AaThis text is readable
White text1.09:1
AA AAA AA Large
AaThis text is readable
Black text19.32:1
AA AAA AA Large

Closest accessible alternative

Nudged in lightness to reach 4.5:1 while keeping the hue as close as possible.

Aa

For white text

#4d7d7d

4.62:1

UI preview

How this color behaves in a real interface, not just as a square.

Badge

A paragraph with a themed link inside it.

Information

An alert accented with this color.

Progress

Tints & shades

A tint mixes the color toward white; a shade mixes it toward black. Click any swatch to open it.

Color harmonies

Schemes built by rotating the hue around the color wheel — the starting point for a coherent palette.

Complementary

Opposite on the wheel — maximum contrast.

Analogous

Neighbours on the wheel — calm and cohesive.

Triadic

Three hues 120° apart — vivid but balanced.

Split complementary

Softer than a straight complement.

Tetradic

Four hues — enough for a design system.

Palette generator

A Tailwind-style 50–950 ramp anchored on this color at step 500, generated in OKLCH so the steps feel evenly spaced.

:root {
  --primary-50: #edfbfb;
  --primary-100: #ddf2f2;
  --primary-200: #c3e0e0;
  --primary-300: #a4c9c9;
  --primary-400: #7fabab;
  --primary-500: #ccffff;
  --primary-600: #437171;
  --primary-700: #305b5b;
  --primary-800: #224849;
  --primary-900: #1a3a3b;
  --primary-950: #0d2121;
}

Gradient

A linear blend from this color to its complement, with the CSS ready to paste.

background: linear-gradient(135deg, #ccffff, #ffcccc);

Nearest named colors

The closest matches from a corpus of about 31,900 named colours, ranked by ΔE (CIEDE2000) — a measure of how different two colours look. ΔE under 1 is nearly indistinguishable; around 10 is clearly different.

CSS code

Every common way to use this color in a stylesheet or a component.

color: #ccffff;
background-color: #ccffff;
:root {
  --color-primary: #ccffff;
}
color: rgb(204 255 255);
color: oklch(96.5% 0.0516 196.33);
<div class="bg-[#ccffff]">…</div>