Nyanza
HEX: #E9FFDB | Modern Palette
Color Specifications
#E9FFDB
233, 255, 219
96°, 14% ,100%
8.63, 0, 14.12, 0
About Nyanza
Nyanza (#E9FFDB) is a color with RGB(233, 255, 219) and HSL(96.67°, 14.12%, 100%). It is commonly associated with Minimal moods. In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #F1DBFF, which creates strong contrast. Its triadic palette includes #DBE9FF and #FFDBE9. The name comes from Nyanza (Bantu (various)).
- HEX: #E9FFDB
- RGB: 233, 255, 219
- HSL: 96.67°, 14.12%, 100%
- Mood: Minimal
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #F1DBFF
- Triadic colors: #DBE9FF, #FFDBE9
- The name comes from Nyanza (Bantu (various)).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #E9FFDB from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'Nyanza' is deeply rooted in the Bantu languages of East and Central Africa. It is a common term for 'lake' and is famously associated with Lake Victoria, which was often referred to as 'Nyanza' by local populations before European exploration. Early European explorers, such as John Hanning Speke, noted this local name. The term has been incorporated into place names across the region, including provinces, towns, and even a former kingdom (Kingdom of Nyanza in Rwanda). Its persistence in modern geography and language reflects its indigenous origin and widespread use.
First Recorded Use
Likely ancient, predating written records in the region, used by various Bantu-speaking communities to refer to the Great Lakes.
Cultural Associations
In many East African cultures, lakes are not just geographical features but are central to livelihoods, spiritual beliefs, and historical narratives. 'Nyanza' evokes this deep connection to water bodies, which provide food, transport, and sometimes hold sacred significance. The term is a testament to the indigenous knowledge and naming conventions of the region, often predating and sometimes coexisting with colonial-era names.
Code Snippets
/* Background */
.element {
background-color: #E9FFDB;
}
/* Text */
.element {
color: #E9FFDB;
}
/* Border */
.element {
border: 1px solid #E9FFDB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E9FFDB,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E9FFDB,
#FFFFFF
);
}
// SCSS variable
$nyanza: #E9FFDB;
// With RGB channels (useful for rgba() usage)
$nyanza-r: 233;
$nyanza-g: 255;
$nyanza-b: 219;
// Usage
.element {
background-color: $nyanza;
color: rgba($nyanza-r, $nyanza-g, $nyanza-b, 0.8);
}