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
Neon Carrot #FFA343 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
Neon Carrot #FFA343 pairs with #439FFF as its complementary color, and #43FFA3 and #A343FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}