#0088ff
Too Blue to be True
ReadyTools Database (Exact)
Azure Radiance
~97% match
Color formats
RGB
rgb(0, 136, 255)
Red, Green, Blue components
HSL
hsl(208, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(100, 47, 0, 0)
Print color encoding
Luminance
0.248
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#0088ff
#ff7700
Analogous (Adjacent)
#00fff7
#0088ff
#0008ff
Triadic
#0088ff
#ff0088
#88ff00
Split complementary
#0088ff
#ff0008
#fff700
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
9bb8ff
0088ff
003295
000000
Marketing and vibrant
0088ff
008aff
ff7700
ff0000
FFFFFF
Harmonious and natural
00ffcc
00ddff
0088ff
0033ff
2200ff
Pop Art and trendy
0088ff
ff3fff
ff6c00
00e400
a25eff
Complete conversion table
HEX
#0088FF
RGB
rgb(0,136,255)
RGBA
rgba(0,136,255, 1)
HSL
hsl(208,100%,50%)
OKLCH (Modern CSS)
oklch(0.63 0.20 254.1)
CSS Variable
--color: #0088ff;
CMYK
C: 100% M: 47% 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
0xFF0088FF
Swift UIColor
UIColor(red: 0.00, green: 0.53, blue: 1.00, alpha: 1.0)
Decimal (int)
35071
JSON
{ "color": "#0088FF" }
CIE LAB
L: 56.9 a: 13.8 b: -67.4
CIE LCH
L: 56.9 C: 68.8 H: 281.6
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.52
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
5.97
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
#0088FF
Result
#0088FF
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#0088FF
0%+
Mix color
#808080
100%Result
#6B83BE
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
87%
13%
RYB PIGMENTS
Ultramarine blue
Pigment
87%
Cadmium yellow
Pigment
13%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
CYAN
47%
MAGENTA
CMYK INKS
Cyan
Ink
100%
Magenta
Ink
47%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
469 nm
640 THz • 2.64 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
24.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
blue-500
#3b82f6
ΔE: 3.7
Google Material
Original
Standard
Blue 600
#1E88E5
ΔE: 2.8
CSS Color Name
Original
Standard
DodgerBlue
#1E90FF
ΔE: 2.6
Apple System (iOS)
Original
Standard
System Blue
#007AFF
ΔE: 5.0
Pantone (PMS)
Original
Standard
PMS 17-4041 marina
#4F84C4
ΔE: 5.5
RAL Classic
Original
Standard
RAL 5015 Sky blue
#007CB0
ΔE: 11.5
Copic Marker
Original
Standard
Lapis Lazuli
#2991c9
ΔE: 8.6
Code
CSS variable
1
2
3
4
5
:root {
--color-too-blue-to-be-true: #0088ff;
--rgb-too-blue-to-be-true: 0, 136, 255;
}SCSS variable
1
2
3
4
5
$color-too-blue-to-be-true: #0088ff;
$rgb-too-blue-to-be-true: (0, 136, 255);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'too-blue-to-be-true': '#0088ff',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#0088ff',
},
text: {
color: '#0088ff',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let too-blue-to-be-trueColor = Color(
red: 0,
green: 0.5333333333333333,
blue: 1
)Full JSON data
1
2
3
4
5
{
"name": "Too Blue to be True",
"hex": "#0088ff",
"rgb": {
"r": 0,
"g": 136,
"b": 255
},
"hsl": {
"h": 208,
"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