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
Spartan Crimson #9E1316 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
Spartan Crimson #9E1316 pairs with #139E9B as its complementary color, and #169E13 and #13169E in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}