Sunray
HEX: #E3AB57 | Modern Palette
Color Specifications
#E3AB57
227, 171, 87
36°, 61% ,89%
0, 24.67, 61.67, 10.98
About Sunray
Sunray (#E3AB57) is a color with RGB(227, 171, 87) and HSL(36°, 61.67%, 89.02%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #578FE3, which creates strong contrast. Its triadic palette includes #57E3AB and #AB57E3. The name comes from Sunray (English).
- HEX: #E3AB57
- RGB: 227, 171, 87
- HSL: 36°, 61.67%, 89.02%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #578FE3
- Triadic colors: #57E3AB, #AB57E3
- The name comes from Sunray (English).
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 #E3AB57 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#BEBE53
#B2B258
#E8A3A3
#B5B5B5
Frequently Asked Questions
Name, History & Etymology
History
The word 'sunray' is a compound word formed from 'sun' (Old English 'sunne') and 'ray' (from Old French 'rai', ultimately from Latin 'radius'). The combination to specifically denote a single beam of sunlight became more common in written English towards the end of the 17th century. Prior to this, phrases like 'ray of the sun' or 'sunbeam' were more prevalent. Its usage solidified as a concise way to describe the visual phenomenon of light emanating from the sun, often seen through clouds or openings.
First Recorded Use
The term 'sunray' appears in English texts from the late 17th century, though the concept of a 'ray of sun' is much older.
Cultural Associations
Sunrays hold significant cultural symbolism across many civilizations, often representing hope, enlightenment, divine presence, warmth, and life itself. In art, sunrays are frequently depicted to highlight a focal point, symbolize a blessing, or indicate a moment of revelation. The visual effect of crepuscular rays (sunrays appearing to fan out from a single point in the sky) has inspired awe and spiritual contemplation. The color #e3ab57, a golden-orange, strongly evokes the warm, bright quality of a sunray, aligning with its positive connotations.
Code Snippets
/* Background */
.element {
background-color: #E3AB57;
}
/* Text */
.element {
color: #E3AB57;
}
/* Border */
.element {
border: 1px solid #E3AB57;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E3AB57,
#D2E0F4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E3AB57,
#D2E0F4
);
}
// SCSS variable
$sunray: #E3AB57;
// With RGB channels (useful for rgba() usage)
$sunray-r: 227;
$sunray-g: 171;
$sunray-b: 87;
// Usage
.element {
background-color: $sunray;
color: rgba($sunray-r, $sunray-g, $sunray-b, 0.8);
}