#008000
Hulk
ReadyTools Database (Exact)
Japanese Laurel
~92% match
Color formats
RGB
rgb(0, 128, 0)
Red, Green, Blue components
HSL
hsl(120, 1, 0, 1)
Hue, Saturation, Lightness
CMYK
cmyk(100, 0, 100, 50)
Print color encoding
Luminance
0.154
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#008000
#800080
Analogous (Adjacent)
#408000
#008000
#008040
Triadic
#008000
#000080
#800000
Split complementary
#008000
#400080
#800040
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
9bc48d
008000
004600
000000
Marketing and vibrant
008000
008600
800080
3e0095
FFFFFF
Harmonious and natural
558000
2b8000
008000
00802b
008055
Pop Art and trendy
008000
2b5598
8d008f
672b00
63c9a5
Complete conversion table
HEX
#008000
RGB
rgb(0,128,0)
RGBA
rgba(0,128,0, 1)
HSL
hsl(120,100%,25.1%)
OKLCH (Modern CSS)
oklch(0.52 0.18 142.5)
CSS Variable
--color: #008000;
CMYK
C: 100% M: 0% Y: 100% K: 50%
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
0xFF008000
Swift UIColor
UIColor(red: 0.00, green: 0.50, blue: 0.00, alpha: 1.0)
Decimal (int)
32768
JSON
{ "color": "#008000" }
CIE LAB
L: 46.2 a: -51.7 b: 49.9
CIE LCH
L: 46.2 C: 71.9 H: 136.0
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
5.14
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
4.09
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
Nature
"A shade of stability and financial security. Serious, reliable, and conservative, often associated with banking and evergreen values."
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
#008000
Result
#008000
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#008000
0%+
Mix color
#808080
100%Result
#57814B
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
50%
25%
25%
RYB PIGMENTS
Ivory black
Pigment
50%
Cadmium yellow
Pigment
25%
Ultramarine blue
Pigment
25%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
CYAN
100%
P
50%
KEY
CMYK INKS
Cyan
Ink
100%
Yellow
Ink
100%
Black (Key)
Ink
50%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
531 nm
565 THz • 2.34 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
15.4%
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
lime-700
#4d7c0f
ΔE: 6.9
Google Material
Original
Standard
Green 800
#2E7D32
ΔE: 5.6
CSS Color Name
Original
Standard
Green
#008000
ΔE: 0.0
Apple System (iOS)
Original
Standard
System Green
#34C759
ΔE: 22.7
Pantone (PMS)
Original
Standard
PMS 17-0145 online-lime
#44883C
ΔE: 7.4
RAL Classic
Original
Standard
RAL 6037 Pure green
#008B29
ΔE: 5.0
Copic Marker
Original
Standard
Mistletoe
#54895d
ΔE: 13.8
Code
CSS variable
1
2
3
4
5
:root {
--color-hulk: #008000;
--rgb-hulk: 0, 128, 0;
}SCSS variable
1
2
3
4
5
$color-hulk: #008000;
$rgb-hulk: (0, 128, 0);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'hulk': '#008000',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#008000',
},
text: {
color: '#008000',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let hulkColor = Color(
red: 0,
green: 0.5019607843137255,
blue: 0
)Full JSON data
1
2
3
4
5
{
"name": "Hulk",
"hex": "#008000",
"rgb": {
"r": 0,
"g": 128,
"b": 0
},
"hsl": {
"h": 120,
"s": 100,
"l": 25
}
}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