Satin Sheen Gold
HEX: #CBA135 | Modern Palette
Color Specifications
#CBA135
203, 161, 53
43°, 59% ,50%
0, 21, 74, 20
About Satin Sheen Gold
Satin Sheen Gold (#CBA135) is a color with RGB(203, 161, 53) and HSL(43.2°, 59.1%, 50.2%). In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #355FCB, which creates strong contrast. Its triadic palette includes #35CBA1 and #A135CB. The name comes from Satin Sheen Gold (English).
- HEX: #CBA135
- RGB: 203, 161, 53
- HSL: 43.2°, 59.1%, 50.2%
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #355FCB
- Triadic colors: #35CBA1, #A135CB
- The name comes from Satin Sheen Gold (English).
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 #CBA135 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'satin' for a type of fabric dates back to the Middle Ages, referring to a weave that produces a glossy surface. 'Sheen' refers to a soft luster or brightness. The combination 'Satin Sheen' is a modern descriptor used to specify a particular type of finish, often for paints, metals, or textiles, that is less reflective than 'gloss' but more so than 'matte'. Applying it to 'Gold' creates a specific visual expectation for a metallic color. The hexadecimal code #cba135 is a modern digital representation of this color.
First Recorded Use
Likely mid to late 20th century, as descriptive color names became more common in commercial and design contexts.
Cultural Associations
Gold, in general, has immense cultural significance across nearly all civilizations, symbolizing wealth, divinity, royalty, purity, and achievement. The 'satin sheen' aspect adds a touch of sophistication and understated luxury compared to a highly reflective, 'blingy' gold. It's often associated with classic elegance, vintage aesthetics, and high-quality finishes in interior design, fashion, and automotive industries.
Code Snippets
/* Background */
.element {
background-color: #CBA135;
}
/* Text */
.element {
color: #CBA135;
}
/* Border */
.element {
border: 1px solid #CBA135;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CBA135,
#355FCB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CBA135,
#355FCB
);
}
// SCSS variable
$satin-sheen-gold: #CBA135;
// With RGB channels (useful for rgba() usage)
$satin-sheen-gold-r: 203;
$satin-sheen-gold-g: 161;
$satin-sheen-gold-b: 53;
// Usage
.element {
background-color: $satin-sheen-gold;
color: rgba($satin-sheen-gold-r, $satin-sheen-gold-g, $satin-sheen-gold-b, 0.8);
}