#2883CD French Blue

rgb(40, 131, 205)

Color conversions

HEX
#2883CD
RGB
rgb(40, 131, 205)
RGBA
rgba(40, 131, 205, 1)
HSL
hsl(207, 67%, 48%)
HSV / HSB
hsv(207, 80%, 80%)
CMYK
cmyk(80%, 36%, 0%, 20%)

Wide-gamut spaces

XYZ
xyz(20.007, 21.089, 60.762)
LAB
lab(53.05 -0.19 -45.61)
LCH
lch(53.05 45.61 269.76)
OKLAB
oklab(59.4% -0.0527 -0.13)
OKLCH
oklch(59.4% 0.1403 247.92)
Nearest name
French 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

#2883cd1a

#2883cd33

#2883cd4d

#2883cd66

#2883cd80

#2883cd99

#2883cdb3

#2883cdcc

#2883cde6

#2883cdff

Accessibility and contrast

On white

4.02:1

Body text AA Large · Large text AA

On black

5.22:1

Body text AA · Large text AA

White-on-color contrast is 4.02: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-french-blue: #2883cd;
  --color-french-blue-rgb: 40 131 205;
  --color-french-blue-hsl: 207 67% 48%;
  --color-french-blue-oklch: 59.4% 0.1403 247.92;
}

.element {
  color: #2883cd;
  background-color: hsl(207, 67%, 48%);
  border: 1px solid rgb(40 131 205 / 40%);
}

SCSS

$french-blue: #2883cd;
$french-blue-light: #94c1e6;
$french-blue-dark: #144267;

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

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

LESS

@french-blue: #2883cd;
@french-blue-light: lighten(@french-blue, 12%);
@french-blue-dark: darken(@french-blue, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-french-blue-50: #d4e6f5;
  --color-french-blue-100: #bfdaf0;
  --color-french-blue-200: #a9cdeb;
  --color-french-blue-300: #7eb5e1;
  --color-french-blue-400: #539cd7;
  --color-french-blue-500: #2883cd;
  --color-french-blue-600: #2476b9;
  --color-french-blue-700: #1c5c90;
  --color-french-blue-800: #144267;
  --color-french-blue-900: #0c273e;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$french-blue: #2883cd;
$primary: $french-blue;

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

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

Flutter

import 'package:flutter/material.dart';

const Color frenchBlue = Color(0xFF2883CD);

// As a MaterialColor swatch
const MaterialColor frenchBlueSwatch = MaterialColor(0xFF2883CD, <int, Color>{
  50: Color(0xFFD4E6F5),
  100: Color(0xFFBFDAF0),
  200: Color(0xFFA9CDEB),
  300: Color(0xFF7EB5E1),
  400: Color(0xFF539CD7),
  500: Color(0xFF2883CD),
  600: Color(0xFF2476B9),
  700: Color(0xFF1C5C90),
  800: Color(0xFF144267),
  900: Color(0xFF0C273E),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #2883cd — French Blue
    static let frenchBlue = Color(
        red: 0.1569,
        green: 0.5137,
        blue: 0.8039
    )
}

// UIKit
extension UIColor {
    static let frenchBlue = UIColor(
        red: 0.1569,
        green: 0.5137,
        blue: 0.8039,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="french_blue">#2883CD</color>
    <color name="french_blue_translucent">#802883CD</color>
</resources>

<!-- Jetpack Compose -->
val FrenchBlue = Color(0xFF2883CD)

JavaScript

export const FRENCH_BLUE = {
  hex: "#2883cd",
  rgb: [40, 131, 205],
  hsl: [207, 67, 48],
  oklch: "oklch(59.4% 0.1403 247.92)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "french-blue": {
    "$type": "color",
    "$value": "#2883cd",
    "$description": "French Blue — generated by ColorVerse AI"
  }
}