Rhythm

HEX: #777696 | Modern Palette

On White
4.36:1
FAIL
On Black
4.82:1
PASS

Color Specifications

HEX
#777696
RGB
119, 118, 150
HSL
241°, 21% ,58%
CMYK
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

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

Color Characteristics

Mood
Calm
Style
Muted Cool

Accessibility Simulation

Deuteranopia #767696
Protanopia #767696
Tritanopia #727B7B
Achromatopsia #797979

Frequently Asked Questions

Rhythm (#777696) is a color with RGB(119, 118, 150) and HSL(241.88°, 21.33%, 58.82%).

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

#777696 is suitable for Text, Background, Border and works well with Muted, Cool styles.

#777696 is commonly associated with Calm.

The name Rhythm is linked to ῥυθμός (rhythmós) from Greek, meaning flow, measured flow, motion, proportion, symmetry.

Name, History & Etymology

Origin Word ῥυθμός (rhythmós)
Meaning flow, measured flow, motion, proportion, symmetry
Language Greek
First Recorded Use 16th Century

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.

Similar Named Colors

Dark Blue-gray #666699 ΔE 7.90
Old Lavender #796878 ΔE 9.73
Lavender Purple #967BB6 ΔE 10.20
Cool Grey #8C92AC ΔE 10.31

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