#1e9a81 Color
Color Codes | |
---|---|
Hex Code | #1e9a81 |
RGB Code | rgb(30, 154, 129) |
HSL Code | hsl(168, 67%, 36%) |
#1e9a81 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(30, 154, 129); }
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(168, 67%, 36%); }
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 #1e9a81
RGB Code | Hex Code | Preview |
---|---|---|
rgb(30, 154, 129, 10%) | #1e9a811a | |
rgb(30, 154, 129, 20%) | #1e9a8133 | |
rgb(30, 154, 129, 40%) | #1e9a814C | |
rgb(30, 154, 129, 60%) | #1e9a8199 | |
rgb(30, 154, 129, 80%) | #1e9a81CC | |
rgb(30, 154, 129, 100%) | #1e9a81FF |
Saturated and desaturated colors of #1e9a81
HSL Code | Preview |
---|---|
hsl(168, 10%, 36%) | |
hsl(168, 20%, 36%) | |
hsl(168, 40%, 36%) | |
hsl(168, 60%, 36%) | |
hsl(168, 80%, 36%) | |
hsl(168, 100%, 36%) |
#1e9a81 Color Usage In CSS
body { color: #1e9a81; } p { color: rgb(30, 154, 129); } header { border-bottom:1px solid #1e9a81; }