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
Blue (Crayola) #1F75FE is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Blue (Crayola) #1F75FE pairs with #FEA81F as its complementary color, and #FE1F75 and #75FE1F in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}