Bluebonnet

HEX: #1C1CF0 | Modern Palette

On White
8.49:1
PASS
On Black
2.47:1
FAIL

Color Specifications

HEX
#1C1CF0
RGB
28, 28, 240
HSL
240°, 88% ,94%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #1C1CF0
Protanopia #1C1CF0
Tritanopia #006161
Achromatopsia #4D4D4D

Frequently Asked Questions

Bluebonnet (#1C1CF0) is a color with RGB(28, 28, 240) and HSL(240°, 88.33%, 94.12%).

#1C1CF0 pairs strongly with #F0F01C as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#1C1CF0 is suitable for Text, Button, Background and works well with Neon, Cool styles.

#1C1CF0 is commonly associated with Playful.

The name Bluebonnet is linked to Bluebonnet from English, meaning A bonnet (a type of hat) that is blue, referring to the color and shape of the flower's petals..

Name, History & Etymology

Origin Word Bluebonnet
Meaning A bonnet (a type of hat) that is blue, referring to the color and shape of the flower's petals.
Language English
First Recorded Use 19th Century

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.

Similar Named Colors

Blue #0000FF ΔE 1.95
Electric Ultramarine #3F00FF ΔE 2.93
Han Purple #5218FA ΔE 4.09
Palatinate Blue #273BE2 ΔE 5.24

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);
}