Munsell

HEX: #F2F3F4 | Modern Palette

On White
1.11:1
FAIL
On Black
18.90:1
PASS

Color Specifications

HEX
#F2F3F4
RGB
242, 243, 244
HSL
210°, 8% ,95%
CMYK
1, 0, 0, 4

About Munsell

Munsell (#F2F3F4) is a color with RGB(242, 243, 244) and HSL(210°, 8.3%, 95.3%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Print. Its complementary color is #F4F3F2, which creates strong contrast. Its triadic palette includes #F4F2F3 and #F3F4F2. The name comes from Munsell (English).

  • HEX: #F2F3F4
  • RGB: 242, 243, 244
  • HSL: 210°, 8.3%, 95.3%
  • Mood: Minimal
  • Style: Monochrome, Pastel
  • Use case: Text, Background, Print
  • Complementary color: #F4F3F2
  • Triadic colors: #F4F2F3, #F3F4F2
  • The name comes from Munsell (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #F2F3F4 from deepest shade to lightest tint.

Color Characteristics

Accessibility Simulation

Deuteranopia #F3F3F4
Protanopia #F3F3F4
Tritanopia #F2F3F3
Achromatopsia #F3F3F3

Frequently Asked Questions

Munsell (#F2F3F4) is a color with RGB(242, 243, 244) and HSL(210°, 8.3%, 95.3%).

#F2F3F4 pairs strongly with #F4F3F2 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F2F3F4 is suitable for Text, Background, Print and works well with Monochrome, Pastel styles.

#F2F3F4 is commonly associated with Minimal.

The name Munsell is linked to Munsell from English, meaning A system for color notation.

Name, History & Etymology

Origin Word Munsell
Meaning A system for color notation
Language English
First Recorded Use Early 20th Century

History

The Munsell color system was created by Albert H. Munsell (1858–1918), an American artist and art instructor. He developed the system to create a 'rational way to describe color' that would be more precise and consistent than traditional color names. The system is based on three independent dimensions: hue, value (lightness), and chroma (colorfulness). It was first published in his book 'A Color Notation' in 1905 and later refined. It gained significant traction in various fields, including science, industry, and art, for its perceptually uniform spacing.

First Recorded Use

1905 (publication of 'A Color Notation')

Cultural Associations

The Munsell system is widely recognized as one of the most important and influential color order systems. It is still used today in fields requiring precise color communication, such as soil science (Munsell Soil Color Charts), dentistry, and art conservation. Its impact extends to the development of other color systems and standards. The Munsell Color Company was established to produce and market Munsell products, and the Munsell Color Science Laboratory at Rochester Institute of Technology continues research in color science.

Similar Named Colors

White Smoke #F5F5F5 ΔE 0.77
White #FFFFFF ΔE 2.53
Isabelline #F4F0EC ΔE 3.12
Snow #FFFAFA ΔE 3.31

Code Snippets

/* Background */
.element {
    background-color: #F2F3F4;
}

/* Text */
.element {
    color: #F2F3F4;
}

/* Border */
.element {
    border: 1px solid #F2F3F4;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F2F3F4,
        #F4F3F2
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F2F3F4,
        #F4F3F2
    );
}

// SCSS variable
$munsell: #F2F3F4;

// With RGB channels (useful for rgba() usage)
$munsell-r: 242;
$munsell-g: 243;
$munsell-b: 244;

// Usage
.element {
    background-color: $munsell;
    color: rgba($munsell-r, $munsell-g, $munsell-b, 0.8);
}