#1b993a Color
Color Codes | |
---|---|
Hex Code | #1b993a |
RGB Code | rgb(27, 153, 58) |
HSL Code | hsl(135, 70%, 35%) |
#1b993a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(27, 153, 58); }
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(135, 70%, 35%); }
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 #1b993a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(27, 153, 58, 10%) | #1b993a1a | |
rgb(27, 153, 58, 20%) | #1b993a33 | |
rgb(27, 153, 58, 40%) | #1b993a4C | |
rgb(27, 153, 58, 60%) | #1b993a99 | |
rgb(27, 153, 58, 80%) | #1b993aCC | |
rgb(27, 153, 58, 100%) | #1b993aFF |
Saturated and desaturated colors of #1b993a
HSL Code | Preview |
---|---|
hsl(135, 10%, 35%) | |
hsl(135, 20%, 35%) | |
hsl(135, 40%, 35%) | |
hsl(135, 60%, 35%) | |
hsl(135, 80%, 35%) | |
hsl(135, 100%, 35%) |
#1b993a Color Usage In CSS
body { color: #1b993a; } p { color: rgb(27, 153, 58); } header { border-bottom:1px solid #1b993a; }