Pacific Blue
HEX: #1CA9C9 | Modern Palette
Color Specifications
#1CA9C9
28, 169, 201
191°, 86% ,78%
86.07, 15.92, 0, 21.18
About Pacific Blue
Pacific Blue (#1CA9C9) is a color with RGB(28, 169, 201) and HSL(191.1°, 86.07%, 78.82%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #C93C1C, which creates strong contrast. Its triadic palette includes #C91CA9 and #A9C91C. The name comes from Pacific Blue (English).
- HEX: #1CA9C9
- RGB: 28, 169, 201
- HSL: 191.1°, 86.07%, 78.82%
- Mood: Bold, Playful
- Style: Neon, Cool
- Use case: Text, Button, Accent
- Complementary color: #C93C1C
- Triadic colors: #C91CA9, #A9C91C
- The name comes from Pacific Blue (English).
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 #1CA9C9 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Pacific Blue' evokes the vastness and characteristic color of the Pacific Ocean. The ocean's color itself is a result of light absorption and scattering by water molecules, dissolved organic matter, and phytoplankton. As a named color, 'Pacific Blue' falls into a category of blues that are often described as serene, deep, or tropical. Its use in design, fashion, and branding often aims to convey these qualities. The hex code #1ca9c9 specifically points to a vibrant, medium-light cyan-blue.
First Recorded Use
The specific color name 'Pacific Blue' likely gained traction with the advent of standardized color systems (like Pantone) and digital color representation. While the concept of a 'Pacific blue' existed earlier, its formal naming as a distinct color is more recent. Pantone 306 C is often associated with this hue.
Cultural Associations
In many cultures, blue is associated with tranquility, stability, and the divine. 'Pacific Blue' specifically can evoke images of tropical beaches, clear waters, and open skies, often used to represent nature, travel, and relaxation. It's a popular color in branding for companies related to water, tourism, and technology, aiming for a fresh and modern feel.
Code Snippets
/* Background */
.element {
background-color: #1CA9C9;
}
/* Text */
.element {
color: #1CA9C9;
}
/* Border */
.element {
border: 1px solid #1CA9C9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1CA9C9,
#F7AC9B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1CA9C9,
#F7AC9B
);
}
// SCSS variable
$pacific-blue: #1CA9C9;
// With RGB channels (useful for rgba() usage)
$pacific-blue-r: 28;
$pacific-blue-g: 169;
$pacific-blue-b: 201;
// Usage
.element {
background-color: $pacific-blue;
color: rgba($pacific-blue-r, $pacific-blue-g, $pacific-blue-b, 0.8);
}