Bright Lavender

HEX: #BF94E4 | Modern Palette

On White
2.45:1
FAIL
On Black
8.57:1
PASS

Color Specifications

HEX
#BF94E4
RGB
191, 148, 228
HSL
272°, 59% ,73%
CMYK
16, 35, 0, 11

About Bright Lavender

Bright Lavender (#BF94E4) is a color with RGB(191, 148, 228) and HSL(272.3°, 59.7%, 73.7%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #B9E494, which creates strong contrast. Its triadic palette includes #E4BF94 and #94E4BF.

  • HEX: #BF94E4
  • RGB: 191, 148, 228
  • HSL: 272.3°, 59.7%, 73.7%
  • Mood: Romantic
  • Use case: Text, Button, Logo
  • Complementary color: #B9E494
  • Triadic colors: #E4BF94, #94E4BF

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 #BF94E4 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #A2A2E3
Protanopia #9999E4
Tritanopia #B4A1A1
Achromatopsia #A5A5A5

Frequently Asked Questions

Bright Lavender (#BF94E4) is a color with RGB(191, 148, 228) and HSL(272.3°, 59.7%, 73.7%).

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

#BF94E4 is suitable for Text, Button, Logo.

#BF94E4 is commonly associated with Romantic.

Similar Named Colors

Lenurple #BA93D8 ΔE 2.28
Bright Ube #D19FE8 ΔE 4.31
Pale Violet #CC99FF ΔE 4.48
Bright Lilac #D891EF ΔE 4.98

Code Snippets

/* Background */
.element {
    background-color: #BF94E4;
}

/* Text */
.element {
    color: #BF94E4;
}

/* Border */
.element {
    border: 1px solid #BF94E4;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #BF94E4,
        #B9E494
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #BF94E4,
        #B9E494
    );
}

// SCSS variable
$bright-lavender: #BF94E4;

// With RGB channels (useful for rgba() usage)
$bright-lavender-r: 191;
$bright-lavender-g: 148;
$bright-lavender-b: 228;

// Usage
.element {
    background-color: $bright-lavender;
    color: rgba($bright-lavender-r, $bright-lavender-g, $bright-lavender-b, 0.8);
}