#080422 Oxford Blue

rgb(8, 4, 34)

Color conversions

HEX
#080422
RGB
rgb(8, 4, 34)
RGBA
rgba(8, 4, 34, 1)
HSL
hsl(248, 79%, 7%)
HSV / HSB
hsv(248, 88%, 13%)
CMYK
cmyk(76%, 88%, 0%, 87%)

Wide-gamut spaces

XYZ
xyz(0.432, 0.254, 1.539)
LAB
lab(2.29 7.82 -16.82)
LCH
lch(2.29 18.55 294.93)
OKLAB
oklab(14.28% 0.0141 -0.0607)
OKLCH
oklch(14.28% 0.0623 283.08)
Nearest name
Oxford 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

#0804221a

#08042233

#0804224d

#08042266

#08042280

#08042299

#080422b3

#080422cc

#080422e6

#080422ff

Accessibility and contrast

On white

19.98:1

Body text AAA · Large text AA

On black

1.05:1

Body text Fail · Large text Fail

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

Authority, and the safest text colour you can choose

Black reads as premium, definitive, and serious. True #000 on pure white is harsher than most eyes prefer at length — a near-black with a hint of the brand hue is easier to read and feels more considered.

Elegance and formality in Western markets, mourning in most, and authority nearly everywhere.

Carbon black from soot is among the oldest pigments in use. Ink-black printing set the typographic conventions that screen interfaces still inherit.

The default for luxury, fashion, and editorial. In dark interfaces avoid pure black surfaces — slightly lifted charcoals reduce halation around light text.

Common industries: Luxury, Fashion, Photography, Editorial, Audio. Pairs well with a single vivid accent, warm off-white for type, metallic tones for luxury.

Code exports

CSS

:root {
  --color-oxford-blue: #080422;
  --color-oxford-blue-rgb: 8 4 34;
  --color-oxford-blue-hsl: 248 79% 7%;
  --color-oxford-blue-oklch: 14.28% 0.0623 283.08;
}

.element {
  color: #080422;
  background-color: hsl(248, 79%, 7%);
  border: 1px solid rgb(8 4 34 / 40%);
}

SCSS

$oxford-blue: #080422;
$oxford-blue-light: #848291;
$oxford-blue-dark: #040211;

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

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

LESS

@oxford-blue: #080422;
@oxford-blue-light: lighten(@oxford-blue, 12%);
@oxford-blue-dark: darken(@oxford-blue, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-oxford-blue-50: #cecdd3;
  --color-oxford-blue-100: #b5b4bd;
  --color-oxford-blue-200: #9c9ba7;
  --color-oxford-blue-300: #6b687a;
  --color-oxford-blue-400: #39364e;
  --color-oxford-blue-500: #080422;
  --color-oxford-blue-600: #07041f;
  --color-oxford-blue-700: #060318;
  --color-oxford-blue-800: #040211;
  --color-oxford-blue-900: #02010a;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$oxford-blue: #080422;
$primary: $oxford-blue;

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

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

Flutter

import 'package:flutter/material.dart';

const Color oxfordBlue = Color(0xFF080422);

// As a MaterialColor swatch
const MaterialColor oxfordBlueSwatch = MaterialColor(0xFF080422, <int, Color>{
  50: Color(0xFFCECDD3),
  100: Color(0xFFB5B4BD),
  200: Color(0xFF9C9BA7),
  300: Color(0xFF6B687A),
  400: Color(0xFF39364E),
  500: Color(0xFF080422),
  600: Color(0xFF07041F),
  700: Color(0xFF060318),
  800: Color(0xFF040211),
  900: Color(0xFF02010A),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #080422 — Oxford Blue
    static let oxfordBlue = Color(
        red: 0.0314,
        green: 0.0157,
        blue: 0.1333
    )
}

// UIKit
extension UIColor {
    static let oxfordBlue = UIColor(
        red: 0.0314,
        green: 0.0157,
        blue: 0.1333,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="oxford_blue">#080422</color>
    <color name="oxford_blue_translucent">#80080422</color>
</resources>

<!-- Jetpack Compose -->
val OxfordBlue = Color(0xFF080422)

JavaScript

export const OXFORD_BLUE = {
  hex: "#080422",
  rgb: [8, 4, 34],
  hsl: [248, 79, 7],
  oklch: "oklch(14.28% 0.0623 283.08)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "oxford-blue": {
    "$type": "color",
    "$value": "#080422",
    "$description": "Oxford Blue — generated by ColorVerse AI"
  }
}