#03ae03 Color
Color Codes | |
---|---|
Hex Code | #03ae03 |
RGB Code | rgb(03, 174, 03) |
HSL Code | hsl(120, 97%, 35%) |
#03ae03 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 174, 03); }
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(120, 97%, 35%); }
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 #03ae03
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 174, 03, 10%) | #03ae031a | |
rgb(03, 174, 03, 20%) | #03ae0333 | |
rgb(03, 174, 03, 40%) | #03ae034C | |
rgb(03, 174, 03, 60%) | #03ae0399 | |
rgb(03, 174, 03, 80%) | #03ae03CC | |
rgb(03, 174, 03, 100%) | #03ae03FF |
Saturated and desaturated colors of #03ae03
HSL Code | Preview |
---|---|
hsl(120, 10%, 35%) | |
hsl(120, 20%, 35%) | |
hsl(120, 40%, 35%) | |
hsl(120, 60%, 35%) | |
hsl(120, 80%, 35%) | |
hsl(120, 100%, 35%) |
#03ae03 Color Usage In CSS
body { color: #03ae03; } p { color: rgb(03, 174, 03); } header { border-bottom:1px solid #03ae03; }