Kobi

HEX: #E79FC4 | Modern Palette

On White
2.07:1
FAIL
On Black
10.15:1
PASS

Color Specifications

HEX
#E79FC4
RGB
231, 159, 196
HSL
329°, 31% ,90%
CMYK
0, 31.17, 15.15, 9.41

About Kobi

Kobi (#E79FC4) is a color with RGB(231, 159, 196) and HSL(329.17°, 31.17%, 90.59%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #9FE7C2, which creates strong contrast. Its triadic palette includes #C4E79F and #9FC4E7. The name comes from קובי (Hebrew).

  • HEX: #E79FC4
  • RGB: 231, 159, 196
  • HSL: 329.17°, 31.17%, 90.59%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #9FE7C2
  • Triadic colors: #C4E79F, #9FC4E7
  • The name comes from קובי (Hebrew).

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 #E79FC4 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #B8B8C2
Protanopia #A9A9C4
Tritanopia #E3A4A4
Achromatopsia #B4B4B4

Frequently Asked Questions

Kobi (#E79FC4) is a color with RGB(231, 159, 196) and HSL(329.17°, 31.17%, 90.59%).

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

#E79FC4 is suitable for Text, Background, Print and works well with Pastel, Warm styles.

The name Kobi is linked to קובי from Hebrew, meaning Supplanter, heel.

Name, History & Etymology

Origin Word קובי
Meaning Supplanter, heel
Language Hebrew
First Recorded Use Modern

History

Kobi is a diminutive form of the Hebrew name Yaakov (Jacob). Jacob's name is traditionally interpreted as 'supplanter' or 'he who grasps the heel,' referring to the biblical story where Jacob was born grasping his twin brother Esau's heel. Kobi emerged as a standalone given name, particularly in Israel, during the 20th century.

First Recorded Use

20th Century

Cultural Associations

In Israel, Kobi is a common and well-recognized male given name. It carries a sense of familiarity and is often seen as a friendly and approachable name. While its roots are deeply biblical through Jacob, Kobi itself has a modern and less formal feel.

Similar Named Colors

Pastel Magenta #F49AC2 ΔE 2.96
Pink Pearl #E7ACCF ΔE 3.47
Amaranth Pink #F19CBB ΔE 3.54
Lavender Pink #FBAED2 ΔE 4.35

Code Snippets

/* Background */
.element {
    background-color: #E79FC4;
}

/* Text */
.element {
    color: #E79FC4;
}

/* Border */
.element {
    border: 1px solid #E79FC4;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E79FC4,
        #E0EEE7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E79FC4,
        #E0EEE7
    );
}

// SCSS variable
$kobi: #E79FC4;

// With RGB channels (useful for rgba() usage)
$kobi-r: 231;
$kobi-g: 159;
$kobi-b: 196;

// Usage
.element {
    background-color: $kobi;
    color: rgba($kobi-r, $kobi-g, $kobi-b, 0.8);
}