#ccff00
Electric Lime
ReadyTools Database (Exact)
Color formats
RGB
rgb(204, 255, 0)
Red, Green, Blue components
HSL
hsl(72, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(20, 0, 100, 0)
Print color encoding
Luminance
0.844
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#ccff00
#3300ff
Analogous (Adjacent)
#ffb300
#ccff00
#4cff00
Triadic
#ccff00
#00ccff
#ff00cc
Split complementary
#ccff00
#004cff
#b300ff
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
94ca00
ccff00
174500
000000
Marketing and vibrant
ccff00
b3ff00
3300ff
0048ff
101827
Harmonious and natural
ff8800
ffdd00
ccff00
77ff00
22ff00
Pop Art and trendy
ccff00
48ffcc
0000ff
e10038
93ff72
Complete conversion table
HEX
#CCFF00
RGB
rgb(204,255,0)
RGBA
rgba(204,255,0, 1)
HSL
hsl(72,100%,50%)
OKLCH (Modern CSS)
oklch(0.93 0.23 123.1)
CSS Variable
--color: #ccff00;
CMYK
C: 20% M: 0% Y: 100% 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
0xFFCCFF00
Swift UIColor
UIColor(red: 0.80, green: 1.00, blue: 0.00, alpha: 1.0)
Decimal (int)
13434624
JSON
{ "color": "#CCFF00" }
CIE LAB
L: 93.6 a: -41.9 b: 90.3
CIE LCH
L: 93.6 C: 99.5 H: 114.9
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.
Playful
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Quicksand'
400 Regular
'Nunito'
Bold
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Anton'
400 Regular
'Roboto Condensed'
Warm and friendly
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Abril Fatface'
400 Regular
'Poppins'
Kid-friendly
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Balsamiq Sans'
400 Regular
'Comic Neue'
Accessibility
Contrast and readability (WCAG)
On white background
1.18
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
17.87
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
Optimism
"The brightest point of the visible spectrum. Radiates mental activity, optimism, and innovation. Impossible to ignore."
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
#CCFF00
Result
#CCFF00
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#CCFF00
0%+
Mix color
#808080
100%Result
#AABE5F
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
82%
18%
RYB PIGMENTS
Cadmium yellow
Pigment
82%
Ultramarine blue
Pigment
18%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
P
20%
CYAN
CMYK INKS
Yellow
Ink
100%
Cyan
Ink
20%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
575 nm
522 THz • 2.16 eV
750nm
380nm
Color temperature
Warm
~2000-4000K
Cool
Warm
Luminance (brightness)
84.4%
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
lime-300
#bef264
ΔE: 7.4
Google Material
Original
Standard
Lime A400
#C6FF00
ΔE: 0.9
CSS Color Name
Original
Standard
GreenYellow
#ADFF2F
ΔE: 5.3
Apple System (iOS)
Original
Standard
System Lime
#AEEA00
ΔE: 5.3
Pantone (PMS)
Original
Standard
PMS 14-0340 acid-lime
#BADF30
ΔE: 7.2
RAL Classic
Original
Standard
RAL 1026 Luminous yellow
#FFFF00
ΔE: 9.3
Copic Marker
Original
Standard
Acid Green
#b6d135
ΔE: 10.6
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #ccff00;
--rgb-primary: 204, 255, 0;
}SCSS variable
1
2
3
4
5
$color-primary: #ccff00;
$rgb-primary: (204, 255, 0);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#ccff00',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#ccff00',
},
text: {
color: '#ccff00',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0.8,
green: 1,
blue: 0
)Full JSON data
1
2
3
4
5
{
"name": "Electric Lime",
"hex": "#ccff00",
"rgb": {
"r": 204,
"g": 255,
"b": 0
},
"hsl": {
"h": 72,
"s": 100,
"l": 50
}
}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