Light Brilliant Red
HEX: #FE2E2E | Modern Palette
Color Specifications
#FE2E2E
254, 46, 46
0°, 81% ,99%
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
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 #FE2E2E from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#969612
#666632
#FE2E2E
#848484
Frequently Asked Questions
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);
}