#133f33 Color
Color Codes | |
---|---|
Hex Code | #133f33 |
RGB Code | rgb(19, 63, 51) |
HSL Code | hsl(164, 54%, 16%) |
#133f33 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(19, 63, 51); }
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(164, 54%, 16%); }
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 #133f33
RGB Code | Hex Code | Preview |
---|---|---|
rgb(19, 63, 51, 10%) | #133f331a | |
rgb(19, 63, 51, 20%) | #133f3333 | |
rgb(19, 63, 51, 40%) | #133f334C | |
rgb(19, 63, 51, 60%) | #133f3399 | |
rgb(19, 63, 51, 80%) | #133f33CC | |
rgb(19, 63, 51, 100%) | #133f33FF |
Saturated and desaturated colors of #133f33
HSL Code | Preview |
---|---|
hsl(164, 10%, 16%) | |
hsl(164, 20%, 16%) | |
hsl(164, 40%, 16%) | |
hsl(164, 60%, 16%) | |
hsl(164, 80%, 16%) | |
hsl(164, 100%, 16%) |
#133f33 Color Usage In CSS
body { color: #133f33; } p { color: rgb(19, 63, 51); } header { border-bottom:1px solid #133f33; }