Light French Beige

HEX: #C8AD7F | Modern Palette

On White
2.16:1
FAIL
On Black
9.74:1
PASS

Color Specifications

HEX
#C8AD7F
RGB
200, 173, 127
HSL
37°, 36% ,78%
CMYK
0, 13.5, 36.5, 21.57

About Light French Beige

Light French Beige (#C8AD7F) is a color with RGB(200, 173, 127) and HSL(37.81°, 36.5%, 78.43%). In design, it fits Warm styles and is suitable for Text, Print. Its complementary color is #7F9AC8, which creates strong contrast. Its triadic palette includes #7FC8AD and #AD7FC8.

  • HEX: #C8AD7F
  • RGB: 200, 173, 127
  • HSL: 37.81°, 36.5%, 78.43%
  • Style: Warm
  • Use case: Text, Print
  • Complementary color: #7F9AC8
  • Triadic colors: #7FC8AD, #AD7FC8

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 #C8AD7F from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #B5B57E
Protanopia #B0B07F
Tritanopia #CCA8A8
Achromatopsia #B1B1B1

Frequently Asked Questions

Light French Beige (#C8AD7F) is a color with RGB(200, 173, 127) and HSL(37.81°, 36.5%, 78.43%).

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

#C8AD7F is suitable for Text, Print and works well with Warm styles.

Similar Named Colors

Tan #D2B48C ΔE 3.20
Sand #C2B280 ΔE 4.36
Khaki #C3B091 ΔE 4.45
Burlywood #DEB887 ΔE 4.86

Code Snippets

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

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

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

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

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

// SCSS variable
$light-french-beige: #C8AD7F;

// With RGB channels (useful for rgba() usage)
$light-french-beige-r: 200;
$light-french-beige-g: 173;
$light-french-beige-b: 127;

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