Blueberry
HEX: #4F86F7 | Modern Palette
Color Specifications
#4F86F7
79, 134, 247
220°, 68% ,96%
68.02, 45.75, 0, 3.14
About Blueberry
Blueberry (#4F86F7) is a color with RGB(79, 134, 247) and HSL(220.36°, 68.02%, 96.86%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #F7C04F, which creates strong contrast. Its triadic palette includes #F74F86 and #86F74F. The name comes from blueberry (English).
- HEX: #4F86F7
- RGB: 79, 134, 247
- HSL: 220.36°, 68.02%, 96.86%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #F7C04F
- Triadic colors: #F74F86, #86F74F
- The name comes from blueberry (English).
Live Components
Color Palettes
Blueberry #4F86F7 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
Blueberry #4F86F7 pairs with #F7C04F as its complementary color, and #F74F86 and #86F74F in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#7979F7
#8181F7
#009B9B
#8A8A8A
Frequently Asked Questions
Name, History & Etymology
History
The word 'blueberry' is a compound of 'blue' (referring to its color) and 'berry'. The term was first recorded in English in the late 16th century. Prior to this, various indigenous names were used in North America, and in Europe, similar berries like bilberries or whortleberries were known by different names. The widespread adoption of 'blueberry' in English coincided with increased European settlement in North America, where the fruit is native and abundant. The scientific name for the most common cultivated species is *Vaccinium corymbosum*.
First Recorded Use
1580s
Cultural Associations
Blueberries are highly valued for their nutritional benefits, often considered a 'superfood' due to their high antioxidant content. They are a popular ingredient in desserts (pies, muffins, pancakes), jams, and smoothies. In North America, they are a significant agricultural crop, particularly in states like Maine and Michigan, and Canadian provinces like Nova Scotia and British Columbia. Wild blueberries hold cultural significance for many Indigenous peoples of North America, who have harvested and utilized them for centuries for food and medicinal purposes. Blueberry festivals are common in regions where they are cultivated, celebrating the harvest.
Code Snippets
/* Background */
.element {
background-color: #4F86F7;
}
/* Text */
.element {
color: #4F86F7;
}
/* Border */
.element {
border: 1px solid #4F86F7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4F86F7,
#FCF9F2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4F86F7,
#FCF9F2
);
}
// SCSS variable
$blueberry: #4F86F7;
// With RGB channels (useful for rgba() usage)
$blueberry-r: 79;
$blueberry-g: 134;
$blueberry-b: 247;
// Usage
.element {
background-color: $blueberry;
color: rgba($blueberry-r, $blueberry-g, $blueberry-b, 0.8);
}