#1a535c
Nile Blue
Closest match (85% match)
Color formats
RGB
rgb(26, 83, 92)
Red, Green, Blue components
HSL
hsl(188, 1, 0, 1)
Hue, Saturation, Lightness
CMYK
cmyk(72, 10, 0, 64)
Print color encoding
Luminance
0.072
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#1a535c
#5c231a
Analogous (Adjacent)
#1a5c44
#1a535c
#1a325c
Triadic
#1a535c
#5c1a53
#535c1a
Split complementary
#1a535c
#5c1a32
#5c441a
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
aabcc0
1a535c
00424b
000000
Marketing and vibrant
1a535c
005e7d
5c231a
700032
FFFFFF
Harmonious and natural
1a5c39
1a5c4f
1a535c
1a3d5c
1a275c
Pop Art and trendy
1a535c
5a2f72
6d0d08
1b4603
615fa2
Complete conversion table
HEX
#1A535C
RGB
rgb(26,83,92)
RGBA
rgba(26,83,92, 1)
HSL
hsl(188.18,55.93%,23.14%)
OKLCH (Modern CSS)
oklch(0.41 0.06 209.8)
CSS Variable
--color: #1a535c;
CMYK
C: 72% M: 10% Y: 0% K: 64%
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
0xFF1A535C
Swift UIColor
UIColor(red: 0.10, green: 0.33, blue: 0.36, alpha: 1.0)
Decimal (int)
1725276
JSON
{ "color": "#1A535C" }
CIE LAB
L: 32.2 a: -15.0 b: -10.6
CIE LCH
L: 32.2 C: 18.4 H: 215.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.
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'
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
Futuristic
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Orbitron'
400 Regular
'Rajdhani'
Brutalist
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Oswald'
400 Regular
'Arial Black'
Accessibility
Contrast and readability (WCAG)
On white background
8.62
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
2.44
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
Freshness
"The color of the future. It blends technological clarity with the freshness of water. Suggests open communication and modern thinking."
Color personality description
Emotional effects
Symbolic meanings
Recommended industries
Color laboratory
Fine tuning and blending. Adjust lightness, saturation, or mix with another color.
Base
#1A535C
Result
#1A535C
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#1A535C
0%+
Mix color
#808080
100%Result
#52696E
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
67%
25%
7%
RYB PIGMENTS
Ivory black
Pigment
67%
Ultramarine blue
Pigment
25%
Cadmium yellow
Pigment
7%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
72%
CYAN
64%
KEY
10%
MAGENTA
CMYK INKS
Cyan
Ink
72%
Black (Key)
Ink
64%
Magenta
Ink
10%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
481 nm
624 THz • 2.58 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
7.2%
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
teal-900
#134749
ΔE: 5.2
Google Material
Original
Standard
Cyan 900
#006064
ΔE: 6.1
CSS Color Name
Original
Standard
DarkSlateGray
#2F4F4F
ΔE: 5.2
Apple System (iOS)
Original
Standard
System Graphite
#48484A
ΔE: 16.5
Pantone (PMS)
Original
Standard
PMS 19-4726 atlantic-deep
#274E55
ΔE: 2.9
RAL Classic
Original
Standard
RAL 5020 Ocean blue
#00414B
ΔE: 5.8
Copic Marker
Original
Standard
Slate
#2e4256
ΔE: 13.1
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #1a535c;
--rgb-primary: 26, 83, 92;
}SCSS variable
1
2
3
4
5
$color-primary: #1a535c;
$rgb-primary: (26, 83, 92);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#1a535c',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#1a535c',
},
text: {
color: '#1a535c',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0.10196078431372549,
green: 0.3254901960784314,
blue: 0.3607843137254902
)Full JSON data
1
2
3
4
5
{
"name": "Nile Blue",
"hex": "#1a535c",
"rgb": {
"r": 26,
"g": 83,
"b": 92
},
"hsl": {
"h": 188,
"s": 56,
"l": 23
}
}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