Vivid Tangelo
HEX: #F07427 | Modern Palette
Color Specifications
#F07427
240, 116, 39
22°, 83% ,94%
0, 51.67, 83.75, 5.88
About Vivid Tangelo
Vivid Tangelo (#F07427) is a color with RGB(240, 116, 39) and HSL(22.99°, 83.75%, 94.12%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #27A3F0, which creates strong contrast. Its triadic palette includes #27F074 and #7427F0.
- HEX: #F07427
- RGB: 240, 116, 39
- HSL: 22.99°, 83.75%, 94.12%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #27A3F0
- Triadic colors: #27F074, #7427F0
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 #F07427 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A5A510
#89892A
#F26E6E
#979797
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #F07427;
}
/* Text */
.element {
color: #F07427;
}
/* Border */
.element {
border: 1px solid #F07427;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F07427,
#E3F3FD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F07427,
#E3F3FD
);
}
// SCSS variable
$vivid-tangelo: #F07427;
// With RGB channels (useful for rgba() usage)
$vivid-tangelo-r: 240;
$vivid-tangelo-g: 116;
$vivid-tangelo-b: 39;
// Usage
.element {
background-color: $vivid-tangelo;
color: rgba($vivid-tangelo-r, $vivid-tangelo-g, $vivid-tangelo-b, 0.8);
}