Liberty
HEX: #545AA7 | Modern Palette
Color Specifications
#545AA7
84, 90, 167
235°, 49% ,65%
49.7, 46.11, 0, 34.51
About Liberty
Liberty (#545AA7) is a color with RGB(84, 90, 167) and HSL(235.66°, 49.7%, 65.49%). In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #A7A154, which creates strong contrast. Its triadic palette includes #A7545A and #5AA754. The name comes from libertas (Latin).
- HEX: #545AA7
- RGB: 84, 90, 167
- HSL: 235.66°, 49.7%, 65.49%
- Style: Cool
- Use case: Text, Button, Logo
- Complementary color: #A7A154
- Triadic colors: #A7545A, #5AA754
- The name comes from libertas (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 #545AA7 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'liberty' entered English from Old French 'liberté', which itself derived from the Latin 'libertas'. In ancient Rome, 'libertas' was a fundamental concept, denoting not just freedom from slavery but also the political rights of a Roman citizen. Over centuries, its meaning evolved to encompass broader philosophical and political ideals, particularly during the Enlightenment and the American and French Revolutions. It became a central tenet of democratic thought, often contrasted with 'tyranny' or 'oppression'.
First Recorded Use
c. 1225
Cultural Associations
Liberty is a cornerstone concept in Western political philosophy and culture. It is enshrined in foundational documents like the U.S. Declaration of Independence ('life, liberty, and the pursuit of happiness') and the French Declaration of the Rights of Man and of the Citizen ('liberty consists in being able to do anything that does not harm others'). Iconic symbols such as the Statue of Liberty in New York Harbor embody this ideal globally. The concept is frequently debated in terms of individual versus collective liberties, and the role of the state in protecting or limiting them.
Code Snippets
/* Background */
.element {
background-color: #545AA7;
}
/* Text */
.element {
color: #545AA7;
}
/* Border */
.element {
border: 1px solid #545AA7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#545AA7,
#D3CC7B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#545AA7,
#D3CC7B
);
}
// SCSS variable
$liberty: #545AA7;
// With RGB channels (useful for rgba() usage)
$liberty-r: 84;
$liberty-g: 90;
$liberty-b: 167;
// Usage
.element {
background-color: $liberty;
color: rgba($liberty-r, $liberty-g, $liberty-b, 0.8);
}