#c95353 Color
Color Codes | |
---|---|
Hex Code | #c95353 |
RGB Code | rgb(201, 83, 83) |
HSL Code | hsl(0, 52%, 56%) |
#c95353 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 83, 83); }
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(0, 52%, 56%); }
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 #c95353
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 83, 83, 10%) | #c953531a | |
rgb(201, 83, 83, 20%) | #c9535333 | |
rgb(201, 83, 83, 40%) | #c953534C | |
rgb(201, 83, 83, 60%) | #c9535399 | |
rgb(201, 83, 83, 80%) | #c95353CC | |
rgb(201, 83, 83, 100%) | #c95353FF |
Saturated and desaturated colors of #c95353
HSL Code | Preview |
---|---|
hsl(0, 10%, 56%) | |
hsl(0, 20%, 56%) | |
hsl(0, 40%, 56%) | |
hsl(0, 60%, 56%) | |
hsl(0, 80%, 56%) | |
hsl(0, 100%, 56%) |
#c95353 Color Usage In CSS
body { color: #c95353; } p { color: rgb(201, 83, 83); } header { border-bottom:1px solid #c95353; }