#f6350d Color
Color Codes | |
---|---|
Hex Code | #f6350d |
RGB Code | rgb(246, 53, 13) |
HSL Code | hsl(10, 93%, 51%) |
#f6350d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 53, 13); }
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(10, 93%, 51%); }
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 #f6350d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 53, 13, 10%) | #f6350d1a | |
rgb(246, 53, 13, 20%) | #f6350d33 | |
rgb(246, 53, 13, 40%) | #f6350d4C | |
rgb(246, 53, 13, 60%) | #f6350d99 | |
rgb(246, 53, 13, 80%) | #f6350dCC | |
rgb(246, 53, 13, 100%) | #f6350dFF |
Saturated and desaturated colors of #f6350d
HSL Code | Preview |
---|---|
hsl(10, 10%, 51%) | |
hsl(10, 20%, 51%) | |
hsl(10, 40%, 51%) | |
hsl(10, 60%, 51%) | |
hsl(10, 80%, 51%) | |
hsl(10, 100%, 51%) |
#f6350d Color Usage In CSS
body { color: #f6350d; } p { color: rgb(246, 53, 13); } header { border-bottom:1px solid #f6350d; }