Peach-orange
HEX: #FFCC99 | Modern Palette
Color Specifications
#FFCC99
255, 204, 153
30°, 40% ,100%
0, 20, 40, 0
About Peach-orange
Peach-orange (#FFCC99) is a color with RGB(255, 204, 153) and HSL(30°, 40%, 100%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #99CCFF, which creates strong contrast. Its triadic palette includes #99FFCC and Pale Violet (#CC99FF). The name comes from Peach-orange (English).
- HEX: #FFCC99
- RGB: 255, 204, 153
- HSL: 30°, 40%, 100%
- Style: Warm
- Use case: Text, Background, Print
- Complementary color: #99CCFF
- Triadic colors: #99FFCC, Pale Violet (#CC99FF)
- The name comes from Peach-orange (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 #FFCC99 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#DCDC97
#D2D299
#FFC6C6
#D5D5D5
Frequently Asked Questions
Name, History & Etymology
History
The color 'peach' itself has been used to describe a pale yellowish-pink or pinkish-orange hue for centuries, named after the fruit. The addition of '-orange' serves to specify a particular shade within the peach spectrum, emphasizing the warmer, more orange undertones rather than the pinker or paler variations. This kind of compound color naming became more common as a way to precisely describe a wider range of colors without inventing entirely new single-word names. It's often used when a color is distinctly more orange than a typical 'peach' but not quite a pure orange.
First Recorded Use
While 'peach' as a color has existed longer, the specific compound 'peach-orange' likely gained traction as color descriptions became more nuanced, particularly in fashion, cosmetics, and art, around the late 19th or early 20th century. It's a descriptive term rather than a formally named color in early systems.
Cultural Associations
Peach colors are often associated with warmth, comfort, and friendliness. In some cultures, peach can symbolize immortality or good fortune, particularly in East Asian contexts due to the peach fruit's symbolism. The 'peach-orange' variant specifically evokes a sense of ripeness, sweetness, and natural warmth. It's a popular color in spring and summer fashion, home decor for a cozy feel, and cosmetics for a natural, healthy glow.
Code Snippets
/* Background */
.element {
background-color: #FFCC99;
}
/* Text */
.element {
color: #FFCC99;
}
/* Border */
.element {
border: 1px solid #FFCC99;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFCC99,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFCC99,
#FFFFFF
);
}
// SCSS variable
$peach-orange: #FFCC99;
// With RGB channels (useful for rgba() usage)
$peach-orange-r: 255;
$peach-orange-g: 204;
$peach-orange-b: 153;
// Usage
.element {
background-color: $peach-orange;
color: rgba($peach-orange-r, $peach-orange-g, $peach-orange-b, 0.8);
}