#223f2e Color
Color Codes | |
---|---|
Hex Code | #223f2e |
RGB Code | rgb(34, 63, 46) |
HSL Code | hsl(145, 30%, 19%) |
#223f2e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(34, 63, 46); }
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(145, 30%, 19%); }
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 #223f2e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(34, 63, 46, 10%) | #223f2e1a | |
rgb(34, 63, 46, 20%) | #223f2e33 | |
rgb(34, 63, 46, 40%) | #223f2e4C | |
rgb(34, 63, 46, 60%) | #223f2e99 | |
rgb(34, 63, 46, 80%) | #223f2eCC | |
rgb(34, 63, 46, 100%) | #223f2eFF |
Saturated and desaturated colors of #223f2e
HSL Code | Preview |
---|---|
hsl(145, 10%, 19%) | |
hsl(145, 20%, 19%) | |
hsl(145, 40%, 19%) | |
hsl(145, 60%, 19%) | |
hsl(145, 80%, 19%) | |
hsl(145, 100%, 19%) |
#223f2e Color Usage In CSS
body { color: #223f2e; } p { color: rgb(34, 63, 46); } header { border-bottom:1px solid #223f2e; }