Royal Blue
HEX: #4169E1 | Modern Palette
Color Specifications
#4169E1
65, 105, 225
225°, 71% ,88%
71.11, 53.33, 0, 11.76
About Royal Blue
Royal Blue (#4169E1) is a color with RGB(65, 105, 225) and HSL(225°, 71.11%, 88.24%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #E1B941, which creates strong contrast. Its triadic palette includes #E14169 and #69E141. The name comes from Royal Blue (English).
- HEX: #4169E1
- RGB: 65, 105, 225
- HSL: 225°, 71.11%, 88.24%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #E1B941
- Triadic colors: #E14169, #69E141
- The name comes from Royal Blue (English).
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 #4169E1 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#5F5FE1
#6666E1
#008181
#717171
Frequently Asked Questions
Name, History & Etymology
History
The term 'royal blue' is believed to have originated in England. One popular theory attributes its naming to a competition held by clothiers in Somerset to make a dress for Queen Charlotte (wife of King George III). The winning shade was then named 'royal blue'. Another theory suggests it simply became associated with the color often worn by royalty or used in royal regalia. Over time, the specific shade has varied slightly, but it consistently refers to a rich, deep blue. It became particularly popular in the 19th and 20th centuries in fashion, uniforms, and flags.
First Recorded Use
The exact first use is debated, but it gained prominence in the late 18th century, possibly in connection with Queen Charlotte of the United Kingdom.
Cultural Associations
Often associated with dignity, authority, and elegance. Widely used in heraldry and vexillology (the study of flags) to represent loyalty, truth, and strength. A common color for school uniforms and sports teams, conveying a sense of unity and tradition. In some cultures, blue is seen as a protective color or one that brings good luck.
Code Snippets
/* Background */
.element {
background-color: #4169E1;
}
/* Text */
.element {
color: #4169E1;
}
/* Border */
.element {
border: 1px solid #4169E1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4169E1,
#F6ECCC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4169E1,
#F6ECCC
);
}
// SCSS variable
$royal-blue: #4169E1;
// With RGB channels (useful for rgba() usage)
$royal-blue-r: 65;
$royal-blue-g: 105;
$royal-blue-b: 225;
// Usage
.element {
background-color: $royal-blue;
color: rgba($royal-blue-r, $royal-blue-g, $royal-blue-b, 0.8);
}