#0077cc
Lochmara
Closest match (97% match)
Color formats
RGB
rgb(0, 119, 204)
Red, Green, Blue components
HSL
hsl(205, 1, 0, 1)
Hue, Saturation, Lightness
CMYK
cmyk(100, 42, 0, 20)
Print color encoding
Luminance
0.176
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#0077cc
#cc5500
Analogous (Adjacent)
#00ccbb
#0077cc
#0011cc
Triadic
#0077cc
#cc0077
#77cc00
Split complementary
#0077cc
#cc0011
#ccbb00
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
a2b9e7
0077cc
003882
000000
Marketing and vibrant
0077cc
007bff
cc5500
dd0000
FFFFFF
Harmonious and natural
00cc99
00bbcc
0077cc
0033cc
1100cc
Pop Art and trendy
0077cc
d634e6
da4700
00b200
8a54ff
Complete conversion table
HEX
#0077CC
RGB
rgb(0,119,204)
RGBA
rgba(0,119,204, 1)
HSL
hsl(205,100%,40%)
OKLCH (Modern CSS)
oklch(0.56 0.16 249.8)
CSS Variable
--color: #0077cc;
CMYK
C: 100% M: 42% Y: 0% K: 20%
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
0xFF0077CC
Swift UIColor
UIColor(red: 0.00, green: 0.47, blue: 0.80, alpha: 1.0)
Decimal (int)
30668
JSON
{ "color": "#0077CC" }
CIE LAB
L: 48.9 a: 4.5 b: -51.6
CIE LCH
L: 48.9 C: 51.8 H: 274.9
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
4.66
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
4.51
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
"The suit of the corporate world. Communicates absolute reliability, logic, and expertise. It does not gamble, it plays it safe."
Color personality description
Emotional effects
Symbolic meanings
Recommended industries
Color laboratory
Fine tuning and blending. Adjust lightness, saturation, or mix with another color.
Base
#0077CC
Result
#0077CC
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#0077CC
0%+
Mix color
#808080
100%Result
#627BA6
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
68%
20%
12%
RYB PIGMENTS
Ultramarine blue
Pigment
68%
Ivory black
Pigment
20%
Cadmium yellow
Pigment
12%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
100%
CYAN
42%
MAGENTA
20%
KEY
CMYK INKS
Cyan
Ink
100%
Magenta
Ink
42%
Black (Key)
Ink
20%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
470 nm
638 THz • 2.64 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
17.6%
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
sky-600
#0284c7
ΔE: 5.7
Google Material
Original
Standard
Blue 700
#1976D2
ΔE: 1.8
CSS Color Name
Original
Standard
SteelBlue
#4682B4
ΔE: 5.2
Apple System (iOS)
Original
Standard
System Blue
#007AFF
ΔE: 6.7
Pantone (PMS)
Original
Standard
PMS 18-4141 campanula
#3272AF
ΔE: 3.4
RAL Classic
Original
Standard
RAL 5015 Sky blue
#007CB0
ΔE: 6.5
Copic Marker
Original
Standard
Ultramarine
#0077ba
ΔE: 2.9
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #0077cc;
--rgb-primary: 0, 119, 204;
}SCSS variable
1
2
3
4
5
$color-primary: #0077cc;
$rgb-primary: (0, 119, 204);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#0077cc',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#0077cc',
},
text: {
color: '#0077cc',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0,
green: 0.4666666666666667,
blue: 0.8
)Full JSON data
1
2
3
4
5
{
"name": "Lochmara",
"hex": "#0077cc",
"rgb": {
"r": 0,
"g": 119,
"b": 204
},
"hsl": {
"h": 205,
"s": 100,
"l": 40
}
}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