#485305 Color
Color Codes | |
---|---|
Hex Code | #485305 |
RGB Code | rgb(72, 83, 05) |
HSL Code | hsl(68, 89%, 17%) |
#485305 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 83, 05); }
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(68, 89%, 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 #485305
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 83, 05, 10%) | #4853051a | |
rgb(72, 83, 05, 20%) | #48530533 | |
rgb(72, 83, 05, 40%) | #4853054C | |
rgb(72, 83, 05, 60%) | #48530599 | |
rgb(72, 83, 05, 80%) | #485305CC | |
rgb(72, 83, 05, 100%) | #485305FF |
Saturated and desaturated colors of #485305
HSL Code | Preview |
---|---|
hsl(68, 10%, 17%) | |
hsl(68, 20%, 17%) | |
hsl(68, 40%, 17%) | |
hsl(68, 60%, 17%) | |
hsl(68, 80%, 17%) | |
hsl(68, 100%, 17%) |
#485305 Color Usage In CSS
body { color: #485305; } p { color: rgb(72, 83, 05); } header { border-bottom:1px solid #485305; }