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
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 #002366 from deepest shade to lightest tint.
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);
}