#ececec
Gallery
Closest match (99% match)
Color formats
RGB
rgb(236, 236, 236)
Red, Green, Blue components
HSL
hsl(0, 0, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(0, 0, 0, 7)
Print color encoding
Luminance
0.839
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#ececec
#ececec
Analogous (Adjacent)
#ececec
#ececec
#ececec
Triadic
#ececec
#ececec
#ececec
Split complementary
#ececec
#ececec
#ececec
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
b9b9b9
ececec
3b3b3b
000000
Marketing and vibrant
ececec
ffd3ed
ececec
ffe0ed
101827
Harmonious and natural
ececec
ececec
ececec
ececec
ececec
Pop Art and trendy
ececec
ffffff
ffe0ed
d3d3d3
ffffff
Complete conversion table
HEX
#ECECEC
RGB
rgb(236,236,236)
RGBA
rgba(236,236,236, 1)
HSL
hsl(0,0%,92.55%)
OKLCH (Modern CSS)
oklch(0.94 0.00 NaN)
CSS Variable
--color: #ececec;
CMYK
C: 0% M: 0% Y: 0% K: 7%
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
0xFFECECEC
Swift UIColor
UIColor(red: 0.93, green: 0.93, blue: 0.93, alpha: 1.0)
Decimal (int)
15527148
JSON
{ "color": "#ECECEC" }
CIE LAB
L: 93.4 a: -0.0 b: 0.0
CIE LCH
L: 93.4 C: 0.0 H: NaN
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.
Minimalist
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
Helvetica
400 Regular
-apple-system
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'
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'
Elegant
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Playfair Display'
400 Regular
'Lato'
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.78
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
Balance
"A soft, whispering shade with a calming effect. Ideal for designs that do not want to shout, but gently soothe."
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
#ECECEC
Result
#ECECEC
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#ECECEC
0%+
Mix color
#808080
100%Result
#B4B4B4
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
100%
RYB PIGMENTS
Titanium white
Pigment
100%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
7%
KEY
CMYK INKS
Black (Key)
Ink
7%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
N/A
750nm
380nm
Color temperature
Neutral
Cool
Warm
Luminance (brightness)
83.9%
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
neutral-200
#e5e5e5
ΔE: 1.5
Google Material
Original
Standard
Grey 200
#EEEEEE
ΔE: 0.4
CSS Color Name
Original
Standard
WhiteSmoke
#F5F5F5
ΔE: 1.9
Apple System (iOS)
Original
Standard
System Gray 6
#F2F2F7
ΔE: 2.9
Pantone (PMS)
Original
Standard
PMS 11-4800 blanc-de-blanc
#E7E9E7
ΔE: 1.8
RAL Classic
Original
Standard
RAL 9003 Signal white
#ECECE7
ΔE: 2.6
Copic Marker
Original
Standard
Neutral Gray No.1
#ebebeb
ΔE: 0.2
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #ececec;
--rgb-primary: 236, 236, 236;
}SCSS variable
1
2
3
4
5
$color-primary: #ececec;
$rgb-primary: (236, 236, 236);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#ececec',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#ececec',
},
text: {
color: '#ececec',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0.9254901960784314,
green: 0.9254901960784314,
blue: 0.9254901960784314
)Full JSON data
1
2
3
4
5
{
"name": "Gallery",
"hex": "#ececec",
"rgb": {
"r": 236,
"g": 236,
"b": 236
},
"hsl": {
"h": 0,
"s": 0,
"l": 93
}
}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