#231508 Color
Color Codes | |
---|---|
Hex Code | #231508 |
RGB Code | rgb(35, 21, 08) |
HSL Code | hsl(29, 63%, 8%) |
#231508 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 21, 08); }
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(29, 63%, 8%); }
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 #231508
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 21, 08, 10%) | #2315081a | |
rgb(35, 21, 08, 20%) | #23150833 | |
rgb(35, 21, 08, 40%) | #2315084C | |
rgb(35, 21, 08, 60%) | #23150899 | |
rgb(35, 21, 08, 80%) | #231508CC | |
rgb(35, 21, 08, 100%) | #231508FF |
Saturated and desaturated colors of #231508
HSL Code | Preview |
---|---|
hsl(29, 10%, 8%) | |
hsl(29, 20%, 8%) | |
hsl(29, 40%, 8%) | |
hsl(29, 60%, 8%) | |
hsl(29, 80%, 8%) | |
hsl(29, 100%, 8%) |
#231508 Color Usage In CSS
body { color: #231508; } p { color: rgb(35, 21, 08); } header { border-bottom:1px solid #231508; }