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