Vivid Red-tangelo
HEX: #DF6124 | Modern Palette
Color Specifications
#DF6124
223, 97, 36
19°, 83% ,87%
0, 56.5, 83.86, 12.55
About Vivid Red-tangelo
Vivid Red-tangelo (#DF6124) is a color with RGB(223, 97, 36) and HSL(19.57°, 83.86%, 87.45%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #24A2DF, which creates strong contrast. Its triadic palette includes #24DF61 and #6124DF.
- HEX: #DF6124
- RGB: 223, 97, 36
- HSL: 19.57°, 83.86%, 87.45%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #24A2DF
- Triadic colors: #24DF61, #6124DF
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 #DF6124 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#95950D
#787827
#E15C5C
#878787
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #DF6124;
}
/* Text */
.element {
color: #DF6124;
}
/* Border */
.element {
border: 1px solid #DF6124;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DF6124,
#C4E8FA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DF6124,
#C4E8FA
);
}
// SCSS variable
$vivid-red-tangelo: #DF6124;
// With RGB channels (useful for rgba() usage)
$vivid-red-tangelo-r: 223;
$vivid-red-tangelo-g: 97;
$vivid-red-tangelo-b: 36;
// Usage
.element {
background-color: $vivid-red-tangelo;
color: rgba($vivid-red-tangelo-r, $vivid-red-tangelo-g, $vivid-red-tangelo-b, 0.8);
}