Metallic Seaweed
HEX: #0A7E8C | Modern Palette
Color Specifications
#0A7E8C
10, 126, 140
186°, 92% ,54%
92.86, 10, 0, 45.1
About Metallic Seaweed
Metallic Seaweed (#0A7E8C) is a color with RGB(10, 126, 140) and HSL(186.46°, 92.86%, 54.9%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #8C180A, which creates strong contrast. Its triadic palette includes #8C0A7E and #7E8C0A.
- HEX: #0A7E8C
- RGB: 10, 126, 140
- HSL: 186.46°, 92.86%, 54.9%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #8C180A
- Triadic colors: #8C0A7E, #7E8C0A
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 #0A7E8C from deepest shade to lightest tint.
Frequently Asked Questions
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #0A7E8C;
}
/* Text */
.element {
color: #0A7E8C;
}
/* Border */
.element {
border: 1px solid #0A7E8C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0A7E8C,
#F73821
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0A7E8C,
#F73821
);
}
// SCSS variable
$metallic-seaweed: #0A7E8C;
// With RGB channels (useful for rgba() usage)
$metallic-seaweed-r: 10;
$metallic-seaweed-g: 126;
$metallic-seaweed-b: 140;
// Usage
.element {
background-color: $metallic-seaweed;
color: rgba($metallic-seaweed-r, $metallic-seaweed-g, $metallic-seaweed-b, 0.8);
}