Bluebonnet
HEX: #1C1CF0 | Modern Palette
Color Specifications
#1C1CF0
28, 28, 240
240°, 88% ,94%
88.33, 88.33, 0, 5.88
About Bluebonnet
Bluebonnet (#1C1CF0) is a color with RGB(28, 28, 240) and HSL(240°, 88.33%, 94.12%). 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 #F0F01C, which creates strong contrast. Its triadic palette includes #F01C1C and #1CF01C. The name comes from Bluebonnet (English).
- HEX: #1C1CF0
- RGB: 28, 28, 240
- HSL: 240°, 88.33%, 94.12%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #F0F01C
- Triadic colors: #F01C1C, #1CF01C
- The name comes from Bluebonnet (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 #1C1CF0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'bluebonnet' is a descriptive English term for several species of lupine flowers native to Texas and other parts of the Southwestern United States. The most famous species is *Lupinus texensis*. The flower's petals are said to resemble the bonnets worn by pioneer women, particularly when viewed from certain angles or when the flower is in bloom, creating a 'bonnet' shape. It was officially adopted as the state flower of Texas in 1901. There was some debate over which specific species should be designated, leading to a legislative compromise in 1971 that included all native species of bluebonnet (*Lupinus* spp.) as the state flower.
First Recorded Use
The term 'bluebonnet' for the flower is believed to have become common in the mid-to-late 19th century, particularly as the flower gained recognition as a symbol of Texas.
Cultural Associations
Bluebonnets are deeply ingrained in Texan culture and identity. They are a beloved symbol of the state, often associated with spring, wildflowers, and the Texan landscape. Fields of bluebonnets in bloom attract tourists and photographers annually. It's common for families to take portraits among the bluebonnets. There are numerous songs, poems, and stories dedicated to the bluebonnet in Texas. It is illegal to pick bluebonnets on public land in Texas, though this is often a misconception about private land; the primary reason for discouraging picking is to allow them to reseed for future blooms.
Code Snippets
/* Background */
.element {
background-color: #1C1CF0;
}
/* Text */
.element {
color: #1C1CF0;
}
/* Border */
.element {
border: 1px solid #1C1CF0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1C1CF0,
#FDFDE3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1C1CF0,
#FDFDE3
);
}
// SCSS variable
$bluebonnet: #1C1CF0;
// With RGB channels (useful for rgba() usage)
$bluebonnet-r: 28;
$bluebonnet-g: 28;
$bluebonnet-b: 240;
// Usage
.element {
background-color: $bluebonnet;
color: rgba($bluebonnet-r, $bluebonnet-g, $bluebonnet-b, 0.8);
}