#ff6600
Safety Orange
ReadyTools Database (Exact)
Blaze Orange
Color formats
RGB
rgb(255, 102, 0)
Red, Green, Blue components
HSL
hsl(24, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(0, 60, 100, 0)
Print color encoding
Luminance
0.308
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#ff6600
#0099ff
Analogous (Adjacent)
#ff0019
#ff6600
#ffe500
Triadic
#ff6600
#00ff66
#6600ff
Split complementary
#ff6600
#00ffe6
#0019ff
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
ffa26c
ff6600
7e0000
000000
Marketing and vibrant
ff6600
ff4100
0099ff
00ffe7
FFFFFF
Harmonious and natural
ff0044
ff1100
ff6600
ffbb00
eeff00
Pop Art and trendy
ff6600
51ff37
009bff
c900e5
ffff75
Complete conversion table
HEX
#FF6600
RGB
rgb(255,102,0)
RGBA
rgba(255,102,0, 1)
HSL
hsl(24,100%,50%)
OKLCH (Modern CSS)
oklch(0.70 0.20 43.5)
CSS Variable
--color: #ff6600;
CMYK
C: 0% M: 60% 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
0xFFFF6600
Swift UIColor
UIColor(red: 1.00, green: 0.40, blue: 0.00, alpha: 1.0)
Decimal (int)
16737792
JSON
{ "color": "#FF6600" }
CIE LAB
L: 62.3 a: 55.0 b: 71.3
CIE LCH
L: 62.3 C: 90.1 H: 52.4
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.94
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
7.15
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
Passion
"Pure adrenaline. It triggers an immediate physiological response, increasing heart rate and driving action. The visual embodiment of passion and urgency."
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
#FF6600
Result
#FF6600
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#FF6600
0%+
Mix color
#808080
100%Result
#C7774E
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
60%
40%
RYB PIGMENTS
Cadmium red
Pigment
60%
Cadmium yellow
Pigment
40%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
P
60%
MAGENTA
CMYK INKS
Yellow
Ink
100%
Magenta
Ink
60%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
616 nm
487 THz • 2.01 eV
750nm
380nm
Color temperature
Warm
~2000-4000K
Cool
Warm
Luminance (brightness)
30.8%
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
orange-500
#f97316
ΔE: 3.0
Google Material
Original
Standard
Orange A700
#FF6D00
ΔE: 1.9
CSS Color Name
Original
Standard
OrangeRed
#FF4500
ΔE: 7.3
Apple System (iOS)
Original
Standard
System Red
#FF3B30
ΔE: 14.0
Pantone (PMS)
Original
Standard
PMS 16-1358 orange-tiger
#F96714
ΔE: 1.3
RAL Classic
Original
Standard
RAL 2008 Bright red orange
#ED6B21
ΔE: 3.2
Copic Marker
Original
Standard
Cadmium Orange
#f67833
ΔE: 4.1
Code
CSS variable
1
2
3
4
5
:root {
--color-safety-orange: #ff6600;
--rgb-safety-orange: 255, 102, 0;
}SCSS variable
1
2
3
4
5
$color-safety-orange: #ff6600;
$rgb-safety-orange: (255, 102, 0);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'safety-orange': '#ff6600',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#ff6600',
},
text: {
color: '#ff6600',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let safety-orangeColor = Color(
red: 1,
green: 0.4,
blue: 0
)Full JSON data
1
2
3
4
5
{
"name": "Safety Orange",
"hex": "#ff6600",
"rgb": {
"r": 255,
"g": 102,
"b": 0
},
"hsl": {
"h": 24,
"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