Islamic Green
HEX: #009000 | Modern Palette
Color Specifications
#009000
0, 144, 0
120°, 100% ,56%
100, 0, 100, 43.53
About Islamic Green
Islamic Green (#009000) is a color with RGB(0, 144, 0) and HSL(120°, 100%, 56.47%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #900090, which creates strong contrast. Its triadic palette includes #000090 and #900000. The name comes from أخضر (akhḍar) (Arabic).
- HEX: #009000
- RGB: 0, 144, 0
- HSL: 120°, 100%, 56.47%
- Mood: Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #900090
- Triadic colors: #000090, #900000
- The name comes from أخضر (akhḍar) (Arabic).
Live Components
Color Palettes
Islamic Green #009000 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
Islamic Green #009000 pairs with #900090 as its complementary color, and #000090 and #900000 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Green holds a prominent and revered position in Islam. It is mentioned in the Quran as the color of the garments of the inhabitants of Paradise (e.g., Surah Al-Kahf 18:31, Surah Ar-Rahman 55:76). The Prophet Muhammad is reported to have worn green and favored the color. Historically, green banners were used by various Islamic caliphates and dynasties, most notably the Fatimid Caliphate. It symbolizes nature, life, fertility, and paradise. Over centuries, it became strongly associated with the religion itself, appearing in flags of many Muslim-majority countries, mosque decorations, and religious texts.
First Recorded Use
The association of green with Islam dates back to the time of Prophet Muhammad. While a specific 'Islamic Green' hex code wasn't defined, the color green was frequently mentioned and used.
Cultural Associations
Symbolizes paradise, nature, and life in the Quran. Associated with the Prophet Muhammad, who reportedly favored the color. Used in the flags of many Islamic nations (e.g., Saudi Arabia, Pakistan, Algeria, Iran). Commonly used in mosque architecture, calligraphy, and religious artifacts. Represents peace, prosperity, and hope within Islamic culture.
Code Snippets
/* Background */
.element {
background-color: #009000;
}
/* Text */
.element {
color: #009000;
}
/* Border */
.element {
border: 1px solid #009000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#009000,
#FF21FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#009000,
#FF21FF
);
}
// SCSS variable
$islamic-green: #009000;
// With RGB channels (useful for rgba() usage)
$islamic-green-r: 0;
$islamic-green-g: 144;
$islamic-green-b: 0;
// Usage
.element {
background-color: $islamic-green;
color: rgba($islamic-green-r, $islamic-green-g, $islamic-green-b, 0.8);
}