#129195 Color
Color Codes | |
---|---|
Hex Code | #129195 |
RGB Code | rgb(18, 145, 149) |
HSL Code | hsl(182, 78%, 33%) |
#129195 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(18, 145, 149); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(182, 78%, 33%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #129195
RGB Code | Hex Code | Preview |
---|---|---|
rgb(18, 145, 149, 10%) | #1291951a | |
rgb(18, 145, 149, 20%) | #12919533 | |
rgb(18, 145, 149, 40%) | #1291954C | |
rgb(18, 145, 149, 60%) | #12919599 | |
rgb(18, 145, 149, 80%) | #129195CC | |
rgb(18, 145, 149, 100%) | #129195FF |
Saturated and desaturated colors of #129195
HSL Code | Preview |
---|---|
hsl(182, 10%, 33%) | |
hsl(182, 20%, 33%) | |
hsl(182, 40%, 33%) | |
hsl(182, 60%, 33%) | |
hsl(182, 80%, 33%) | |
hsl(182, 100%, 33%) |
#129195 Color Usage In CSS
body { color: #129195; } p { color: rgb(18, 145, 149); } header { border-bottom:1px solid #129195; }