#257833 Color
Color Codes | |
---|---|
Hex Code | #257833 |
RGB Code | rgb(37, 120, 51) |
HSL Code | hsl(130, 53%, 31%) |
#257833 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(37, 120, 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(130, 53%, 31%); }
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 #257833
RGB Code | Hex Code | Preview |
---|---|---|
rgb(37, 120, 51, 10%) | #2578331a | |
rgb(37, 120, 51, 20%) | #25783333 | |
rgb(37, 120, 51, 40%) | #2578334C | |
rgb(37, 120, 51, 60%) | #25783399 | |
rgb(37, 120, 51, 80%) | #257833CC | |
rgb(37, 120, 51, 100%) | #257833FF |
Saturated and desaturated colors of #257833
HSL Code | Preview |
---|---|
hsl(130, 10%, 31%) | |
hsl(130, 20%, 31%) | |
hsl(130, 40%, 31%) | |
hsl(130, 60%, 31%) | |
hsl(130, 80%, 31%) | |
hsl(130, 100%, 31%) |
#257833 Color Usage In CSS
body { color: #257833; } p { color: rgb(37, 120, 51); } header { border-bottom:1px solid #257833; }