Nyanza

HEX: #E9FFDB | Modern Palette

On White
1.06:1
FAIL
On Black
19.79:1
PASS

Color Specifications

HEX
#E9FFDB
RGB
233, 255, 219
HSL
96°, 14% ,100%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Minimal
Style
Pastel Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #F9F9DC
Protanopia #FDFDDB
Tritanopia #EEFBFB
Achromatopsia #F8F8F8

Frequently Asked Questions

Nyanza (#E9FFDB) is a color with RGB(233, 255, 219) and HSL(96.67°, 14.12%, 100%).

#E9FFDB pairs strongly with #F1DBFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E9FFDB is suitable for Text, Background, Print and works well with Pastel, Cool styles.

#E9FFDB is commonly associated with Minimal.

The name Nyanza is linked to Nyanza from Bantu (various), meaning Lake, large body of water.

Name, History & Etymology

Origin Word Nyanza
Meaning Lake, large body of water
Language Bantu (various)
First Recorded Use Pre-colonial

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.

Similar Named Colors

Tea Green #D0F0C0 ΔE 5.30
Honeydew #F0FFF0 ΔE 7.09
Light Yellow #FFFFE0 ΔE 7.48

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);
}