Light French Beige
HEX: #C8AD7F | Modern Palette
Color Specifications
#C8AD7F
200, 173, 127
37°, 36% ,78%
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
Color Palettes
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.
Frequently Asked Questions
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);
}