Very Light Tangelo
HEX: #FFB077 | Modern Palette
Color Specifications
#FFB077
255, 176, 119
25°, 53% ,100%
0, 30.98, 53.33, 0
About Very Light Tangelo
Very Light Tangelo (#FFB077) is a color with RGB(255, 176, 119) and HSL(25.15°, 53.33%, 100%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #77C6FF, which creates strong contrast. Its triadic palette includes #77FFB0 and #B077FF.
- HEX: #FFB077
- RGB: 255, 176, 119
- HSL: 25.15°, 53.33%, 100%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #77C6FF
- Triadic colors: #77FFB0, #B077FF
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 #FFB077 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CBCB73
#BBBB78
#FFAAAA
#C2C2C2
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FFB077;
}
/* Text */
.element {
color: #FFB077;
}
/* Border */
.element {
border: 1px solid #FFB077;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFB077,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFB077,
#FFFFFF
);
}
// SCSS variable
$very-light-tangelo: #FFB077;
// With RGB channels (useful for rgba() usage)
$very-light-tangelo-r: 255;
$very-light-tangelo-g: 176;
$very-light-tangelo-b: 119;
// Usage
.element {
background-color: $very-light-tangelo;
color: rgba($very-light-tangelo-r, $very-light-tangelo-g, $very-light-tangelo-b, 0.8);
}