Ruber

HEX: #CE4676 | Modern Palette

On White
4.41:1
FAIL
On Black
4.76:1
PASS

Color Specifications

HEX
#CE4676
RGB
206, 70, 118
HSL
338°, 66% ,80%
CMYK
0, 66.02, 42.72, 19.22

About Ruber

Ruber (#CE4676) is a color with RGB(206, 70, 118) and HSL(338.82°, 66.02%, 80.78%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #46CE9E, which creates strong contrast. Its triadic palette includes #76CE46 and #4676CE. The name comes from ruber (Latin).

  • HEX: #CE4676
  • RGB: 206, 70, 118
  • HSL: 338.82°, 66.02%, 80.78%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #46CE9E
  • Triadic colors: #76CE46, #4676CE
  • The name comes from ruber (Latin).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Ruber #CE4676 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Ruber #CE4676 pairs with #46CE9E as its complementary color, and #76CE46 and #4676CE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

RUBER
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

RUBER
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

RUBER
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

RUBER
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

RUBER
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

RUBER

Shades & Tints

The shade and tint range for Ruber #CE4676 moves from dark #14050B tones through the base color to lighter #FAEBF0 tones, making it useful for depth, hierarchy, and background variation.

RUBER

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #828272
Protanopia #626277
Tritanopia #CC4E4E
Achromatopsia #787878

Frequently Asked Questions

Ruber (#CE4676) is a color with RGB(206, 70, 118) and HSL(338.82°, 66.02%, 80.78%).

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

#CE4676 is suitable for Text, Button, Background and works well with Warm styles.

#CE4676 is commonly associated with Playful.

The name Ruber is linked to ruber from Latin, meaning red.

Name, History & Etymology

Origin Word ruber
Meaning red
Language Latin
First Recorded Use Classical Antiquity

History

The word 'ruber' is a direct Latin adjective meaning 'red'. It is the root for many words in Romance languages (e.g., 'rouge' in French, 'rosso' in Italian, 'rojo' in Spanish, 'vermelho' in Portuguese) and has also influenced English through loanwords and scientific terminology. Its use dates back to ancient Latin literature and everyday speech. The color red itself has held significant symbolic meaning across various ancient cultures, often associated with blood, fire, passion, and power.

First Recorded Use

Before 500 AD

Cultural Associations

In ancient Rome, red (ruber) was a prominent color. It was associated with Mars, the god of war, and was often worn by soldiers. Triumphant generals would paint their faces red. Red was also used in religious ceremonies and for decorative purposes. Its strong visual impact made it a significant color in art and daily life.

Similar Named Colors

Fuchsia Rose #C74375 ΔE 1.91
Magenta (Pantone) #D0417E ΔE 2.48
Telemagenta #CF3476 ΔE 3.18
Fuchsia Purple #CC397B ΔE 3.58

Code Snippets

/* Background */
.element {
    background-color: #CE4676;
}

/* Text */
.element {
    color: #CE4676;
}

/* Border */
.element {
    border: 1px solid #CE4676;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CE4676,
        #AEEED8
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CE4676,
        #AEEED8
    );
}

// SCSS variable
$ruber: #CE4676;

// With RGB channels (useful for rgba() usage)
$ruber-r: 206;
$ruber-g: 70;
$ruber-b: 118;

// Usage
.element {
    background-color: $ruber;
    color: rgba($ruber-r, $ruber-g, $ruber-b, 0.8);
}