#007fff
Azure
ReadyTools Database (Exact)
Azure Radiance
Color formats
RGB
rgb(0, 127, 255)
Red, Green, Blue components
HSL
hsl(210, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(100, 50, 0, 0)
Print color encoding
Luminance
0.224
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#007fff
#ff8000
Analogous (Adjacent)
#00feff
#007fff
#0000ff
Triadic
#007fff
#ff007f
#7fff00
Split complementary
#007fff
#ff0000
#feff00
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
a2b6ff
007fff
002f9b
000000
Marketing and vibrant
007fff
0080ff
ff8000
ff0000
FFFFFF
Harmonious and natural
00ffd5
00d4ff
007fff
002aff
2b00ff
Pop Art and trendy
007fff
ff40ff
ff7600
00e400
a65eff
Complete conversion table
HEX
#007FFF
RGB
rgb(0,127,255)
RGBA
rgba(0,127,255, 1)
HSL
hsl(210.12,100%,50%)
OKLCH (Modern CSS)
oklch(0.61 0.21 256.3)
CSS Variable
--color: #007fff;
CMYK
C: 100% M: 50% Y: 0% 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
0xFF007FFF
Swift UIColor
UIColor(red: 0.00, green: 0.50, blue: 1.00, alpha: 1.0)
Decimal (int)
32767
JSON
{ "color": "#007FFF" }
CIE LAB
L: 54.4 a: 19.4 b: -71.4
CIE LCH
L: 54.4 C: 73.9 H: 285.2
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.
Technological
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'JetBrains Mono'
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'
Corporate
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Proxima Nova'
400 Regular
'Helvetica Neue'
Accessibility
Contrast and readability (WCAG)
On white background
3.83
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
5.48
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
Trust
"A shade of infinite possibilities and freedom. Calming like a clear sky, it builds trust and reduces stress."
Color personality description
Emotional effects
Symbolic meanings
Recommended industries
Color laboratory
Fine tuning and blending. Adjust lightness, saturation, or mix with another color.
Base
#007FFF
Result
#007FFF
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#007FFF
0%+
Mix color
#808080
100%Result
#6B7FBF
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
88%
12%
RYB PIGMENTS
Ultramarine blue
Pigment
88%
Cadmium yellow
Pigment
12%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
CYAN
50%
MAGENTA
CMYK INKS
Cyan
Ink
100%
Magenta
Ink
50%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
468 nm
641 THz • 2.65 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
22.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
blue-500
#3b82f6
ΔE: 2.1
Google Material
Original
Standard
Blue A400
#2979FF
ΔE: 3.0
CSS Color Name
Original
Standard
DodgerBlue
#1E90FF
ΔE: 5.8
Apple System (iOS)
Original
Standard
System Blue
#007AFF
ΔE: 1.8
Pantone (PMS)
Original
Standard
PMS 17-4041 marina
#4F84C4
ΔE: 5.3
RAL Classic
Original
Standard
RAL 5015 Sky blue
#007CB0
ΔE: 11.3
Copic Marker
Original
Standard
Ultramarine
#0077ba
ΔE: 9.2
Code
CSS variable
1
2
3
4
5
:root {
--color-azure: #007fff;
--rgb-azure: 0, 127, 255;
}SCSS variable
1
2
3
4
5
$color-azure: #007fff;
$rgb-azure: (0, 127, 255);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'azure': '#007fff',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#007fff',
},
text: {
color: '#007fff',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let azureColor = Color(
red: 0,
green: 0.4980392156862745,
blue: 1
)Full JSON data
1
2
3
4
5
{
"name": "Azure",
"hex": "#007fff",
"rgb": {
"r": 0,
"g": 127,
"b": 255
},
"hsl": {
"h": 210,
"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