Kobi
HEX: #E79FC4 | Modern Palette
Color Specifications
#E79FC4
231, 159, 196
329°, 31% ,90%
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
Color Palettes
Kobi #E79FC4 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
Kobi #E79FC4 pairs with #9FE7C2 as its complementary color, and #C4E79F and #9FC4E7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#B8B8C2
#A9A9C4
#E3A4A4
#B4B4B4
Frequently Asked Questions
Name, History & Etymology
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.
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);
}