Brown Yellow
HEX: #CC9966 | Modern Palette
Color Specifications
#CC9966
204, 153, 102
30°, 50% ,80%
0, 25, 50, 20
About Brown Yellow
Brown Yellow (#CC9966) is a color with RGB(204, 153, 102) and HSL(30°, 50%, 80%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is Blue Gray (#6699CC), which creates strong contrast. Its triadic palette includes #66CC99 and Amethyst (#9966CC). The name comes from Brown Yellow (English (descriptive)).
- HEX: #CC9966
- RGB: 204, 153, 102
- HSL: 30°, 50%, 80%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: Blue Gray (#6699CC)
- Triadic colors: #66CC99, Amethyst (#9966CC)
- The name comes from Brown Yellow (English (descriptive)).
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 #CC9966 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#AAAA64
#A0A066
#D09494
#A3A3A3
Frequently Asked Questions
Name, History & Etymology
History
The terms 'brown' and 'yellow' are ancient in English, with roots in Old English and Proto-Germanic. 'Brown' comes from Old English 'brūn' and Proto-Germanic '*brūnaz'. 'Yellow' comes from Old English 'geolu' and Proto-Germanic '*gelwaz'. The combination 'brown yellow' is a straightforward descriptive compound. Historically, such descriptive terms were common before a more formalized vocabulary of specific color names developed. Colors like ochre, tan, or fawn are specific named instances of what could be described as 'brown yellow'.
First Recorded Use
The descriptive combination of 'brown' and 'yellow' to describe a color would have been used as long as both individual color terms existed and were combined to describe intermediate shades. Specific named colors like 'ochre' or 'tan' emerged later, but the descriptive 'brown yellow' would predate them.
Cultural Associations
Colors that are a mix of brown and yellow are very common in nature (earth, sand, dried leaves, animal fur) and have been significant across cultures. They often evoke feelings of warmth, earthiness, naturalness, and sometimes age or decay. In art, pigments like yellow ochre have been used since prehistoric times. The specific shade #cc9966 is a medium, somewhat muted brown-yellow, reminiscent of light wood, certain types of sand, or a warm skin tone.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #CC9966;
}
/* Text */
.element {
color: #CC9966;
}
/* Border */
.element {
border: 1px solid #CC9966;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CC9966,
#B3CCE6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CC9966,
#B3CCE6
);
}
// SCSS variable
$brown-yellow: #CC9966;
// With RGB channels (useful for rgba() usage)
$brown-yellow-r: 204;
$brown-yellow-g: 153;
$brown-yellow-b: 102;
// Usage
.element {
background-color: $brown-yellow;
color: rgba($brown-yellow-r, $brown-yellow-g, $brown-yellow-b, 0.8);
}