#c25125 Color
Color Codes | |
---|---|
Hex Code | #c25125 |
RGB Code | rgb(194, 81, 37) |
HSL Code | hsl(17, 68%, 45%) |
#c25125 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(194, 81, 37); }
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(17, 68%, 45%); }
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 #c25125
RGB Code | Hex Code | Preview |
---|---|---|
rgb(194, 81, 37, 10%) | #c251251a | |
rgb(194, 81, 37, 20%) | #c2512533 | |
rgb(194, 81, 37, 40%) | #c251254C | |
rgb(194, 81, 37, 60%) | #c2512599 | |
rgb(194, 81, 37, 80%) | #c25125CC | |
rgb(194, 81, 37, 100%) | #c25125FF |
Saturated and desaturated colors of #c25125
HSL Code | Preview |
---|---|
hsl(17, 10%, 45%) | |
hsl(17, 20%, 45%) | |
hsl(17, 40%, 45%) | |
hsl(17, 60%, 45%) | |
hsl(17, 80%, 45%) | |
hsl(17, 100%, 45%) |
#c25125 Color Usage In CSS
body { color: #c25125; } p { color: rgb(194, 81, 37); } header { border-bottom:1px solid #c25125; }