Iris
HEX: #5A4FCF | Modern Palette
Color Specifications
#5A4FCF
90, 79, 207
245°, 61% ,81%
56.52, 61.84, 0, 18.82
About Iris
Iris (#5A4FCF) is a color with RGB(90, 79, 207) and HSL(245.16°, 61.84%, 81.18%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #C4CF4F, which creates strong contrast. Its triadic palette includes #CF5A4F and #4FCF5A. The name comes from Ἶρις (Îris) (Ancient Greek).
- HEX: #5A4FCF
- RGB: 90, 79, 207
- HSL: 245.16°, 61.84%, 81.18%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #C4CF4F
- Triadic colors: #CF5A4F, #4FCF5A
- The name comes from Ἶρις (Îris) (Ancient Greek).
Live Components
Color Palettes
Iris #5A4FCF 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
Iris #5A4FCF pairs with #C4CF4F as its complementary color, and #CF5A4F and #4FCF5A in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#5252CF
#5050CF
#306B6B
#626262
Frequently Asked Questions
Name, History & Etymology
History
The name 'Iris' originates from Ancient Greek mythology, where Iris was the personification and goddess of the rainbow and a messenger of the gods, particularly Hera. She was often depicted with golden wings and a herald's staff. The rainbow was seen as a bridge between heaven and earth, symbolizing her role as a divine messenger. The flower 'iris' was named after the goddess, likely due to the wide variety of colors found in its blossoms, reminiscent of a rainbow. As a given name, 'Iris' has been used in various cultures, gaining popularity in English-speaking countries in the late 19th and early 20th centuries.
First Recorded Use
Before 8th century BCE (Homer)
Cultural Associations
In Greek mythology, Iris is a prominent figure, often appearing in epic poems like the Iliad. The iris flower is the national flower of France (fleur-de-lis, a stylized iris). In some cultures, the iris flower symbolizes hope, wisdom, and valor. The color #5a4fcf is a shade of purple, which is often associated with royalty, spirituality, and creativity. Purple irises specifically can symbolize wisdom and compliments.
Code Snippets
/* Background */
.element {
background-color: #5A4FCF;
}
/* Text */
.element {
color: #5A4FCF;
}
/* Border */
.element {
border: 1px solid #5A4FCF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#5A4FCF,
#E8EDB1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#5A4FCF,
#E8EDB1
);
}
// SCSS variable
$iris: #5A4FCF;
// With RGB channels (useful for rgba() usage)
$iris-r: 90;
$iris-g: 79;
$iris-b: 207;
// Usage
.element {
background-color: $iris;
color: rgba($iris-r, $iris-g, $iris-b, 0.8);
}