Keppel
HEX: #3AB09E | Modern Palette
Color Specifications
#3AB09E
58, 176, 158
170°, 67% ,69%
67.05, 0, 10.23, 30.98
About Keppel
Keppel (#3AB09E) is a color with RGB(58, 176, 158) and HSL(170.85°, 67.05%, 69.02%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B03A4C, which creates strong contrast. Its triadic palette includes #9E3AB0 and #B09E3A. The name comes from Keppel (Dutch).
- HEX: #3AB09E
- RGB: 58, 176, 158
- HSL: 170.85°, 67.05%, 69.02%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #B03A4C
- Triadic colors: #9E3AB0, #B09E3A
- The name comes from Keppel (Dutch).
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 #3AB09E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Keppel' primarily originates as a toponymic surname, meaning it was given to people who came from a place called Keppel. There are several places in the Netherlands and Germany named Keppel. The most prominent is likely the Huis Keppel (Keppel House) in Bronkhorst, Gelderland, Netherlands, which has a history dating back to the 14th century. The noble family 'Van Keppel' took their name from this estate. The word 'Keppel' itself is thought to be a diminutive of 'kapel' (chapel) or related to 'kop' (head/top), referring to a small hill or mound, often one where a chapel might be located. Over time, descendants of these families or individuals from these locations spread, carrying the surname with them. A notable branch of the family, the Earls of Albemarle, are descendants of Arnold Joost van Keppel, who came to England with William of Orange in 1688.
First Recorded Use
The surname 'Keppel' is derived from a toponymic origin, referring to a place called Keppel. The earliest documented use as a surname is difficult to pinpoint precisely without specific genealogical research for the earliest individual. However, the place name itself has medieval origins.
Cultural Associations
The surname 'Keppel' is associated with a prominent aristocratic family in the United Kingdom, the Earls of Albemarle, who have played roles in British politics and society. The family's Dutch origins are a significant part of their history. The name also appears as a place name in various locations, particularly in the Netherlands and Germany, reflecting its original toponymic nature. The association with 'chapel' or 'hill' gives it a subtle connection to historical religious or geographical landmarks.
Code Snippets
/* Background */
.element {
background-color: #3AB09E;
}
/* Text */
.element {
color: #3AB09E;
}
/* Border */
.element {
border: 1px solid #3AB09E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3AB09E,
#E57B8B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3AB09E,
#E57B8B
);
}
// SCSS variable
$keppel: #3AB09E;
// With RGB channels (useful for rgba() usage)
$keppel-r: 58;
$keppel-g: 176;
$keppel-b: 158;
// Usage
.element {
background-color: $keppel;
color: rgba($keppel-r, $keppel-g, $keppel-b, 0.8);
}