Ruber
HEX: #CE4676 | Modern Palette
Color Specifications
#CE4676
206, 70, 118
338°, 66% ,80%
0, 66.02, 42.72, 19.22
About Ruber
Ruber (#CE4676) is a color with RGB(206, 70, 118) and HSL(338.82°, 66.02%, 80.78%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #46CE9E, which creates strong contrast. Its triadic palette includes #76CE46 and #4676CE. The name comes from ruber (Latin).
- HEX: #CE4676
- RGB: 206, 70, 118
- HSL: 338.82°, 66.02%, 80.78%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #46CE9E
- Triadic colors: #76CE46, #4676CE
- The name comes from ruber (Latin).
Live Components
Color Palettes
Ruber #CE4676 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
Ruber #CE4676 pairs with #46CE9E as its complementary color, and #76CE46 and #4676CE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#828272
#626277
#CC4E4E
#787878
Frequently Asked Questions
Name, History & Etymology
History
The word 'ruber' is a direct Latin adjective meaning 'red'. It is the root for many words in Romance languages (e.g., 'rouge' in French, 'rosso' in Italian, 'rojo' in Spanish, 'vermelho' in Portuguese) and has also influenced English through loanwords and scientific terminology. Its use dates back to ancient Latin literature and everyday speech. The color red itself has held significant symbolic meaning across various ancient cultures, often associated with blood, fire, passion, and power.
First Recorded Use
Before 500 AD
Cultural Associations
In ancient Rome, red (ruber) was a prominent color. It was associated with Mars, the god of war, and was often worn by soldiers. Triumphant generals would paint their faces red. Red was also used in religious ceremonies and for decorative purposes. Its strong visual impact made it a significant color in art and daily life.
Code Snippets
/* Background */
.element {
background-color: #CE4676;
}
/* Text */
.element {
color: #CE4676;
}
/* Border */
.element {
border: 1px solid #CE4676;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CE4676,
#AEEED8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CE4676,
#AEEED8
);
}
// SCSS variable
$ruber: #CE4676;
// With RGB channels (useful for rgba() usage)
$ruber-r: 206;
$ruber-g: 70;
$ruber-b: 118;
// Usage
.element {
background-color: $ruber;
color: rgba($ruber-r, $ruber-g, $ruber-b, 0.8);
}