#245d30 Color
Color Codes | |
---|---|
Hex Code | #245d30 |
RGB Code | rgb(36, 93, 48) |
HSL Code | hsl(133, 44%, 25%) |
#245d30 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(36, 93, 48); }
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(133, 44%, 25%); }
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 #245d30
RGB Code | Hex Code | Preview |
---|---|---|
rgb(36, 93, 48, 10%) | #245d301a | |
rgb(36, 93, 48, 20%) | #245d3033 | |
rgb(36, 93, 48, 40%) | #245d304C | |
rgb(36, 93, 48, 60%) | #245d3099 | |
rgb(36, 93, 48, 80%) | #245d30CC | |
rgb(36, 93, 48, 100%) | #245d30FF |
Saturated and desaturated colors of #245d30
HSL Code | Preview |
---|---|
hsl(133, 10%, 25%) | |
hsl(133, 20%, 25%) | |
hsl(133, 40%, 25%) | |
hsl(133, 60%, 25%) | |
hsl(133, 80%, 25%) | |
hsl(133, 100%, 25%) |
#245d30 Color Usage In CSS
body { color: #245d30; } p { color: rgb(36, 93, 48); } header { border-bottom:1px solid #245d30; }