#163625 Color
Color Codes | |
---|---|
Hex Code | #163625 |
RGB Code | rgb(22, 54, 37) |
HSL Code | hsl(148, 42%, 15%) |
#163625 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(22, 54, 37); }
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(148, 42%, 15%); }
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 #163625
RGB Code | Hex Code | Preview |
---|---|---|
rgb(22, 54, 37, 10%) | #1636251a | |
rgb(22, 54, 37, 20%) | #16362533 | |
rgb(22, 54, 37, 40%) | #1636254C | |
rgb(22, 54, 37, 60%) | #16362599 | |
rgb(22, 54, 37, 80%) | #163625CC | |
rgb(22, 54, 37, 100%) | #163625FF |
Saturated and desaturated colors of #163625
HSL Code | Preview |
---|---|
hsl(148, 10%, 15%) | |
hsl(148, 20%, 15%) | |
hsl(148, 40%, 15%) | |
hsl(148, 60%, 15%) | |
hsl(148, 80%, 15%) | |
hsl(148, 100%, 15%) |
#163625 Color Usage In CSS
body { color: #163625; } p { color: rgb(22, 54, 37); } header { border-bottom:1px solid #163625; }