#B2AFCD Light Steel Blue
rgb(178, 175, 205)
Color conversions
- HEX
- #B2AFCD
- RGB
- rgb(178, 175, 205)
- RGBA
- rgba(178, 175, 205, 1)
- HSL
- hsl(246, 23%, 75%)
- HSV / HSB
- hsv(246, 15%, 80%)
- CMYK
- cmyk(13%, 15%, 0%, 20%)
Wide-gamut spaces
- XYZ
- xyz(44.707, 44.532, 63.986)
- LAB
- lab(72.58 7.03 -14.79)
- LCH
- lch(72.58 16.38 295.41)
- OKLAB
- oklab(76.63% 0.0145 -0.04)
- OKLCH
- oklch(76.63% 0.0426 289.94)
- Nearest name
- Light Steel 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
#b2afcd1a
#b2afcd33
#b2afcd4d
#b2afcd66
#b2afcd80
#b2afcd99
#b2afcdb3
#b2afcdcc
#b2afcde6
#b2afcdff
Accessibility and contrast
On white
2.12:1
Body text Fail · Large text Fail
On black
9.91:1
Body text AAA · Large text AA
White-on-color contrast is 2.12: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: #b2afcd;
--color-light-steel-blue-rgb: 178 175 205;
--color-light-steel-blue-hsl: 246 23% 75%;
--color-light-steel-blue-oklch: 76.63% 0.0426 289.94;
}
.element {
color: #b2afcd;
background-color: hsl(246, 23%, 75%);
border: 1px solid rgb(178 175 205 / 40%);
}SCSS
$light-steel-blue: #b2afcd;
$light-steel-blue-light: #d9d7e6;
$light-steel-blue-dark: #595867;
.element {
color: $light-steel-blue;
background: rgba($light-steel-blue, 0.12);
&:hover {
color: darken($light-steel-blue, 8%);
}
}LESS
@light-steel-blue: #b2afcd;
@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: #f0eff5;
--color-light-steel-blue-100: #e8e7f0;
--color-light-steel-blue-200: #e0dfeb;
--color-light-steel-blue-300: #d1cfe1;
--color-light-steel-blue-400: #c1bfd7;
--color-light-steel-blue-500: #b2afcd;
--color-light-steel-blue-600: #a09eb9;
--color-light-steel-blue-700: #7d7a90;
--color-light-steel-blue-800: #595867;
--color-light-steel-blue-900: #35353e;
}
/* 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-[#b2afcd]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$light-steel-blue: #b2afcd;
$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(0xFFB2AFCD);
// As a MaterialColor swatch
const MaterialColor lightSteelBlueSwatch = MaterialColor(0xFFB2AFCD, <int, Color>{
50: Color(0xFFF0EFF5),
100: Color(0xFFE8E7F0),
200: Color(0xFFE0DFEB),
300: Color(0xFFD1CFE1),
400: Color(0xFFC1BFD7),
500: Color(0xFFB2AFCD),
600: Color(0xFFA09EB9),
700: Color(0xFF7D7A90),
800: Color(0xFF595867),
900: Color(0xFF35353E),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #b2afcd — Light Steel Blue
static let lightSteelBlue = Color(
red: 0.698,
green: 0.6863,
blue: 0.8039
)
}
// UIKit
extension UIColor {
static let lightSteelBlue = UIColor(
red: 0.698,
green: 0.6863,
blue: 0.8039,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="light_steel_blue">#B2AFCD</color>
<color name="light_steel_blue_translucent">#80B2AFCD</color>
</resources>
<!-- Jetpack Compose -->
val LightSteelBlue = Color(0xFFB2AFCD)JavaScript
export const LIGHT_STEEL_BLUE = {
hex: "#b2afcd",
rgb: [178, 175, 205],
hsl: [246, 23, 75],
oklch: "oklch(76.63% 0.0426 289.94)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"light-steel-blue": {
"$type": "color",
"$value": "#b2afcd",
"$description": "Light Steel Blue — generated by ColorVerse AI"
}
}