Medium Slate Blue
HEX: #7B68EE | Modern Palette
Color Specifications
#7B68EE
123, 104, 238
248°, 56% ,93%
48.32, 56.3, 0, 6.67
About Medium Slate Blue
Medium Slate Blue (#7B68EE) is a color with RGB(123, 104, 238) and HSL(248.51°, 56.3%, 93.33%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #DBEE68, which creates strong contrast. Its triadic palette includes #EE7B68 and #68EE7B.
- HEX: #7B68EE
- RGB: 123, 104, 238
- HSL: 248.51°, 56.3%, 93.33%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #DBEE68
- Triadic colors: #EE7B68, #68EE7B
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 #7B68EE from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#6E6EEE
#6A6AEE
#5A8484
#7C7C7C
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #7B68EE;
}
/* Text */
.element {
color: #7B68EE;
}
/* Border */
.element {
border: 1px solid #7B68EE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7B68EE,
#F5F8E4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7B68EE,
#F5F8E4
);
}
// SCSS variable
$medium-slate-blue: #7B68EE;
// With RGB channels (useful for rgba() usage)
$medium-slate-blue-r: 123;
$medium-slate-blue-g: 104;
$medium-slate-blue-b: 238;
// Usage
.element {
background-color: $medium-slate-blue;
color: rgba($medium-slate-blue-r, $medium-slate-blue-g, $medium-slate-blue-b, 0.8);
}