Medium Vermilion
HEX: #D9603B | Modern Palette
Color Specifications
#D9603B
217, 96, 59
14°, 72% ,85%
0, 55.76, 72.81, 14.9
About Medium Vermilion
Medium Vermilion (#D9603B) is a color with RGB(217, 96, 59) and HSL(14.05°, 72.81%, 85.1%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3BB4D9, which creates strong contrast. Its triadic palette includes #3BD960 and #603BD9.
- HEX: #D9603B
- RGB: 217, 96, 59
- HSL: 14.05°, 72.81%, 85.1%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #3BB4D9
- Triadic colors: #3BD960, #603BD9
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 #D9603B from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#919131
#76763D
#DA5C5C
#858585
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #D9603B;
}
/* Text */
.element {
color: #D9603B;
}
/* Border */
.element {
border: 1px solid #D9603B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D9603B,
#BDE8F5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D9603B,
#BDE8F5
);
}
// SCSS variable
$medium-vermilion: #D9603B;
// With RGB channels (useful for rgba() usage)
$medium-vermilion-r: 217;
$medium-vermilion-g: 96;
$medium-vermilion-b: 59;
// Usage
.element {
background-color: $medium-vermilion;
color: rgba($medium-vermilion-r, $medium-vermilion-g, $medium-vermilion-b, 0.8);
}