Liberty

HEX: #545AA7 | Modern Palette

On White
6.18:1
PASS
On Black
3.40:1
FAIL

Color Specifications

HEX
#545AA7
RGB
84, 90, 167
HSL
235°, 49% ,65%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Style
Cool
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #5858A7
Protanopia #5959A7
Tritanopia #406868
Achromatopsia #616161

Frequently Asked Questions

Liberty (#545AA7) is a color with RGB(84, 90, 167) and HSL(235.66°, 49.7%, 65.49%).

#545AA7 pairs strongly with #A7A154 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#545AA7 is suitable for Text, Button, Logo and works well with Cool styles.

The name Liberty is linked to libertas from Latin, meaning freedom, condition of a free man, independence.

Name, History & Etymology

Origin Word libertas
Meaning freedom, condition of a free man, independence
Language Latin
First Recorded Use 13th Century

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.

Similar Named Colors

UCLA Blue #536895 ΔE 6.31
Cerulean Blue #2A52BE ΔE 6.81
Violet Blue #324AB2 ΔE 6.83
Dark Blue-gray #666699 ΔE 6.86

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);
}