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
Light French Beige #C8AD7F is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Light French Beige #C8AD7F pairs with #7F9AC8 as its complementary color, and #7FC8AD and #AD7FC8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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
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);
}