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
Metallic Seaweed #0A7E8C 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
Metallic Seaweed #0A7E8C pairs with #8C180A as its complementary color, and #8C0A7E and #7E8C0A in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}