#235306 Color
Color Codes | |
---|---|
Hex Code | #235306 |
RGB Code | rgb(35, 83, 06) |
HSL Code | hsl(97, 87%, 17%) |
#235306 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 83, 06); }
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(97, 87%, 17%); }
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 #235306
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 83, 06, 10%) | #2353061a | |
rgb(35, 83, 06, 20%) | #23530633 | |
rgb(35, 83, 06, 40%) | #2353064C | |
rgb(35, 83, 06, 60%) | #23530699 | |
rgb(35, 83, 06, 80%) | #235306CC | |
rgb(35, 83, 06, 100%) | #235306FF |
Saturated and desaturated colors of #235306
HSL Code | Preview |
---|---|
hsl(97, 10%, 17%) | |
hsl(97, 20%, 17%) | |
hsl(97, 40%, 17%) | |
hsl(97, 60%, 17%) | |
hsl(97, 80%, 17%) | |
hsl(97, 100%, 17%) |
#235306 Color Usage In CSS
body { color: #235306; } p { color: rgb(35, 83, 06); } header { border-bottom:1px solid #235306; }