Neon Carrot
HEX: #FFA343 | Modern Palette
Color Specifications
#FFA343
255, 163, 67
30°, 100% ,63%
0, 36, 74, 0
About Neon Carrot
Neon Carrot (#FFA343) is a color with RGB(255, 163, 67) and HSL(30.6°, 100%, 63.1%). 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 #439FFF, which creates strong contrast. Its triadic palette includes #43FFA3 and #A343FF. The name comes from Neon Carrot (English).
- HEX: #FFA343
- RGB: 255, 163, 67
- HSL: 30.6°, 100%, 63.1%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #439FFF
- Triadic colors: #43FFA3, #A343FF
- The name comes from Neon Carrot (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 #FFA343 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Neon Carrot' was notably introduced as one of the Crayola crayon colors in 1990. Its name reflects a trend in the late 20th century to create and name colors that evoked a sense of artificial brightness and vibrancy, often associated with 'neon' aesthetics. While carrots themselves are naturally orange, the 'neon' prefix suggests an amplified, almost electric version of that natural hue, aligning with the visual culture of the era that embraced bold and synthetic colors.
First Recorded Use
1990s
Cultural Associations
As a Crayola crayon color, 'Neon Carrot' holds a nostalgic place for many who grew up in the 1990s and early 2000s. It represents a playful and energetic shade of orange, often used in children's art for things like sunsets, flowers, or fantastical creatures. Its 'neon' descriptor also subtly connects it to the broader pop culture trends of the late 20th century, which saw a rise in neon signs, clothing, and graphic design.
Code Snippets
/* Background */
.element {
background-color: #FFA343;
}
/* Text */
.element {
color: #FFA343;
}
/* Border */
.element {
border: 1px solid #FFA343;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA343,
#439FFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA343,
#439FFF
);
}
// SCSS variable
$neon-carrot: #FFA343;
// With RGB channels (useful for rgba() usage)
$neon-carrot-r: 255;
$neon-carrot-g: 163;
$neon-carrot-b: 67;
// Usage
.element {
background-color: $neon-carrot;
color: rgba($neon-carrot-r, $neon-carrot-g, $neon-carrot-b, 0.8);
}