#00a091 Color
Color Codes | |
---|---|
Hex Code | #00a091 |
RGB Code | rgb(00, 160, 145) |
HSL Code | hsl(174, 100%, 31%) |
#00a091 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 160, 145); }
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(174, 100%, 31%); }
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 #00a091
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 160, 145, 10%) | #00a0911a | |
rgb(00, 160, 145, 20%) | #00a09133 | |
rgb(00, 160, 145, 40%) | #00a0914C | |
rgb(00, 160, 145, 60%) | #00a09199 | |
rgb(00, 160, 145, 80%) | #00a091CC | |
rgb(00, 160, 145, 100%) | #00a091FF |
Saturated and desaturated colors of #00a091
HSL Code | Preview |
---|---|
hsl(174, 10%, 31%) | |
hsl(174, 20%, 31%) | |
hsl(174, 40%, 31%) | |
hsl(174, 60%, 31%) | |
hsl(174, 80%, 31%) | |
hsl(174, 100%, 31%) |
#00a091 Color Usage In CSS
body { color: #00a091; } p { color: rgb(00, 160, 145); } header { border-bottom:1px solid #00a091; }