#449CB2 Cadet Blue

rgb(68, 156, 178)

Color conversions

HEX
#449CB2
RGB
rgb(68, 156, 178)
RGBA
rgba(68, 156, 178, 1)
HSL
hsl(192, 45%, 48%)
HSV / HSB
hsv(192, 62%, 70%)
CMYK
cmyk(62%, 12%, 0%, 30%)

Wide-gamut spaces

XYZ
xyz(22.305, 28.218, 46.382)
LAB
lab(60.09 -19.55 -19.3)
LCH
lch(60.09 27.47 224.64)
OKLAB
oklab(64.82% -0.0715 -0.0536)
OKLCH
oklch(64.82% 0.0894 216.88)
Nearest name
Cadet Blue

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#449cb21a

#449cb233

#449cb24d

#449cb266

#449cb280

#449cb299

#449cb2b3

#449cb2cc

#449cb2e6

#449cb2ff

Accessibility and contrast

On white

3.16:1

Body text AA Large · Large text AA

On black

6.64:1

Body text AA · Large text AA

White-on-color contrast is 3.16: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: #449cb2;
  --color-cadet-blue-rgb: 68 156 178;
  --color-cadet-blue-hsl: 192 45% 48%;
  --color-cadet-blue-oklch: 64.82% 0.0894 216.88;
}

.element {
  color: #449cb2;
  background-color: hsl(192, 45%, 48%);
  border: 1px solid rgb(68 156 178 / 40%);
}

SCSS

$cadet-blue: #449cb2;
$cadet-blue-light: #a2ced9;
$cadet-blue-dark: #224e59;

.element {
  color: $cadet-blue;
  background: rgba($cadet-blue, 0.12);

  &:hover {
    color: darken($cadet-blue, 8%);
  }
}

LESS

@cadet-blue: #449cb2;
@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: #daebf0;
  --color-cadet-blue-100: #c7e1e8;
  --color-cadet-blue-200: #b4d7e0;
  --color-cadet-blue-300: #8fc4d1;
  --color-cadet-blue-400: #69b0c1;
  --color-cadet-blue-500: #449cb2;
  --color-cadet-blue-600: #3d8ca0;
  --color-cadet-blue-700: #306d7d;
  --color-cadet-blue-800: #224e59;
  --color-cadet-blue-900: #142f35;
}

/* Usage */
<div class="bg-cadet-blue-500 text-cadet-blue-50 ring-cadet-blue-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#449cb2]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$cadet-blue: #449cb2;
$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(0xFF449CB2);

// As a MaterialColor swatch
const MaterialColor cadetBlueSwatch = MaterialColor(0xFF449CB2, <int, Color>{
  50: Color(0xFFDAEBF0),
  100: Color(0xFFC7E1E8),
  200: Color(0xFFB4D7E0),
  300: Color(0xFF8FC4D1),
  400: Color(0xFF69B0C1),
  500: Color(0xFF449CB2),
  600: Color(0xFF3D8CA0),
  700: Color(0xFF306D7D),
  800: Color(0xFF224E59),
  900: Color(0xFF142F35),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #449cb2 — Cadet Blue
    static let cadetBlue = Color(
        red: 0.2667,
        green: 0.6118,
        blue: 0.698
    )
}

// UIKit
extension UIColor {
    static let cadetBlue = UIColor(
        red: 0.2667,
        green: 0.6118,
        blue: 0.698,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="cadet_blue">#449CB2</color>
    <color name="cadet_blue_translucent">#80449CB2</color>
</resources>

<!-- Jetpack Compose -->
val CadetBlue = Color(0xFF449CB2)

JavaScript

export const CADET_BLUE = {
  hex: "#449cb2",
  rgb: [68, 156, 178],
  hsl: [192, 45, 48],
  oklch: "oklch(64.82% 0.0894 216.88)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "cadet-blue": {
    "$type": "color",
    "$value": "#449cb2",
    "$description": "Cadet Blue — generated by ColorVerse AI"
  }
}