#00f3a3 Color
Color Codes | |
---|---|
Hex Code | #00f3a3 |
RGB Code | rgb(00, 243, 163) |
HSL Code | hsl(160, 100%, 48%) |
#00f3a3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 243, 163); }
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(160, 100%, 48%); }
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 #00f3a3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 243, 163, 10%) | #00f3a31a | |
rgb(00, 243, 163, 20%) | #00f3a333 | |
rgb(00, 243, 163, 40%) | #00f3a34C | |
rgb(00, 243, 163, 60%) | #00f3a399 | |
rgb(00, 243, 163, 80%) | #00f3a3CC | |
rgb(00, 243, 163, 100%) | #00f3a3FF |
Saturated and desaturated colors of #00f3a3
HSL Code | Preview |
---|---|
hsl(160, 10%, 48%) | |
hsl(160, 20%, 48%) | |
hsl(160, 40%, 48%) | |
hsl(160, 60%, 48%) | |
hsl(160, 80%, 48%) | |
hsl(160, 100%, 48%) |
#00f3a3 Color Usage In CSS
body { color: #00f3a3; } p { color: rgb(00, 243, 163); } header { border-bottom:1px solid #00f3a3; }