Cream
HEX: #FFFDD0 | Modern Palette
Color Specifications
#FFFDD0
255, 253, 208
57°, 100% ,90%
0, 1, 18, 0
About Cream
Cream (#FFFDD0) is a color with RGB(255, 253, 208) and HSL(57.4°, 100%, 90.8%). 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 #D0D2FF, which creates strong contrast. Its triadic palette includes #D0FFFD and #FDD0FF. The name comes from cremor (Latin).
- HEX: #FFFDD0
- RGB: 255, 253, 208
- HSL: 57.4°, 100%, 90.8%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #D0D2FF
- Triadic colors: #D0FFFD, #FDD0FF
- The name comes from cremor (Latin).
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 #FFFDD0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'cream' entered English from Old French 'cresme' or 'craime', which itself derived from the Late Latin 'crema'. The Latin 'cremor' originally referred to any thick liquid or broth, not specifically dairy. Over time, its meaning narrowed to the fatty part of milk that rises to the top. The color 'cream' is a relatively modern descriptor, emerging as a common color name in the late 16th or early 17th century, directly referencing the pale yellowish-white color of dairy cream.
First Recorded Use
c. 1300-1400
Cultural Associations
Cream is widely associated with richness, luxury, and delicacy in many cultures, both as a food item and as a color. In fashion and interior design, cream is often seen as a sophisticated and versatile neutral, offering a softer alternative to pure white. It evokes feelings of warmth, comfort, and classic elegance. The phrase 'the cream of the crop' signifies the best of a group, further highlighting its positive connotations.
Code Snippets
/* Background */
.element {
background-color: #FFFDD0;
}
/* Text */
.element {
color: #FFFDD0;
}
/* Border */
.element {
border: 1px solid #FFFDD0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFFDD0,
#D0D2FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFFDD0,
#D0D2FF
);
}
// SCSS variable
$cream: #FFFDD0;
// With RGB channels (useful for rgba() usage)
$cream-r: 255;
$cream-g: 253;
$cream-b: 208;
// Usage
.element {
background-color: $cream;
color: rgba($cream-r, $cream-g, $cream-b, 0.8);
}