#ffd966
Dandelion
Closest match (99% match)
Color formats
RGB
rgb(255, 217, 102)
Red, Green, Blue components
HSL
hsl(45, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(0, 15, 60, 0)
Print color encoding
Luminance
0.718
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#ffd966
#668cff
Analogous (Adjacent)
#ff8c66
#ffd966
#d9ff66
Triadic
#ffd966
#66ffd9
#d966ff
Split complementary
#ffd966
#66d8ff
#8c66ff
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
d8b543
ffd966
4c3800
000000
Marketing and vibrant
ffd966
ffd800
668cff
00deff
101827
Harmonious and natural
ff7366
ffa666
ffd966
f2ff66
bfff66
Pop Art and trendy
ffd966
83ffa4
3c8bff
e44bbf
ffffb2
Complete conversion table
HEX
#FFD966
RGB
rgb(255,217,102)
RGBA
rgba(255,217,102, 1)
HSL
hsl(45.1,100%,70%)
OKLCH (Modern CSS)
oklch(0.90 0.14 91.1)
CSS Variable
--color: #ffd966;
CMYK
C: 0% M: 15% Y: 60% 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
0xFFFFD966
Swift UIColor
UIColor(red: 1.00, green: 0.85, blue: 0.40, alpha: 1.0)
Decimal (int)
16767334
JSON
{ "color": "#FFD966" }
CIE LAB
L: 87.9 a: 0.4 b: 60.3
CIE LCH
L: 87.9 C: 60.3 H: 89.7
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.37
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
15.37
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
Creative
"Friendly and creative energy. Inviting, playful, and full of life, without being as overwhelming as red."
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
#FFD966
Result
#FFD966
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#FFD966
0%+
Mix color
#808080
100%Result
#C1AB76
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
45%
40%
15%
RYB PIGMENTS
Cadmium yellow
Pigment
45%
Titanium white
Pigment
40%
Cadmium red
Pigment
15%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
60%
P
15%
MAGENTA
CMYK INKS
Yellow
Ink
60%
Magenta
Ink
15%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
595 nm
504 THz • 2.08 eV
750nm
380nm
Color temperature
Warm
~2000-4000K
Cool
Warm
Luminance (brightness)
71.8%
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
amber-300
#fcd34d
ΔE: 2.5
Google Material
Original
Standard
Amber 300
#FFD54F
ΔE: 2.3
CSS Color Name
Original
Standard
Gold
#FFD700
ΔE: 6.4
Apple System (iOS)
Original
Standard
System Yellow
#FFCC00
ΔE: 6.5
Pantone (PMS)
Original
Standard
PMS 13-0850 aspen-gold
#FFD662
ΔE: 1.0
RAL Classic
Original
Standard
RAL 1018 Zinc yellow
#FACA30
ΔE: 5.2
Copic Marker
Original
Standard
Caramel
#ffd34c
ΔE: 2.7
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #ffd966;
--rgb-primary: 255, 217, 102;
}SCSS variable
1
2
3
4
5
$color-primary: #ffd966;
$rgb-primary: (255, 217, 102);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#ffd966',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#ffd966',
},
text: {
color: '#ffd966',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 1,
green: 0.8509803921568627,
blue: 0.4
)Full JSON data
1
2
3
4
5
{
"name": "Dandelion",
"hex": "#ffd966",
"rgb": {
"r": 255,
"g": 217,
"b": 102
},
"hsl": {
"h": 45,
"s": 100,
"l": 70
}
}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