#ffaa00
Web Orange
Closest match (98% match)
Color formats
RGB
rgb(255, 170, 0)
Red, Green, Blue components
HSL
hsl(40, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(0, 33, 100, 0)
Print color encoding
Luminance
0.500
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#ffaa00
#0055ff
Analogous (Adjacent)
#ff2b00
#ffaa00
#d4ff00
Triadic
#ffaa00
#00ffaa
#aa00ff
Split complementary
#ffaa00
#00d4ff
#2a00ff
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
fca700
ffaa00
652a00
000000
Marketing and vibrant
ffaa00
ffa200
0055ff
00daff
101827
Harmonious and natural
ff0000
ff5500
ffaa00
ffff00
aaff00
Pop Art and trendy
ffaa00
4aff4b
0052ff
e300bb
e8ff73
Complete conversion table
HEX
#FFAA00
RGB
rgb(255,170,0)
RGBA
rgba(255,170,0, 1)
HSL
hsl(40,100%,50%)
OKLCH (Modern CSS)
oklch(0.80 0.17 73.3)
CSS Variable
--color: #ffaa00;
CMYK
C: 0% M: 33% 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
0xFFFFAA00
Swift UIColor
UIColor(red: 1.00, green: 0.67, blue: 0.00, alpha: 1.0)
Decimal (int)
16755200
JSON
{ "color": "#FFAA00" }
CIE LAB
L: 76.1 a: 21.3 b: 79.7
CIE LCH
L: 76.1 C: 82.5 H: 75.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.
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.91
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
11.00
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
#FFAA00
Result
#FFAA00
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#FFAA00
0%+
Mix color
#808080
100%Result
#C49556
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
67%
33%
RYB PIGMENTS
Cadmium yellow
Pigment
67%
Cadmium red
Pigment
33%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
P
33%
MAGENTA
CMYK INKS
Yellow
Ink
100%
Magenta
Ink
33%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
600 nm
500 THz • 2.07 eV
750nm
380nm
Color temperature
Warm
~2000-4000K
Cool
Warm
Luminance (brightness)
50.0%
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-500
#f59e0b
ΔE: 3.6
Google Material
Original
Standard
Amber A700
#FFAB00
ΔE: 0.4
CSS Color Name
Original
Standard
Orange
#FFA500
ΔE: 1.8
Apple System (iOS)
Original
Standard
System Orange
#FF9500
ΔE: 7.4
Pantone (PMS)
Original
Standard
PMS 14-1064 saffron
#FFA500
ΔE: 1.8
RAL Classic
Original
Standard
RAL 1003 Signal yellow
#F9A800
ΔE: 1.1
Copic Marker
Original
Standard
Atoll
#febb65
ΔE: 7.6
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #ffaa00;
--rgb-primary: 255, 170, 0;
}SCSS variable
1
2
3
4
5
$color-primary: #ffaa00;
$rgb-primary: (255, 170, 0);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#ffaa00',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#ffaa00',
},
text: {
color: '#ffaa00',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 1,
green: 0.6666666666666666,
blue: 0
)Full JSON data
1
2
3
4
5
{
"name": "Web Orange",
"hex": "#ffaa00",
"rgb": {
"r": 255,
"g": 170,
"b": 0
},
"hsl": {
"h": 40,
"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