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
Light Brilliant Red #FE2E2E is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Light Brilliant Red #FE2E2E pairs with #2EFEFE as its complementary color, and #2EFE2E and #2E2EFE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}