#0de362 Color
Color Codes | |
---|---|
Hex Code | #0de362 |
RGB Code | rgb(13, 227, 98) |
HSL Code | hsl(144, 89%, 47%) |
#0de362 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(13, 227, 98); }
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(144, 89%, 47%); }
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 #0de362
RGB Code | Hex Code | Preview |
---|---|---|
rgb(13, 227, 98, 10%) | #0de3621a | |
rgb(13, 227, 98, 20%) | #0de36233 | |
rgb(13, 227, 98, 40%) | #0de3624C | |
rgb(13, 227, 98, 60%) | #0de36299 | |
rgb(13, 227, 98, 80%) | #0de362CC | |
rgb(13, 227, 98, 100%) | #0de362FF |
Saturated and desaturated colors of #0de362
HSL Code | Preview |
---|---|
hsl(144, 10%, 47%) | |
hsl(144, 20%, 47%) | |
hsl(144, 40%, 47%) | |
hsl(144, 60%, 47%) | |
hsl(144, 80%, 47%) | |
hsl(144, 100%, 47%) |
#0de362 Color Usage In CSS
body { color: #0de362; } p { color: rgb(13, 227, 98); } header { border-bottom:1px solid #0de362; }