#008b8b
Dark Cyan
ReadyTools Database (Exact)
Teal
~96% match
Color formats
RGB
rgb(0, 139, 139)
Red, Green, Blue components
HSL
hsl(180, 1, 0, 1)
Hue, Saturation, Lightness
CMYK
cmyk(100, 0, 0, 45)
Print color encoding
Luminance
0.203
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#008b8b
#8b0000
Analogous (Adjacent)
#008b46
#008b8b
#00458b
Triadic
#008b8b
#8b008b
#8b8b00
Split complementary
#008b8b
#8b0046
#8b4500
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
91c2c1
008b8b
004344
000000
Marketing and vibrant
008b8b
00979c
8b0000
9f0047
FFFFFF
Harmonious and natural
008b2e
008b5d
008b8b
005d8b
002e8b
Pop Art and trendy
008b8b
5f1fa3
9b0000
2c7400
6861d5
Complete conversion table
HEX
#008B8B
RGB
rgb(0,139,139)
RGBA
rgba(0,139,139, 1)
HSL
hsl(180,100%,27.25%)
OKLCH (Modern CSS)
oklch(0.58 0.10 194.8)
CSS Variable
--color: #008b8b;
CMYK
C: 100% M: 0% 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
0xFF008B8B
Swift UIColor
UIColor(red: 0.00, green: 0.55, blue: 0.55, alpha: 1.0)
Decimal (int)
35723
JSON
{ "color": "#008B8B" }
CIE LAB
L: 52.2 a: -30.6 b: -9.0
CIE LCH
L: 52.2 C: 31.9 H: 196.4
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
4.15
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
5.07
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
Freshness
"The color of the future. It blends technological clarity with the freshness of water. Suggests open communication and modern thinking."
Color personality description
Emotional effects
Symbolic meanings
Recommended industries
Color laboratory
Fine tuning and blending. Adjust lightness, saturation, or mix with another color.
Base
#008B8B
Result
#008B8B
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#008B8B
0%+
Mix color
#808080
100%Result
#5A8685
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
45%
41%
14%
RYB PIGMENTS
Ivory black
Pigment
45%
Ultramarine blue
Pigment
41%
Cadmium yellow
Pigment
14%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
CYAN
45%
KEY
CMYK INKS
Cyan
Ink
100%
Black (Key)
Ink
45%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
485 nm
619 THz • 2.56 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
20.3%
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
teal-600
#0d9488
ΔE: 5.5
Google Material
Original
Standard
Teal 600
#00897B
ΔE: 5.7
CSS Color Name
Original
Standard
DarkCyan
#008B8B
ΔE: 0.0
Apple System (iOS)
Original
Standard
System Teal
#30B0C7
ΔE: 15.1
Pantone (PMS)
Original
Standard
PMS 18-4930 tropical-green
#008786
ΔE: 1.5
RAL Classic
Original
Standard
RAL 5018 Turquoise blue
#058B8C
ΔE: 0.5
Copic Marker
Original
Standard
Jasper
#04a2ad
ΔE: 8.9
Code
CSS variable
1
2
3
4
5
:root {
--color-dark-cyan: #008b8b;
--rgb-dark-cyan: 0, 139, 139;
}SCSS variable
1
2
3
4
5
$color-dark-cyan: #008b8b;
$rgb-dark-cyan: (0, 139, 139);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'dark-cyan': '#008b8b',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#008b8b',
},
text: {
color: '#008b8b',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let dark-cyanColor = Color(
red: 0,
green: 0.5450980392156862,
blue: 0.5450980392156862
)Full JSON data
1
2
3
4
5
{
"name": "Dark Cyan",
"hex": "#008b8b",
"rgb": {
"r": 0,
"g": 139,
"b": 139
},
"hsl": {
"h": 180,
"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