#72b100 Color
Color Codes | |
---|---|
Hex Code | #72b100 |
RGB Code | rgb(114, 177, 00) |
HSL Code | hsl(81, 100%, 35%) |
#72b100 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 177, 00); }
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(81, 100%, 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 #72b100
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 177, 00, 10%) | #72b1001a | |
rgb(114, 177, 00, 20%) | #72b10033 | |
rgb(114, 177, 00, 40%) | #72b1004C | |
rgb(114, 177, 00, 60%) | #72b10099 | |
rgb(114, 177, 00, 80%) | #72b100CC | |
rgb(114, 177, 00, 100%) | #72b100FF |
Saturated and desaturated colors of #72b100
HSL Code | Preview |
---|---|
hsl(81, 10%, 35%) | |
hsl(81, 20%, 35%) | |
hsl(81, 40%, 35%) | |
hsl(81, 60%, 35%) | |
hsl(81, 80%, 35%) | |
hsl(81, 100%, 35%) |
#72b100 Color Usage In CSS
body { color: #72b100; } p { color: rgb(114, 177, 00); } header { border-bottom:1px solid #72b100; }