Cyan-blue Azure
HEX: #4682BF | Modern Palette
Color Specifications
#4682BF
70, 130, 191
210°, 63% ,74%
63.35, 31.94, 0, 25.1
About Cyan-blue Azure
Cyan-blue Azure (#4682BF) is a color with RGB(70, 130, 191) and HSL(210.25°, 63.35%, 74.9%). In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #BF8346, which creates strong contrast. Its triadic palette includes #BF4682 and #82BF46. The name comes from lāzward (Persian) -> lāzaward (Arabic) -> azur (Old French) (Persian (via Arabic and Old French)).
- HEX: #4682BF
- RGB: 70, 130, 191
- HSL: 210.25°, 63.35%, 74.9%
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #BF8346
- Triadic colors: #BF4682, #82BF46
- The name comes from lāzward (Persian) -> lāzaward (Arabic) -> azur (Old French) (Persian (via Arabic and Old French)).
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 #4682BF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'azure' traces its roots back to the Persian word 'lāzward', which was the name for the deep blue gemstone lapis lazuli. This word was adopted into Arabic as 'lāzaward' and then into Medieval Latin as 'lazulum'. From Latin, it entered Old French as 'azur' (or 'asure'), referring directly to the color blue. English adopted 'azure' from Old French in the 14th century. The specific shade 'Cyan-blue Azure' (#4682bf) is a modern descriptor, combining the more general 'azure' with 'cyan-blue' to specify its position between pure cyan and pure blue, often leaning towards a slightly desaturated, medium blue.
First Recorded Use
14th Century (as 'azure' in English)
Cultural Associations
Azure is a color frequently associated with the sky and the sea, symbolizing openness, depth, and stability. In heraldry, azure (or 'bleu') represents truth and loyalty. It is also a color often used in religious art to depict the heavens or the Virgin Mary's robes. The specific 'Cyan-blue Azure' shade, being a medium blue, evokes a sense of calm and professionalism, often seen in corporate branding or digital interfaces.
Code Snippets
/* Background */
.element {
background-color: #4682BF;
}
/* Text */
.element {
color: #4682BF;
}
/* Border */
.element {
border: 1px solid #4682BF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4682BF,
#E8BF96
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4682BF,
#E8BF96
);
}
// SCSS variable
$cyan-blue-azure: #4682BF;
// With RGB channels (useful for rgba() usage)
$cyan-blue-azure-r: 70;
$cyan-blue-azure-g: 130;
$cyan-blue-azure-b: 191;
// Usage
.element {
background-color: $cyan-blue-azure;
color: rgba($cyan-blue-azure-r, $cyan-blue-azure-g, $cyan-blue-azure-b, 0.8);
}