#c11234 Color
Color Codes | |
---|---|
Hex Code | #c11234 |
RGB Code | rgb(193, 18, 52) |
HSL Code | hsl(348, 83%, 41%) |
#c11234 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 18, 52); }
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, 83%, 41%); }
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 #c11234
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 18, 52, 10%) | #c112341a | |
rgb(193, 18, 52, 20%) | #c1123433 | |
rgb(193, 18, 52, 40%) | #c112344C | |
rgb(193, 18, 52, 60%) | #c1123499 | |
rgb(193, 18, 52, 80%) | #c11234CC | |
rgb(193, 18, 52, 100%) | #c11234FF |
Saturated and desaturated colors of #c11234
HSL Code | Preview |
---|---|
hsl(348, 10%, 41%) | |
hsl(348, 20%, 41%) | |
hsl(348, 40%, 41%) | |
hsl(348, 60%, 41%) | |
hsl(348, 80%, 41%) | |
hsl(348, 100%, 41%) |
#c11234 Color Usage In CSS
body { color: #c11234; } p { color: rgb(193, 18, 52); } header { border-bottom:1px solid #c11234; }