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
Pastel Red #FF6961 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
Pastel Red #FF6961 pairs with #61F7FF as its complementary color, and #61FF69 and #6961FF 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: #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);
}