Rhythm
HEX: #777696 | Modern Palette
Color Specifications
#777696
119, 118, 150
241°, 21% ,58%
20.67, 21.33, 0, 41.18
About Rhythm
Rhythm (#777696) is a color with RGB(119, 118, 150) and HSL(241.88°, 21.33%, 58.82%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #959676, which creates strong contrast. Its triadic palette includes #967776 and #769677. The name comes from ῥυθμός (rhythmós) (Greek).
- HEX: #777696
- RGB: 119, 118, 150
- HSL: 241.88°, 21.33%, 58.82%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #959676
- Triadic colors: #967776, #769677
- The name comes from ῥυθμός (rhythmós) (Greek).
Live Components
Color Palettes
Rhythm #777696 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
Rhythm #777696 pairs with #959676 as its complementary color, and #967776 and #769677 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word "rhythm" entered English from French 'rhythme', which in turn came from Latin 'rhythmus'. The Latin word was a direct borrowing from the Greek 'rhythmós'. In ancient Greek, 'rhythmós' was used to describe any regular recurring motion or measured flow, particularly in music, dance, and poetry. It encompassed the idea of proportion and symmetry in movement or sound. Its earliest uses in English were primarily in the context of poetry and music, referring to the measured flow of verse or sound. Over time, its meaning expanded to include any regular, repeated pattern of movement or sound in a broader sense.
First Recorded Use
1570s
Cultural Associations
Rhythm is a fundamental element across human cultures, deeply embedded in music, dance, language, and even daily life. It plays a crucial role in ritual, ceremony, and social bonding. Different cultures have developed unique rhythmic structures and patterns, reflecting their distinct artistic and social expressions. The concept of rhythm is also central to understanding natural phenomena, from the beating of a heart to the changing of seasons.
Code Snippets
/* Background */
.element {
background-color: #777696;
}
/* Text */
.element {
color: #777696;
}
/* Border */
.element {
border: 1px solid #777696;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#777696,
#ABAC80
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#777696,
#ABAC80
);
}
// SCSS variable
$rhythm: #777696;
// With RGB channels (useful for rgba() usage)
$rhythm-r: 119;
$rhythm-g: 118;
$rhythm-b: 150;
// Usage
.element {
background-color: $rhythm;
color: rgba($rhythm-r, $rhythm-g, $rhythm-b, 0.8);
}