Spartan Crimson
HEX: #9E1316 | Modern Palette
Color Specifications
#9E1316
158, 19, 22
358°, 87% ,61%
0, 87.97, 86.08, 38.04
About Spartan Crimson
Spartan Crimson (#9E1316) is a color with RGB(158, 19, 22) and HSL(358.71°, 87.97%, 61.96%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #139E9B, which creates strong contrast. Its triadic palette includes #169E13 and #13169E.
- HEX: #9E1316
- RGB: 158, 19, 22
- HSL: 358.71°, 87.97%, 61.96%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #139E9B
- Triadic colors: #169E13, #13169E
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 #9E1316 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #9E1316;
}
/* Text */
.element {
color: #9E1316;
}
/* Border */
.element {
border: 1px solid #9E1316;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9E1316,
#49F3F0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9E1316,
#49F3F0
);
}
// SCSS variable
$spartan-crimson: #9E1316;
// With RGB channels (useful for rgba() usage)
$spartan-crimson-r: 158;
$spartan-crimson-g: 19;
$spartan-crimson-b: 22;
// Usage
.element {
background-color: $spartan-crimson;
color: rgba($spartan-crimson-r, $spartan-crimson-g, $spartan-crimson-b, 0.8);
}