Light Brilliant Red

HEX: #FE2E2E | Modern Palette

On White
3.72:1
FAIL
On Black
5.64:1
PASS

Color Specifications

HEX
#FE2E2E
RGB
254, 46, 46
HSL
0°, 81% ,99%
CMYK
0, 81.89, 81.89, 0.39

About Light Brilliant Red

Light Brilliant Red (#FE2E2E) is a color with RGB(254, 46, 46) and HSL(0°, 81.89%, 99.61%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #2EFEFE, which creates strong contrast. Its triadic palette includes #2EFE2E and #2E2EFE.

  • HEX: #FE2E2E
  • RGB: 254, 46, 46
  • HSL: 0°, 81.89%, 99.61%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #2EFEFE
  • Triadic colors: #2EFE2E, #2E2EFE

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

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #969612
Protanopia #666632
Tritanopia #FE2E2E
Achromatopsia #848484

Frequently Asked Questions

Light Brilliant Red (#FE2E2E) is a color with RGB(254, 46, 46) and HSL(0°, 81.89%, 99.61%).

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

#FE2E2E is suitable for Text, Button, Background and works well with Warm styles.

#FE2E2E is commonly associated with Playful.

Similar Named Colors

Ruddy #FF0028 ΔE 2.39
Coral Red #FF4040 ΔE 3.10
Vivid Red #F70D1A ΔE 3.70
Tractor Red #FD0E35 ΔE 3.96

Code Snippets

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

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

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

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

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

// SCSS variable
$light-brilliant-red: #FE2E2E;

// With RGB channels (useful for rgba() usage)
$light-brilliant-red-r: 254;
$light-brilliant-red-g: 46;
$light-brilliant-red-b: 46;

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