Pastel Orange
HEX: #FFB347 | Modern Palette
Color Specifications
#FFB347
255, 179, 71
35°, 100% ,63%
0, 30, 72, 0
About Pastel Orange
Pastel Orange (#FFB347) is a color with RGB(255, 179, 71) and HSL(35.2°, 100%, 63.9%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #4793FF, which creates strong contrast. Its triadic palette includes #47FFB3 and #B347FF.
- HEX: #FFB347
- RGB: 255, 179, 71
- HSL: 35.2°, 100%, 63.9%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #4793FF
- Triadic colors: #47FFB3, #B347FF
Live Components
Color Palettes
Pastel Orange #FFB347 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
Pastel Orange #FFB347 pairs with #4793FF as its complementary color, and #47FFB3 and #B347FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FFB347;
}
/* Text */
.element {
color: #FFB347;
}
/* Border */
.element {
border: 1px solid #FFB347;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFB347,
#4793FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFB347,
#4793FF
);
}
// SCSS variable
$pastel-orange: #FFB347;
// With RGB channels (useful for rgba() usage)
$pastel-orange-r: 255;
$pastel-orange-g: 179;
$pastel-orange-b: 71;
// Usage
.element {
background-color: $pastel-orange;
color: rgba($pastel-orange-r, $pastel-orange-g, $pastel-orange-b, 0.8);
}