#4E9CA2 Cadet Blue
rgb(78, 156, 162)
Color conversions
- HEX
- #4E9CA2
- RGB
- rgb(78, 156, 162)
- RGBA
- rgba(78, 156, 162, 1)
- HSL
- hsl(184, 35%, 47%)
- HSV / HSB
- hsv(184, 52%, 64%)
- CMYK
- cmyk(52%, 4%, 0%, 36%)
Wide-gamut spaces
- XYZ
- xyz(21.549, 28.003, 38.445)
- LAB
- lab(59.89 -22.24 -10.51)
- LCH
- lch(59.89 24.59 205.3)
- OKLAB
- oklab(64.58% -0.0715 -0.029)
- OKLCH
- oklch(64.58% 0.0772 202.08)
- Nearest name
- Cadet Blue
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#4e9ca21a
#4e9ca233
#4e9ca24d
#4e9ca266
#4e9ca280
#4e9ca299
#4e9ca2b3
#4e9ca2cc
#4e9ca2e6
#4e9ca2ff
Accessibility and contrast
On white
3.18:1
Body text AA Large · Large text AA
On black
6.6:1
Body text AA · Large text AA
White-on-color contrast is 3.18:1.
Color blindness preview
Protanopia
No red cones — ~1% of men
Protanomaly
Reduced red sensitivity — ~1% of men
Deuteranopia
No green cones — ~1% of men
Deuteranomaly
Reduced green sensitivity — ~5% of men
Tritanopia
No blue cones — very rare
Tritanomaly
Reduced blue sensitivity — very rare
Achromatopsia
No color perception — ~1 in 30,000
Achromatomaly
Partial color perception — rare
Meaning, psychology and brand usage
Clean, technical, and effortlessly modern
Cyan and teal sit between blue's trust and green's calm, reading as clinical and precise. They perform well in data visualisation because they remain distinguishable for most forms of colour vision deficiency.
Water, hygiene, and clarity almost universally. Teal specifically carries a mid-century and medical association in Western design history.
Cyan entered common vocabulary through four-colour printing, where it is one of the process inks. Egyptian blue and later cerulean gave artists the closest historical equivalents.
Excellent for healthcare, SaaS, and fintech seeking approachability without blue's ubiquity. Deepen it for text use — bright cyan rarely reaches AA on white.
Common industries: Healthcare, SaaS, Travel, Water & utilities, Beauty. Pairs well with coral for warmth, deep navy for hierarchy, soft gray for restraint.
Code exports
CSS
:root {
--color-cadet-blue: #4e9ca2;
--color-cadet-blue-rgb: 78 156 162;
--color-cadet-blue-hsl: 184 35% 47%;
--color-cadet-blue-oklch: 64.58% 0.0772 202.08;
}
.element {
color: #4e9ca2;
background-color: hsl(184, 35%, 47%);
border: 1px solid rgb(78 156 162 / 40%);
}SCSS
$cadet-blue: #4e9ca2;
$cadet-blue-light: #a7ced1;
$cadet-blue-dark: #274e51;
.element {
color: $cadet-blue;
background: rgba($cadet-blue, 0.12);
&:hover {
color: darken($cadet-blue, 8%);
}
}LESS
@cadet-blue: #4e9ca2;
@cadet-blue-light: lighten(@cadet-blue, 12%);
@cadet-blue-dark: darken(@cadet-blue, 12%);
.element {
color: @cadet-blue;
background: fade(@cadet-blue, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-cadet-blue-50: #dcebec;
--color-cadet-blue-100: #cae1e3;
--color-cadet-blue-200: #b8d7da;
--color-cadet-blue-300: #95c4c7;
--color-cadet-blue-400: #71b0b5;
--color-cadet-blue-500: #4e9ca2;
--color-cadet-blue-600: #468c92;
--color-cadet-blue-700: #376d71;
--color-cadet-blue-800: #274e51;
--color-cadet-blue-900: #172f31;
}
/* Usage */
<div class="bg-cadet-blue-500 text-cadet-blue-50 ring-cadet-blue-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#4e9ca2]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$cadet-blue: #4e9ca2;
$primary: $cadet-blue;
$theme-colors: map-merge($theme-colors, (
"cadet-blue": $cadet-blue
));
// Generates .text-cadet-blue, .bg-cadet-blue, .btn-cadet-blue
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color cadetBlue = Color(0xFF4E9CA2);
// As a MaterialColor swatch
const MaterialColor cadetBlueSwatch = MaterialColor(0xFF4E9CA2, <int, Color>{
50: Color(0xFFDCEBEC),
100: Color(0xFFCAE1E3),
200: Color(0xFFB8D7DA),
300: Color(0xFF95C4C7),
400: Color(0xFF71B0B5),
500: Color(0xFF4E9CA2),
600: Color(0xFF468C92),
700: Color(0xFF376D71),
800: Color(0xFF274E51),
900: Color(0xFF172F31),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #4e9ca2 — Cadet Blue
static let cadetBlue = Color(
red: 0.3059,
green: 0.6118,
blue: 0.6353
)
}
// UIKit
extension UIColor {
static let cadetBlue = UIColor(
red: 0.3059,
green: 0.6118,
blue: 0.6353,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="cadet_blue">#4E9CA2</color>
<color name="cadet_blue_translucent">#804E9CA2</color>
</resources>
<!-- Jetpack Compose -->
val CadetBlue = Color(0xFF4E9CA2)JavaScript
export const CADET_BLUE = {
hex: "#4e9ca2",
rgb: [78, 156, 162],
hsl: [184, 35, 47],
oklch: "oklch(64.58% 0.0772 202.08)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"cadet-blue": {
"$type": "color",
"$value": "#4e9ca2",
"$description": "Cadet Blue — generated by ColorVerse AI"
}
}