Imperial
HEX: #602F6B | Modern Palette
Color Specifications
#602F6B
96, 47, 107
289°, 56% ,41%
10.28, 56.07, 0, 58.04
About Imperial
Imperial (#602F6B) is a color with RGB(96, 47, 107) and HSL(289°, 56.07%, 41.96%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #3A6B2F, which creates strong contrast. Its triadic palette includes #6B602F and #2F6B60. The name comes from imperialis (Latin).
- HEX: #602F6B
- RGB: 96, 47, 107
- HSL: 289°, 56.07%, 41.96%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #3A6B2F
- Triadic colors: #6B602F, #2F6B60
- The name comes from imperialis (Latin).
Live Components
Color Palettes
Imperial #602F6B 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
Imperial #602F6B pairs with #3A6B2F as its complementary color, and #6B602F and #2F6B60 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word "imperial" derives from the Latin 'imperialis', which itself comes from 'imperium' meaning 'empire' or 'command'. It entered English through Old French 'imperial'. Initially, it was used to describe things pertaining to the Roman Empire or its emperors. Over time, its usage expanded to refer to any empire, emperor, or sovereign state of significant power. It also developed meanings related to supreme quality, size, or importance, as seen in terms like 'imperial pint' or 'imperial purple'.
First Recorded Use
late 14th century
Cultural Associations
The color 'imperial purple' (often a deep reddish-purple) has historically been associated with royalty and power, particularly in the Roman and Byzantine Empires, due to the rarity and cost of the dye (Tyrian purple). The term 'imperial' can evoke grandeur, authority, and sometimes connotations of colonialism or expansionism depending on the context (e.g., 'imperial powers'). In some contexts, it signifies a standard of measurement (e.g., 'imperial system' of weights and measures, still used in some countries).
Code Snippets
/* Background */
.element {
background-color: #602F6B;
}
/* Text */
.element {
color: #602F6B;
}
/* Border */
.element {
border: 1px solid #602F6B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#602F6B,
#45A72F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#602F6B,
#45A72F
);
}
// SCSS variable
$imperial: #602F6B;
// With RGB channels (useful for rgba() usage)
$imperial-r: 96;
$imperial-g: 47;
$imperial-b: 107;
// Usage
.element {
background-color: $imperial;
color: rgba($imperial-r, $imperial-g, $imperial-b, 0.8);
}