#BBBDD3 Light Steel Blue

rgb(187, 189, 211)

Color conversions

HEX
#BBBDD3
RGB
rgb(187, 189, 211)
RGBA
rgba(187, 189, 211, 1)
HSL
hsl(235, 21%, 78%)
HSV / HSB
hsv(235, 11%, 83%)
CMYK
cmyk(11%, 10%, 0%, 17%)

Wide-gamut spaces

XYZ
xyz(50.446, 51.663, 68.93)
LAB
lab(77.08 3.62 -11.25)
LCH
lch(77.08 11.82 287.86)
OKLAB
oklab(80.37% 0.0062 -0.0303)
OKLCH
oklch(80.37% 0.0309 281.55)
Nearest name
Light Steel 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

#bbbdd31a

#bbbdd333

#bbbdd34d

#bbbdd366

#bbbdd380

#bbbdd399

#bbbdd3b3

#bbbdd3cc

#bbbdd3e6

#bbbdd3ff

Accessibility and contrast

On white

1.85:1

Body text Fail · Large text Fail

On black

11.33:1

Body text AAA · Large text AA

White-on-color contrast is 1.85: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

The default of trust — and of everything else

Blue lowers perceived risk and is consistently rated as the most trustworthy hue, which is exactly why it saturates finance, enterprise software, and social platforms. Its ubiquity is now its weakness: a blue primary is safe but rarely memorable.

Trust, stability, and competence in Western markets; immortality in parts of East Asia; and protection against the evil eye across the Mediterranean and Middle East.

Ultramarine was ground from lapis lazuli and once cost more than gold, which is why medieval painters reserved it for the Virgin's robes. Synthetic ultramarine in 1826 democratised it almost overnight.

Reliable as a primary in any category that must feel secure. Differentiate by pushing toward an unusual chroma or pairing with an unexpected accent rather than defaulting to blue-plus-gray.

Common industries: Finance, Enterprise software, Insurance, Government, Aviation. Pairs well with warm amber for energy, crisp white for clarity, rose for a contemporary contrast.

Code exports

CSS

:root {
  --color-light-steel-blue: #bbbdd3;
  --color-light-steel-blue-rgb: 187 189 211;
  --color-light-steel-blue-hsl: 235 21% 78%;
  --color-light-steel-blue-oklch: 80.37% 0.0309 281.55;
}

.element {
  color: #bbbdd3;
  background-color: hsl(235, 21%, 78%);
  border: 1px solid rgb(187 189 211 / 40%);
}

SCSS

$light-steel-blue: #bbbdd3;
$light-steel-blue-light: #dddee9;
$light-steel-blue-dark: #5e5f6a;

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

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

LESS

@light-steel-blue: #bbbdd3;
@light-steel-blue-light: lighten(@light-steel-blue, 12%);
@light-steel-blue-dark: darken(@light-steel-blue, 12%);

.element {
  color: @light-steel-blue;
  background: fade(@light-steel-blue, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-light-steel-blue-50: #f1f2f6;
  --color-light-steel-blue-100: #ebebf2;
  --color-light-steel-blue-200: #e4e5ed;
  --color-light-steel-blue-300: #d6d7e5;
  --color-light-steel-blue-400: #c9cadc;
  --color-light-steel-blue-500: #bbbdd3;
  --color-light-steel-blue-600: #a8aabe;
  --color-light-steel-blue-700: #838494;
  --color-light-steel-blue-800: #5e5f6a;
  --color-light-steel-blue-900: #38393f;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$light-steel-blue: #bbbdd3;
$primary: $light-steel-blue;

$theme-colors: map-merge($theme-colors, (
  "light-steel-blue": $light-steel-blue
));

// Generates .text-light-steel-blue, .bg-light-steel-blue, .btn-light-steel-blue
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color lightSteelBlue = Color(0xFFBBBDD3);

// As a MaterialColor swatch
const MaterialColor lightSteelBlueSwatch = MaterialColor(0xFFBBBDD3, <int, Color>{
  50: Color(0xFFF1F2F6),
  100: Color(0xFFEBEBF2),
  200: Color(0xFFE4E5ED),
  300: Color(0xFFD6D7E5),
  400: Color(0xFFC9CADC),
  500: Color(0xFFBBBDD3),
  600: Color(0xFFA8AABE),
  700: Color(0xFF838494),
  800: Color(0xFF5E5F6A),
  900: Color(0xFF38393F),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #bbbdd3 — Light Steel Blue
    static let lightSteelBlue = Color(
        red: 0.7333,
        green: 0.7412,
        blue: 0.8275
    )
}

// UIKit
extension UIColor {
    static let lightSteelBlue = UIColor(
        red: 0.7333,
        green: 0.7412,
        blue: 0.8275,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="light_steel_blue">#BBBDD3</color>
    <color name="light_steel_blue_translucent">#80BBBDD3</color>
</resources>

<!-- Jetpack Compose -->
val LightSteelBlue = Color(0xFFBBBDD3)

JavaScript

export const LIGHT_STEEL_BLUE = {
  hex: "#bbbdd3",
  rgb: [187, 189, 211],
  hsl: [235, 21, 78],
  oklch: "oklch(80.37% 0.0309 281.55)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "light-steel-blue": {
    "$type": "color",
    "$value": "#bbbdd3",
    "$description": "Light Steel Blue — generated by ColorVerse AI"
  }
}