#ffa000
Orange Peel
ReadyTools Database (Exact)
Color formats
RGB
rgb(255, 160, 0)
Red, Green, Blue components
HSL
hsl(38, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(0, 37, 100, 0)
Print color encoding
Luminance
0.464
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#ffa000
#005fff
Analogous (Adjacent)
#ff2100
#ffa000
#deff00
Triadic
#ffa000
#00ffa0
#a000ff
Split complementary
#ffa000
#00deff
#2000ff
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
ffa521
ffa000
6b2500
000000
Marketing and vibrant
ffa000
ff9600
005fff
00e5ff
FFFFFF
Harmonious and natural
ff000a
ff4b00
ffa000
fff500
b4ff00
Pop Art and trendy
ffa000
4aff44
005dff
e300c6
f2ff74
Complete conversion table
HEX
#FFA000
RGB
rgb(255,160,0)
RGBA
rgba(255,160,0, 1)
HSL
hsl(37.65,100%,50%)
OKLCH (Modern CSS)
oklch(0.78 0.17 68.1)
CSS Variable
--color: #ffa000;
CMYK
C: 0% M: 37% 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
0xFFFFA000
Swift UIColor
UIColor(red: 1.00, green: 0.63, blue: 0.00, alpha: 1.0)
Decimal (int)
16752640
JSON
{ "color": "#FFA000" }
CIE LAB
L: 73.8 a: 26.5 b: 78.2
CIE LCH
L: 73.8 C: 82.6 H: 71.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.
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
2.04
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
10.28
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
#FFA000
Result
#FFA000
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#FFA000
0%+
Mix color
#808080
100%Result
#C59054
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
63%
37%
RYB PIGMENTS
Cadmium yellow
Pigment
63%
Cadmium red
Pigment
37%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
P
37%
MAGENTA
CMYK INKS
Yellow
Ink
100%
Magenta
Ink
37%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
602 nm
498 THz • 2.06 eV
750nm
380nm
Color temperature
Warm
~2000-4000K
Cool
Warm
Luminance (brightness)
46.4%
Sötét / Dark
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: 1.9
Google Material
Original
Standard
Amber 700
#FFA000
ΔE: 0.0
CSS Color Name
Original
Standard
Orange
#FFA500
ΔE: 1.8
Apple System (iOS)
Original
Standard
System Orange
#FF9500
ΔE: 3.8
Pantone (PMS)
Original
Standard
PMS 14-1159 zinnia
#FFA010
ΔE: 0.6
RAL Classic
Original
Standard
RAL 1028 Melon yellow
#FF9B00
ΔE: 1.8
Copic Marker
Original
Standard
Deep Orange
#f3a962
ΔE: 8.5
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #ffa000;
--rgb-primary: 255, 160, 0;
}SCSS variable
1
2
3
4
5
$color-primary: #ffa000;
$rgb-primary: (255, 160, 0);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#ffa000',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#ffa000',
},
text: {
color: '#ffa000',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 1,
green: 0.6274509803921569,
blue: 0
)Full JSON data
1
2
3
4
5
{
"name": "Orange Peel",
"hex": "#ffa000",
"rgb": {
"r": 255,
"g": 160,
"b": 0
},
"hsl": {
"h": 38,
"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