#033952 Prussian Blue
rgb(3, 57, 82)
Color conversions
- HEX
- #033952
- RGB
- rgb(3, 57, 82)
- RGBA
- rgba(3, 57, 82, 1)
- HSL
- hsl(199, 93%, 17%)
- HSV / HSB
- hsv(199, 96%, 32%)
- CMYK
- cmyk(96%, 30%, 0%, 68%)
Wide-gamut spaces
- XYZ
- xyz(3.023, 3.554, 8.508)
- LAB
- lab(22.14 -5.98 -19.74)
- LCH
- lch(22.14 20.63 253.16)
- OKLAB
- oklab(32.59% -0.0382 -0.0559)
- OKLCH
- oklch(32.59% 0.0677 235.68)
- Nearest name
- Prussian 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
#0339521a
#03395233
#0339524d
#03395266
#03395280
#03395299
#033952b3
#033952cc
#033952e6
#033952ff
Accessibility and contrast
On white
12.27:1
Body text AAA · Large text AA
On black
1.71:1
Body text Fail · Large text Fail
White-on-color contrast is 12.27: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-prussian-blue: #033952;
--color-prussian-blue-rgb: 3 57 82;
--color-prussian-blue-hsl: 199 93% 17%;
--color-prussian-blue-oklch: 32.59% 0.0677 235.68;
}
.element {
color: #033952;
background-color: hsl(199, 93%, 17%);
border: 1px solid rgb(3 57 82 / 40%);
}SCSS
$prussian-blue: #033952;
$prussian-blue-light: #819ca9;
$prussian-blue-dark: #021d29;
.element {
color: $prussian-blue;
background: rgba($prussian-blue, 0.12);
&:hover {
color: darken($prussian-blue, 8%);
}
}LESS
@prussian-blue: #033952;
@prussian-blue-light: lighten(@prussian-blue, 12%);
@prussian-blue-dark: darken(@prussian-blue, 12%);
.element {
color: @prussian-blue;
background: fade(@prussian-blue, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-prussian-blue-50: #cdd7dc;
--color-prussian-blue-100: #b3c4cb;
--color-prussian-blue-200: #9ab0ba;
--color-prussian-blue-300: #688897;
--color-prussian-blue-400: #356175;
--color-prussian-blue-500: #033952;
--color-prussian-blue-600: #03334a;
--color-prussian-blue-700: #022839;
--color-prussian-blue-800: #021d29;
--color-prussian-blue-900: #011119;
}
/* Usage */
<div class="bg-prussian-blue-500 text-prussian-blue-50 ring-prussian-blue-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#033952]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$prussian-blue: #033952;
$primary: $prussian-blue;
$theme-colors: map-merge($theme-colors, (
"prussian-blue": $prussian-blue
));
// Generates .text-prussian-blue, .bg-prussian-blue, .btn-prussian-blue
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color prussianBlue = Color(0xFF033952);
// As a MaterialColor swatch
const MaterialColor prussianBlueSwatch = MaterialColor(0xFF033952, <int, Color>{
50: Color(0xFFCDD7DC),
100: Color(0xFFB3C4CB),
200: Color(0xFF9AB0BA),
300: Color(0xFF688897),
400: Color(0xFF356175),
500: Color(0xFF033952),
600: Color(0xFF03334A),
700: Color(0xFF022839),
800: Color(0xFF021D29),
900: Color(0xFF011119),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #033952 — Prussian Blue
static let prussianBlue = Color(
red: 0.0118,
green: 0.2235,
blue: 0.3216
)
}
// UIKit
extension UIColor {
static let prussianBlue = UIColor(
red: 0.0118,
green: 0.2235,
blue: 0.3216,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="prussian_blue">#033952</color>
<color name="prussian_blue_translucent">#80033952</color>
</resources>
<!-- Jetpack Compose -->
val PrussianBlue = Color(0xFF033952)JavaScript
export const PRUSSIAN_BLUE = {
hex: "#033952",
rgb: [3, 57, 82],
hsl: [199, 93, 17],
oklch: "oklch(32.59% 0.0677 235.68)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"prussian-blue": {
"$type": "color",
"$value": "#033952",
"$description": "Prussian Blue — generated by ColorVerse AI"
}
}