Royal Blue
HEX: #002366 | Modern Palette
Color Specifications
#002366
0, 35, 102
219°, 100% ,40%
100, 65.69, 0, 60
About Royal Blue
Royal Blue (#002366) is a color with RGB(0, 35, 102) and HSL(219.41°, 100%, 40%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #664300, which creates strong contrast. Its triadic palette includes #660023 and #236600. The name comes from Royal Blue (English).
- HEX: #002366
- RGB: 0, 35, 102
- HSL: 219.41°, 100%, 40%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #664300
- Triadic colors: #660023, #236600
- The name comes from Royal Blue (English).
Live Components
Color Palettes
Royal Blue #002366 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
Royal Blue #002366 pairs with #664300 as its complementary color, and #660023 and #236600 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
While the specific origin story points to Queen Charlotte, the association of blue with royalty and nobility predates this significantly. Blue pigments were often expensive and difficult to produce, making them a luxury. Lapis lazuli, for example, was used to create ultramarine, a highly prized blue. The 'royal' designation solidified a particular shade of blue as being fit for monarchs. Over time, the exact shade referred to as 'Royal Blue' has varied slightly, but it generally remains a strong, dark blue.
First Recorded Use
The term 'Royal Blue' is said to have originated in the UK in the late 18th century, specifically for a competition among cloth makers to make a dress for Queen Charlotte (wife of King George III). The winning color was then named 'Royal Blue'.
Cultural Associations
Royal Blue is widely recognized as a color of sophistication, authority, and stability. It is often used in corporate branding, uniforms (especially for police and military in some countries), and formal wear. It can evoke feelings of trust and reliability. In some cultures, blue is also associated with divinity or protection. It is a popular color in heraldry and national flags.
Code Snippets
/* Background */
.element {
background-color: #002366;
}
/* Text */
.element {
color: #002366;
}
/* Border */
.element {
border: 1px solid #002366;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#002366,
#CC8600
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#002366,
#CC8600
);
}
// SCSS variable
$royal-blue: #002366;
// With RGB channels (useful for rgba() usage)
$royal-blue-r: 0;
$royal-blue-g: 35;
$royal-blue-b: 102;
// Usage
.element {
background-color: $royal-blue;
color: rgba($royal-blue-r, $royal-blue-g, $royal-blue-b, 0.8);
}