Bleu De France
HEX: #318CE7 | Modern Palette
Color Specifications
#318CE7
49, 140, 231
210°, 78% ,90%
78.79, 39.39, 0, 9.41
About Bleu De France
Bleu De France (#318CE7) is a color with RGB(49, 140, 231) and HSL(210°, 78.79%, 90.59%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #E78C31, which creates strong contrast. Its triadic palette includes #E7318C and #8CE731. The name comes from Bleu De France (French).
- HEX: #318CE7
- RGB: 49, 140, 231
- HSL: 210°, 78.79%, 90.59%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #E78C31
- Triadic colors: #E7318C, #8CE731
- The name comes from Bleu De France (French).
Live Components
Color Palettes
Bleu De France #318CE7 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
Bleu De France #318CE7 pairs with #E78C31 as its complementary color, and #E7318C and #8CE731 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#7A7AE8
#8686E7
#009B9B
#898989
Frequently Asked Questions
Name, History & Etymology
History
The color 'Bleu De France' has a rich history deeply intertwined with the French monarchy and national identity. It is traditionally associated with the blue found on the French flag and the heraldic arms of the Kings of France, particularly the 'fleur-de-lis' on an azure (blue) field. This specific shade of blue became prominent during the Capetian dynasty. Over centuries, it evolved from a royal symbol to a national emblem, representing France in various contexts, from military uniforms to sports teams. The exact shade has varied slightly throughout history due to dye availability and artistic interpretation, but the concept of 'Bleu De France' as a distinct national blue has remained constant.
First Recorded Use
12th Century
Cultural Associations
Bleu De France is a powerful symbol of French national identity. It is prominently featured in the French flag (Tricolour), where it represents liberty and the city of Paris. It is the color worn by French national sports teams (e.g., football, rugby), earning them the nickname 'Les Bleus'. It is also used in official government branding, military uniforms, and various cultural expressions. The color evokes patriotism, history, and a sense of collective identity for the French people.
Code Snippets
/* Background */
.element {
background-color: #318CE7;
}
/* Text */
.element {
color: #318CE7;
}
/* Border */
.element {
border: 1px solid #318CE7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#318CE7,
#FAE7D4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#318CE7,
#FAE7D4
);
}
// SCSS variable
$bleu-de-france: #318CE7;
// With RGB channels (useful for rgba() usage)
$bleu-de-france-r: 49;
$bleu-de-france-g: 140;
$bleu-de-france-b: 231;
// Usage
.element {
background-color: $bleu-de-france;
color: rgba($bleu-de-france-r, $bleu-de-france-g, $bleu-de-france-b, 0.8);
}