Macaroni And Cheese
HEX: #FFBD88 | Modern Palette
Color Specifications
#FFBD88
255, 189, 136
26°, 100% ,76%
0, 26, 47, 0
About Macaroni And Cheese
Macaroni And Cheese (#FFBD88) is a color with RGB(255, 189, 136) and HSL(26.7°, 100%, 76.7%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #88CAFF, which creates strong contrast. Its triadic palette includes #88FFBD and #BD88FF. The name comes from Macaroni and Cheese (English).
- HEX: #FFBD88
- RGB: 255, 189, 136
- HSL: 26.7°, 100%, 76.7%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #88CAFF
- Triadic colors: #88FFBD, #BD88FF
- The name comes from Macaroni and Cheese (English).
Live Components
Color Palettes
Macaroni And Cheese #FFBD88 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Macaroni And Cheese #FFBD88 pairs with #88CAFF as its complementary color, and #88FFBD and #BD88FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
While the 1769 recipe is often cited, variations of pasta and cheese have existed for centuries. In Italy, dishes like 'lasagne de Berard' (14th century) featured pasta layered with cheese. Thomas Jefferson is credited with introducing macaroni and cheese to the United States after encountering it in France and Italy. He served it at a state dinner in 1802. The dish gained widespread popularity in America, especially after Kraft Foods introduced its boxed macaroni and cheese dinner in 1937, making it an affordable and convenient meal during the Great Depression.
First Recorded Use
The earliest known recipe for a dish similar to modern macaroni and cheese was written in 1769 in Elizabeth Raffald's book, 'The Experienced English Housekeeper'. However, the concept of pasta with cheese has older roots.
Cultural Associations
Macaroni and cheese is a beloved comfort food in many Western countries, particularly the United States and Canada. It is often associated with childhood, home cooking, and holiday meals. Regional variations exist, including baked versions with breadcrumbs, stovetop versions, and those incorporating different cheeses or additions like bacon or vegetables. It holds a significant place in American culinary culture.
Code Snippets
/* Background */
.element {
background-color: #FFBD88;
}
/* Text */
.element {
color: #FFBD88;
}
/* Border */
.element {
border: 1px solid #FFBD88;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFBD88,
#88CAFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFBD88,
#88CAFF
);
}
// SCSS variable
$macaroni-and-cheese: #FFBD88;
// With RGB channels (useful for rgba() usage)
$macaroni-and-cheese-r: 255;
$macaroni-and-cheese-g: 189;
$macaroni-and-cheese-b: 136;
// Usage
.element {
background-color: $macaroni-and-cheese;
color: rgba($macaroni-and-cheese-r, $macaroni-and-cheese-g, $macaroni-and-cheese-b, 0.8);
}