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
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 #FFB347 from deepest shade to lightest tint.
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);
}