#83ae0b Color
Color Codes | |
---|---|
Hex Code | #83ae0b |
RGB Code | rgb(131, 174, 11) |
HSL Code | hsl(76, 88%, 36%) |
#83ae0b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(131, 174, 11); }
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(76, 88%, 36%); }
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 #83ae0b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(131, 174, 11, 10%) | #83ae0b1a | |
rgb(131, 174, 11, 20%) | #83ae0b33 | |
rgb(131, 174, 11, 40%) | #83ae0b4C | |
rgb(131, 174, 11, 60%) | #83ae0b99 | |
rgb(131, 174, 11, 80%) | #83ae0bCC | |
rgb(131, 174, 11, 100%) | #83ae0bFF |
Saturated and desaturated colors of #83ae0b
HSL Code | Preview |
---|---|
hsl(76, 10%, 36%) | |
hsl(76, 20%, 36%) | |
hsl(76, 40%, 36%) | |
hsl(76, 60%, 36%) | |
hsl(76, 80%, 36%) | |
hsl(76, 100%, 36%) |
#83ae0b Color Usage In CSS
body { color: #83ae0b; } p { color: rgb(131, 174, 11); } header { border-bottom:1px solid #83ae0b; }