Independence
HEX: #4C516D | Modern Palette
Color Specifications
#4C516D
76, 81, 109
230°, 30% ,42%
30.28, 25.69, 0, 57.25
About Independence
Independence (#4C516D) is a color with RGB(76, 81, 109) and HSL(230.91°, 30.28%, 42.75%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Print. Its complementary color is #6D684C, which creates strong contrast. Its triadic palette includes #6D4C51 and #516D4C. The name comes from Independence (English).
- HEX: #4C516D
- RGB: 76, 81, 109
- HSL: 230.91°, 30.28%, 42.75%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Print
- Complementary color: #6D684C
- Triadic colors: #6D4C51, #516D4C
- The name comes from Independence (English).
Live Components
Color Palettes
Independence #4C516D 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
Independence #4C516D pairs with #6D684C as its complementary color, and #6D4C51 and #516D4C 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 'independence' derives from the Latin 'in-' (not) and 'dependere' (to hang from, rely on). It entered English in the late 15th century, initially referring to a state of not being dependent on another person or thing. Its political and national sense, referring to a nation's self-governance, became prominent in the 18th century, particularly with the American Declaration of Independence in 1776. The concept has since been central to movements for national liberation and individual autonomy worldwide.
First Recorded Use
15th Century
Cultural Associations
Independence is a foundational concept in many modern political philosophies and national identities. It is celebrated annually in numerous countries as 'Independence Day,' commemorating their liberation from colonial rule or foreign domination. The idea also extends to personal autonomy, financial independence, and intellectual freedom, reflecting a broader human desire for self-determination. The color #4c516d (a shade of dark blue-gray) does not have a direct, universally recognized symbolic link to the word 'independence' itself, but colors like blue, red, and white are often associated with national flags and symbols of independence in various cultures.
Code Snippets
/* Background */
.element {
background-color: #4C516D;
}
/* Text */
.element {
color: #4C516D;
}
/* Border */
.element {
border: 1px solid #4C516D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4C516D,
#8E844C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4C516D,
#8E844C
);
}
// SCSS variable
$independence: #4C516D;
// With RGB channels (useful for rgba() usage)
$independence-r: 76;
$independence-g: 81;
$independence-b: 109;
// Usage
.element {
background-color: $independence;
color: rgba($independence-r, $independence-g, $independence-b, 0.8);
}