Very Light Azure
HEX: #74BBFB | Modern Palette
Color Specifications
#74BBFB
116, 187, 251
208°, 53% ,98%
53.78, 25.5, 0, 1.57
About Very Light Azure
Very Light Azure (#74BBFB) is a color with RGB(116, 187, 251) and HSL(208.44°, 53.78%, 98.43%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FBB474, which creates strong contrast. Its triadic palette includes #FB74BB and #BBFB74.
- HEX: #74BBFB
- RGB: 116, 187, 251
- HSL: 208.44°, 53.78%, 98.43%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #FBB474
- Triadic colors: #FB74BB, #BBFB74
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 #74BBFB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#AAAAFC
#B5B5FB
#5EC5C5
#B5B5B5
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #74BBFB;
}
/* Text */
.element {
color: #74BBFB;
}
/* Border */
.element {
border: 1px solid #74BBFB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#74BBFB,
#FDFBF9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#74BBFB,
#FDFBF9
);
}
// SCSS variable
$very-light-azure: #74BBFB;
// With RGB channels (useful for rgba() usage)
$very-light-azure-r: 116;
$very-light-azure-g: 187;
$very-light-azure-b: 251;
// Usage
.element {
background-color: $very-light-azure;
color: rgba($very-light-azure-r, $very-light-azure-g, $very-light-azure-b, 0.8);
}