#80ff80
Mint Green
Closest match (97% match)
Color formats
RGB
rgb(128, 255, 128)
Red, Green, Blue components
HSL
hsl(120, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(50, 0, 50, 0)
Print color encoding
Luminance
0.777
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#80ff80
#ff80ff
Analogous (Adjacent)
#c0ff80
#80ff80
#80ffc0
Triadic
#80ff80
#8080ff
#ff8080
Split complementary
#80ff80
#bf80ff
#ff80c0
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
4fd257
80ff80
004600
000000
Marketing and vibrant
80ff80
00ff46
ff80ff
c476ff
101827
Harmonious and natural
d5ff80
aaff80
80ff80
80ffaa
80ffd5
Pop Art and trendy
80ff80
9ad8ff
ff6dff
e4a769
d1ffff
Complete conversion table
HEX
#80FF80
RGB
rgb(128,255,128)
RGBA
rgba(128,255,128, 1)
HSL
hsl(120,100%,75.1%)
OKLCH (Modern CSS)
oklch(0.90 0.20 143.7)
CSS Variable
--color: #80ff80;
CMYK
C: 50% M: 0% Y: 50% K: 0%
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
0xFF80FF80
Swift UIColor
UIColor(red: 0.50, green: 1.00, blue: 0.50, alpha: 1.0)
Decimal (int)
8454016
JSON
{ "color": "#80FF80" }
CIE LAB
L: 90.6 a: -59.9 b: 49.7
CIE LCH
L: 90.6 C: 77.8 H: 140.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.
Organic
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Merriweather'
400 Regular
'Open Sans'
Eco and natural
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Raleway'
400 Regular
'Source Sans Pro'
Calm
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Spectral'
400 Regular
'IBM Plex Sans'
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'
Accessibility
Contrast and readability (WCAG)
On white background
1.27
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
16.53
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
"The color of growth and renewal. It radiates freshness, health, and vitality, creating a direct connection to the power of nature."
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
#80FF80
Result
#80FF80
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#80FF80
0%+
Mix color
#808080
100%Result
#87BF82
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
50%
25%
25%
RYB PIGMENTS
Titanium white
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
50%
CYAN
50%
P
CMYK INKS
Cyan
Ink
50%
Yellow
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)
77.7%
Világos / Light
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
green-400
#4ade80
ΔE: 9.1
Google Material
Original
Standard
Green A400
#00E676
ΔE: 8.1
CSS Color Name
Original
Standard
PaleGreen
#98FB98
ΔE: 3.9
Apple System (iOS)
Original
Standard
System Lime
#AEEA00
ΔE: 13.5
Pantone (PMS)
Original
Standard
PMS 13-0220 paradise-green
#B2E79F
ΔE: 10.2
RAL Classic
Original
Standard
RAL 6038 Luminous green
#00B51A
ΔE: 19.0
Copic Marker
Original
Standard
Meadow Green
#b0de7f
ΔE: 10.5
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #80ff80;
--rgb-primary: 128, 255, 128;
}SCSS variable
1
2
3
4
5
$color-primary: #80ff80;
$rgb-primary: (128, 255, 128);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#80ff80',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#80ff80',
},
text: {
color: '#80ff80',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0.5019607843137255,
green: 1,
blue: 0.5019607843137255
)Full JSON data
1
2
3
4
5
{
"name": "Mint Green",
"hex": "#80ff80",
"rgb": {
"r": 128,
"g": 255,
"b": 128
},
"hsl": {
"h": 120,
"s": 100,
"l": 75
}
}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