#1e7003 Color
Color Codes | |
---|---|
Hex Code | #1e7003 |
RGB Code | rgb(30, 112, 03) |
HSL Code | hsl(105, 95%, 23%) |
#1e7003 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(30, 112, 03); }
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(105, 95%, 23%); }
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 #1e7003
RGB Code | Hex Code | Preview |
---|---|---|
rgb(30, 112, 03, 10%) | #1e70031a | |
rgb(30, 112, 03, 20%) | #1e700333 | |
rgb(30, 112, 03, 40%) | #1e70034C | |
rgb(30, 112, 03, 60%) | #1e700399 | |
rgb(30, 112, 03, 80%) | #1e7003CC | |
rgb(30, 112, 03, 100%) | #1e7003FF |
Saturated and desaturated colors of #1e7003
HSL Code | Preview |
---|---|
hsl(105, 10%, 23%) | |
hsl(105, 20%, 23%) | |
hsl(105, 40%, 23%) | |
hsl(105, 60%, 23%) | |
hsl(105, 80%, 23%) | |
hsl(105, 100%, 23%) |
#1e7003 Color Usage In CSS
body { color: #1e7003; } p { color: rgb(30, 112, 03); } header { border-bottom:1px solid #1e7003; }