Pastel Red
HEX: #FF6961 | Modern Palette
Color Specifications
#FF6961
255, 105, 97
3°, 100% ,69%
0, 59, 62, 0
About Pastel Red
Pastel Red (#FF6961) is a color with RGB(255, 105, 97) and HSL(3°, 100%, 69%). 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 #61F7FF, which creates strong contrast. Its triadic palette includes #61FF69 and #6961FF.
- HEX: #FF6961
- RGB: 255, 105, 97
- HSL: 3°, 100%, 69%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #61F7FF
- Triadic colors: #61FF69, #6961FF
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 #FF6961 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FF6961;
}
/* Text */
.element {
color: #FF6961;
}
/* Border */
.element {
border: 1px solid #FF6961;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF6961,
#61F7FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF6961,
#61F7FF
);
}
// SCSS variable
$pastel-red: #FF6961;
// With RGB channels (useful for rgba() usage)
$pastel-red-r: 255;
$pastel-red-g: 105;
$pastel-red-b: 97;
// Usage
.element {
background-color: $pastel-red;
color: rgba($pastel-red-r, $pastel-red-g, $pastel-red-b, 0.8);
}