#1aaf03 Color
Color Codes | |
---|---|
Hex Code | #1aaf03 |
RGB Code | rgb(26, 175, 03) |
HSL Code | hsl(112, 97%, 35%) |
#1aaf03 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(26, 175, 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(112, 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 #1aaf03
RGB Code | Hex Code | Preview |
---|---|---|
rgb(26, 175, 03, 10%) | #1aaf031a | |
rgb(26, 175, 03, 20%) | #1aaf0333 | |
rgb(26, 175, 03, 40%) | #1aaf034C | |
rgb(26, 175, 03, 60%) | #1aaf0399 | |
rgb(26, 175, 03, 80%) | #1aaf03CC | |
rgb(26, 175, 03, 100%) | #1aaf03FF |
Saturated and desaturated colors of #1aaf03
HSL Code | Preview |
---|---|
hsl(112, 10%, 35%) | |
hsl(112, 20%, 35%) | |
hsl(112, 40%, 35%) | |
hsl(112, 60%, 35%) | |
hsl(112, 80%, 35%) | |
hsl(112, 100%, 35%) |
#1aaf03 Color Usage In CSS
body { color: #1aaf03; } p { color: rgb(26, 175, 03); } header { border-bottom:1px solid #1aaf03; }