#380836 Color
Color Codes | |
---|---|
Hex Code | #380836 |
RGB Code | rgb(56, 08, 54) |
HSL Code | hsl(303, 75%, 13%) |
#380836 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 08, 54); }
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(303, 75%, 13%); }
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 #380836
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 08, 54, 10%) | #3808361a | |
rgb(56, 08, 54, 20%) | #38083633 | |
rgb(56, 08, 54, 40%) | #3808364C | |
rgb(56, 08, 54, 60%) | #38083699 | |
rgb(56, 08, 54, 80%) | #380836CC | |
rgb(56, 08, 54, 100%) | #380836FF |
Saturated and desaturated colors of #380836
HSL Code | Preview |
---|---|
hsl(303, 10%, 13%) | |
hsl(303, 20%, 13%) | |
hsl(303, 40%, 13%) | |
hsl(303, 60%, 13%) | |
hsl(303, 80%, 13%) | |
hsl(303, 100%, 13%) |
#380836 Color Usage In CSS
body { color: #380836; } p { color: rgb(56, 08, 54); } header { border-bottom:1px solid #380836; }