Blue (Crayola)
HEX: #1F75FE | Modern Palette
Color Specifications
#1F75FE
31, 117, 254
216°, 87% ,99%
87.8, 53.94, 0, 0.39
About Blue (Crayola)
Blue (Crayola) (#1F75FE) is a color with RGB(31, 117, 254) and HSL(216.86°, 87.8%, 99.61%). 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 #FEA81F, which creates strong contrast. Its triadic palette includes #FE1F75 and #75FE1F.
- HEX: #1F75FE
- RGB: 31, 117, 254
- HSL: 216.86°, 87.8%, 99.61%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #FEA81F
- Triadic colors: #FE1F75, #75FE1F
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 #1F75FE from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #1F75FE;
}
/* Text */
.element {
color: #1F75FE;
}
/* Border */
.element {
border: 1px solid #1F75FE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1F75FE,
#FFFEFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1F75FE,
#FFFEFD
);
}
// SCSS variable
$blue-(crayola): #1F75FE;
// With RGB channels (useful for rgba() usage)
$blue-(crayola)-r: 31;
$blue-(crayola)-g: 117;
$blue-(crayola)-b: 254;
// Usage
.element {
background-color: $blue-(crayola);
color: rgba($blue-(crayola)-r, $blue-(crayola)-g, $blue-(crayola)-b, 0.8);
}