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
Very Light Tangelo #FFB077 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
Very Light Tangelo #FFB077 pairs with #77C6FF as its complementary color, and #77FFB0 and #B077FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}