#68223e Color
Color Codes | |
---|---|
Hex Code | #68223e |
RGB Code | rgb(104, 34, 62) |
HSL Code | hsl(336, 51%, 27%) |
#68223e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(104, 34, 62); }
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(336, 51%, 27%); }
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 #68223e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(104, 34, 62, 10%) | #68223e1a | |
rgb(104, 34, 62, 20%) | #68223e33 | |
rgb(104, 34, 62, 40%) | #68223e4C | |
rgb(104, 34, 62, 60%) | #68223e99 | |
rgb(104, 34, 62, 80%) | #68223eCC | |
rgb(104, 34, 62, 100%) | #68223eFF |
Saturated and desaturated colors of #68223e
HSL Code | Preview |
---|---|
hsl(336, 10%, 27%) | |
hsl(336, 20%, 27%) | |
hsl(336, 40%, 27%) | |
hsl(336, 60%, 27%) | |
hsl(336, 80%, 27%) | |
hsl(336, 100%, 27%) |
#68223e Color Usage In CSS
body { color: #68223e; } p { color: rgb(104, 34, 62); } header { border-bottom:1px solid #68223e; }