#09fcad Color
Color Codes | |
---|---|
Hex Code | #09fcad |
RGB Code | rgb(09, 252, 173) |
HSL Code | hsl(160, 98%, 51%) |
#09fcad Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(09, 252, 173); }
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, 98%, 51%); }
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 #09fcad
RGB Code | Hex Code | Preview |
---|---|---|
rgb(09, 252, 173, 10%) | #09fcad1a | |
rgb(09, 252, 173, 20%) | #09fcad33 | |
rgb(09, 252, 173, 40%) | #09fcad4C | |
rgb(09, 252, 173, 60%) | #09fcad99 | |
rgb(09, 252, 173, 80%) | #09fcadCC | |
rgb(09, 252, 173, 100%) | #09fcadFF |
Saturated and desaturated colors of #09fcad
HSL Code | Preview |
---|---|
hsl(160, 10%, 51%) | |
hsl(160, 20%, 51%) | |
hsl(160, 40%, 51%) | |
hsl(160, 60%, 51%) | |
hsl(160, 80%, 51%) | |
hsl(160, 100%, 51%) |
#09fcad Color Usage In CSS
body { color: #09fcad; } p { color: rgb(09, 252, 173); } header { border-bottom:1px solid #09fcad; }