Explore the base color
Review HEX, RGB, HSL, and HSV for pure blue, then browse shades, tints, tones, and hues.
Blue color codes for #0000FF — HEX, RGB, HSL, HSV, shades, named blues, and copy-ready CSS. Free online tool — no sign-up. Runs locally in your browser.
Loading tool…
Follow these steps for a clear answer.
Review HEX, RGB, HSL, and HSV for pure blue, then browse shades, tints, tones, and hues.
Click a generated strip or a CSS named blue (navy, dodgerblue, skyblue, …) to load codes and harmonies.
Copy HEX, rgb(), hsl(), or the keyword—and check contrast on white and black.
Core relationships used by this color tool.
Common picks with formula and result.
CSS keyword
Darker blue
Bright accent
Blue + yellow
Version 1.0.0
Shades/tints/tones adjust HSL L or S from base H; harmonies offset H on the hue circleBlue evokes sky and water—often read as calm, trustworthy, and professional in UI. Use lighter blues for soft surfaces, mid blues for interactive accents, and navy/midnight for text or headers. Culture and brand context still matter; pair with neutrals or a warm complement when you need energy.
For full keyword search across all hues, use HTML color codes. For palette generation, try the color scheme generator or color wheel.
:root {
--blue: #0000ff;
--blue-accent: #1e90ff; /* dodgerblue */
--blue-ink: #000080; /* navy */
}
.banner {
background-color: var(--blue-accent);
color: #ffffff;
}
| Name | HEX | RGB | Feel |
|---|---|---|---|
| aliceblue | #F0F8FF | 240, 248, 255 | Near-white wash |
| lightblue | #ADD8E6 | 173, 216, 230 | Soft sky |
| skyblue | #87CEEB | 135, 206, 235 | Open sky |
| dodgerblue | #1E90FF | 30, 144, 255 | Bright UI accent |
| royalblue | #4169E1 | 65, 105, 225 | Rich mid blue |
| steelblue | #4682B4 | 70, 130, 180 | Muted professional |
| blue | #0000FF | 0, 0, 255 | Pure primary |
| mediumblue | #0000CD | 0, 0, 205 | Deep primary |
| darkblue | #00008B | 0, 0, 139 | Ink blue |
| navy | #000080 | 0, 0, 128 | Classic dark |
| midnightblue | #191970 | 25, 25, 112 | Night sky |
Key distinctions behind the tool.
The CSS named color blue is #0000FF, equal to rgb(0, 0, 255) and hsl(240, 100%, 50%).
Blue is pure blue at full brightness. Navy (#000080) keeps the same hue but is much darker (about 25% lightness), so it often works better for text or chrome on light backgrounds.
Neutrals (white, gray, silver) keep blue dominant. Complements near yellow/orange add energy; beige or peach softens a palette. Always check text contrast.
On white, #0000FF often passes WCAG AA, but darker blues (navy, darkblue) are usually more comfortable for long reading. Avoid blue text on black—contrast is typically too low.
Use color: blue;, color: #0000FF;, or color: rgb(0, 0, 255); on any property that accepts a <color> value, including background-color and border-color.