True Blue
HEX: #0073CF | Modern Palette
Color Specifications
#0073CF
0, 115, 207
206°, 100% ,81%
100, 44.44, 0, 18.82
About True Blue
True Blue (#0073CF) is a color with RGB(0, 115, 207) and HSL(206.67°, 100%, 81.18%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #CF5C00, which creates strong contrast. Its triadic palette includes #CF0073 and #73CF00. The name comes from True Blue (English).
- HEX: #0073CF
- RGB: 0, 115, 207
- HSL: 206.67°, 100%, 81.18%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #CF5C00
- Triadic colors: #CF0073, #73CF00
- The name comes from True 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 #0073CF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'true blue' gained prominence in Scotland during the Covenanter movement (1638-1688), where blue was the color of the Covenanters, symbolizing their steadfast adherence to Presbyterianism. The phrase then spread to England, becoming associated with unwavering loyalty, particularly to the Tory party. By the 18th and 19th centuries, 'true blue' began to describe a pure, unadulterated blue color, distinct from other blue variations.
First Recorded Use
The phrase 'true blue' emerged in the late 17th century, initially referring to a person of unwavering loyalty, particularly in political or religious contexts. Its application to a specific color shade followed this metaphorical usage.
Cultural Associations
'True blue' is deeply embedded in Western culture as an idiom for loyalty, authenticity, and reliability, often used to describe a person's character or allegiance. In sports, many teams adopt 'true blue' as a rallying cry, signifying dedication and team spirit. The color itself is often associated with trustworthiness and stability.
Code Snippets
/* Background */
.element {
background-color: #0073CF;
}
/* Text */
.element {
color: #0073CF;
}
/* Border */
.element {
border: 1px solid #0073CF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0073CF,
#FFCA9F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0073CF,
#FFCA9F
);
}
// SCSS variable
$true-blue: #0073CF;
// With RGB channels (useful for rgba() usage)
$true-blue-r: 0;
$true-blue-g: 115;
$true-blue-b: 207;
// Usage
.element {
background-color: $true-blue;
color: rgba($true-blue-r, $true-blue-g, $true-blue-b, 0.8);
}