#303526 Color
Color Codes | |
---|---|
Hex Code | #303526 |
RGB Code | rgb(48, 53, 38) |
HSL Code | hsl(80, 16%, 18%) |
#303526 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(48, 53, 38); }
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(80, 16%, 18%); }
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 #303526
RGB Code | Hex Code | Preview |
---|---|---|
rgb(48, 53, 38, 10%) | #3035261a | |
rgb(48, 53, 38, 20%) | #30352633 | |
rgb(48, 53, 38, 40%) | #3035264C | |
rgb(48, 53, 38, 60%) | #30352699 | |
rgb(48, 53, 38, 80%) | #303526CC | |
rgb(48, 53, 38, 100%) | #303526FF |
Saturated and desaturated colors of #303526
HSL Code | Preview |
---|---|
hsl(80, 10%, 18%) | |
hsl(80, 20%, 18%) | |
hsl(80, 40%, 18%) | |
hsl(80, 60%, 18%) | |
hsl(80, 80%, 18%) | |
hsl(80, 100%, 18%) |
#303526 Color Usage In CSS
body { color: #303526; } p { color: rgb(48, 53, 38); } header { border-bottom:1px solid #303526; }