#6e1023 Color
Color Codes | |
---|---|
Hex Code | #6e1023 |
RGB Code | rgb(110, 16, 35) |
HSL Code | hsl(348, 75%, 25%) |
#6e1023 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(110, 16, 35); }
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(348, 75%, 25%); }
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 #6e1023
RGB Code | Hex Code | Preview |
---|---|---|
rgb(110, 16, 35, 10%) | #6e10231a | |
rgb(110, 16, 35, 20%) | #6e102333 | |
rgb(110, 16, 35, 40%) | #6e10234C | |
rgb(110, 16, 35, 60%) | #6e102399 | |
rgb(110, 16, 35, 80%) | #6e1023CC | |
rgb(110, 16, 35, 100%) | #6e1023FF |
Saturated and desaturated colors of #6e1023
HSL Code | Preview |
---|---|
hsl(348, 10%, 25%) | |
hsl(348, 20%, 25%) | |
hsl(348, 40%, 25%) | |
hsl(348, 60%, 25%) | |
hsl(348, 80%, 25%) | |
hsl(348, 100%, 25%) |
#6e1023 Color Usage In CSS
body { color: #6e1023; } p { color: rgb(110, 16, 35); } header { border-bottom:1px solid #6e1023; }