#00008b
Navy Blue
Closest match (98% match)
Color formats
RGB
rgb(0, 0, 139)
Red, Green, Blue components
HSL
hsl(240, 1, 0, 1)
Hue, Saturation, Lightness
CMYK
cmyk(100, 100, 0, 45)
Print color encoding
Luminance
0.019
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#00008b
#8b8b00
Analogous (Adjacent)
#00458b
#00008b
#45008b
Triadic
#00008b
#8b0000
#008b00
Split complementary
#00008b
#8b4500
#468b00
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
c3b1de
00008b
3c2299
000000
Marketing and vibrant
00008b
0000ba
8b8b00
963d00
FFFFFF
Harmonious and natural
005d8b
002e8b
00008b
2e008b
5d008b
Pop Art and trendy
00008b
a5275b
878d00
007331
b357d5
Complete conversion table
HEX
#00008B
RGB
rgb(0,0,139)
RGBA
rgba(0,0,139, 1)
HSL
hsl(240,100%,27.25%)
OKLCH (Modern CSS)
oklch(0.29 0.20 264.1)
CSS Variable
--color: #00008b;
CMYK
C: 100% M: 100% Y: 0% K: 45%
Note: Converting web (RGB) colors to print (CMYK) colors is never 100 percent accurate due to physical limitations. Always request a test print before production.
Android ARGB
0xFF00008B
Swift UIColor
UIColor(red: 0.00, green: 0.00, blue: 0.55, alpha: 1.0)
Decimal (int)
139
JSON
{ "color": "#00008B" }
CIE LAB
L: 14.8 a: 50.4 b: -68.7
CIE LCH
L: 14.8 C: 85.2 H: 306.3
CIE XYZ
N/A
Preview
Readability and Typography
Headline Test
This text demonstrates the reading experience on this background color.
Headline Test
This text demonstrates the reading experience on this background color.
UI Component Set
This is an example alert bar using the selected color.
Product Mockup
4582 •••• •••• 9018
CARDHOLDER
JOHN DOE
VALID
12/28
Mobile application
Customer support
Hi! How can we help you today?
I love this new color! 😍
Data visualization
Weekly growth
+1,240
12.5%1D
1W
1M
WED
2,450
Font recommendations
Professional font pairings that perfectly match the color. Click the CSS button to copy.
Modern
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Inter'
400 Regular
'Inter'
Technological
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'JetBrains Mono'
400 Regular
-apple-system
Futuristic
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Orbitron'
400 Regular
'Rajdhani'
Brutalist
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Oswald'
400 Regular
'Arial Black'
Accessibility
Contrast and readability (WCAG)
On white background
15.30
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
1.37
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
Color blindness simulator
ORIG
SIM
Protanopia (red)
ORIG
SIM
Deuteranopia (green)
ORIG
SIM
Tritanopia (blue)
ORIG
SIM
Monochrome (color blind)
Color Psychology
Emotional, psychological, and cultural impact of the color with scientifically grounded analysis.
Dominant vibe
Trust
"The suit of the corporate world. Communicates absolute reliability, logic, and expertise. It does not gamble, it plays it safe."
Color personality description
Emotional effects
Symbolic meanings
Recommended industries
Potential negative effects
Color laboratory
Fine tuning and blending. Adjust lightness, saturation, or mix with another color.
Base
#00008B
Result
#00008B
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#00008B
0%+
Mix color
#808080
100%Result
#5A4487
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
55%
45%
RYB PIGMENTS
Ultramarine blue
Pigment
55%
Ivory black
Pigment
45%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
CYAN
100%
MAGENTA
45%
KEY
CMYK INKS
Cyan
Ink
100%
Magenta
Ink
100%
Black (Key)
Ink
45%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
459 nm
654 THz • 2.70 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
1.9%
Sötét / Dark
0%
50%
100%
Intelligent Library Matching
Compare your color with industry standards and design systems. Results show similar or exact matches from multiple color libraries.
Tailwind CSS
Original
Standard
violet-950
#2e1065
ΔE: 7.5
Google Material
Original
Standard
Deep Purple 900
#311B92
ΔE: 5.4
CSS Color Name
Original
Standard
DarkBlue
#00008B
ΔE: 0.0
Apple System (iOS)
Original
Standard
System Indigo
#5856D6
ΔE: 22.8
Pantone (PMS)
Original
Standard
PMS 19-3847 deep-blue
#44377D
ΔE: 13.5
RAL Classic
Original
Standard
RAL 5008 Grey blue
#2B3A44
ΔE: 14.1
Copic Marker
Original
Standard
Iris
#31418f
ΔE: 15.2
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #00008b;
--rgb-primary: 0, 0, 139;
}SCSS variable
1
2
3
4
5
$color-primary: #00008b;
$rgb-primary: (0, 0, 139);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#00008b',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#00008b',
},
text: {
color: '#00008b',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0,
green: 0,
blue: 0.5450980392156862
)Full JSON data
1
2
3
4
5
{
"name": "Navy Blue",
"hex": "#00008b",
"rgb": {
"r": 0,
"g": 0,
"b": 139
},
"hsl": {
"h": 240,
"s": 100,
"l": 27
}
}Gradient gallery
Generate premium CSS backgrounds and textures from your color.
Sunset
Deep sea
Dynamic contrast
Night duotone
Icy duotone
Soft mist
Aurora borealis
Neon mesh
Color wheel
Radar
Spotlight
Grainy paper
Retro stripes