Bisque
HEX: #FFE4C4 | Modern Palette
Color Specifications
#FFE4C4
255, 228, 196
32°, 100% ,88%
0, 11, 23, 0
About Bisque
Bisque (#FFE4C4) is a color with RGB(255, 228, 196) and HSL(32.5°, 100%, 88.4%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #C4DFFF, which creates strong contrast. Its triadic palette includes #C4FFE4 and #E4C4FF. The name comes from bisque (French).
- HEX: #FFE4C4
- RGB: 255, 228, 196
- HSL: 32.5°, 100%, 88.4%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #C4DFFF
- Triadic colors: #C4FFE4, #E4C4FF
- The name comes from bisque (French).
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 #FFE4C4 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Bisque originated in French cuisine as a highly refined and rich soup, traditionally made from puréed crustaceans like lobster, crab, or shrimp. The preparation typically involves sautéing the shells with aromatics, deglazing with brandy or wine, simmering with stock, and then straining and enriching the liquid with cream. The color #ffe4c4, often referred to as 'Bisque,' is a light, warm, and somewhat desaturated orange-pink, reminiscent of the color of a cooked lobster or shrimp shell, or the creamy finished soup itself. This color association likely emerged much later than the culinary term, as color naming became more descriptive and widespread.
First Recorded Use
The term 'bisque' for a rich, creamy soup, particularly one made from crustaceans, appears in French culinary texts by the 17th century. Early recipes often featured crayfish or pigeon.
Cultural Associations
In culinary contexts, bisque is considered a classic of French haute cuisine, often served as an appetizer in fine dining. It signifies elegance and richness. The color 'Bisque' (as #ffe4c4) is often used in interior design, fashion, and cosmetics to evoke warmth, softness, and a natural, earthy feel. It's a versatile neutral that can be both comforting and sophisticated.
Code Snippets
/* Background */
.element {
background-color: #FFE4C4;
}
/* Text */
.element {
color: #FFE4C4;
}
/* Border */
.element {
border: 1px solid #FFE4C4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFE4C4,
#C4DFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFE4C4,
#C4DFFF
);
}
// SCSS variable
$bisque: #FFE4C4;
// With RGB channels (useful for rgba() usage)
$bisque-r: 255;
$bisque-g: 228;
$bisque-b: 196;
// Usage
.element {
background-color: $bisque;
color: rgba($bisque-r, $bisque-g, $bisque-b, 0.8);
}