#3333FD Medium Blue

rgb(51, 51, 253)

Color conversions

HEX
#3333FD
RGB
rgb(51, 51, 253)
RGBA
rgba(51, 51, 253, 1)
HSL
hsl(240, 98%, 60%)
HSV / HSB
hsv(240, 80%, 99%)
CMYK
cmyk(80%, 80%, 0%, 1%)

Wide-gamut spaces

XYZ
xyz(20.273, 10.161, 93.802)
LAB
lab(38.13 65.42 -96.98)
LCH
lch(38.13 116.98 304)
OKLAB
oklab(49.51% -0.0004 -0.2808)
OKLCH
oklch(49.51% 0.2808 269.92)
Nearest name
Medium 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

#3333fd1a

#3333fd33

#3333fd4d

#3333fd66

#3333fd80

#3333fd99

#3333fdb3

#3333fdcc

#3333fde6

#3333fdff

Accessibility and contrast

On white

6.92:1

Body text AA · Large text AA

On black

3.03:1

Body text AA Large · Large text AA

White-on-color contrast is 6.92: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-medium-blue: #3333fd;
  --color-medium-blue-rgb: 51 51 253;
  --color-medium-blue-hsl: 240 98% 60%;
  --color-medium-blue-oklch: 49.51% 0.2808 269.92;
}

.element {
  color: #3333fd;
  background-color: hsl(240, 98%, 60%);
  border: 1px solid rgb(51 51 253 / 40%);
}

SCSS

$medium-blue: #3333fd;
$medium-blue-light: #9999fe;
$medium-blue-dark: #1a1a7f;

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

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

LESS

@medium-blue: #3333fd;
@medium-blue-light: lighten(@medium-blue, 12%);
@medium-blue-dark: darken(@medium-blue, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-medium-blue-50: #d6d6ff;
  --color-medium-blue-100: #c2c2fe;
  --color-medium-blue-200: #adadfe;
  --color-medium-blue-300: #8585fe;
  --color-medium-blue-400: #5c5cfd;
  --color-medium-blue-500: #3333fd;
  --color-medium-blue-600: #2e2ee4;
  --color-medium-blue-700: #2424b1;
  --color-medium-blue-800: #1a1a7f;
  --color-medium-blue-900: #0f0f4c;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$medium-blue: #3333fd;
$primary: $medium-blue;

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

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

Flutter

import 'package:flutter/material.dart';

const Color mediumBlue = Color(0xFF3333FD);

// As a MaterialColor swatch
const MaterialColor mediumBlueSwatch = MaterialColor(0xFF3333FD, <int, Color>{
  50: Color(0xFFD6D6FF),
  100: Color(0xFFC2C2FE),
  200: Color(0xFFADADFE),
  300: Color(0xFF8585FE),
  400: Color(0xFF5C5CFD),
  500: Color(0xFF3333FD),
  600: Color(0xFF2E2EE4),
  700: Color(0xFF2424B1),
  800: Color(0xFF1A1A7F),
  900: Color(0xFF0F0F4C),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #3333fd — Medium Blue
    static let mediumBlue = Color(
        red: 0.2,
        green: 0.2,
        blue: 0.9922
    )
}

// UIKit
extension UIColor {
    static let mediumBlue = UIColor(
        red: 0.2,
        green: 0.2,
        blue: 0.9922,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="medium_blue">#3333FD</color>
    <color name="medium_blue_translucent">#803333FD</color>
</resources>

<!-- Jetpack Compose -->
val MediumBlue = Color(0xFF3333FD)

JavaScript

export const MEDIUM_BLUE = {
  hex: "#3333fd",
  rgb: [51, 51, 253],
  hsl: [240, 98, 60],
  oklch: "oklch(49.51% 0.2808 269.92)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "medium-blue": {
    "$type": "color",
    "$value": "#3333fd",
    "$description": "Medium Blue — generated by ColorVerse AI"
  }
}