#f90c11 Color
Color Codes | |
---|---|
Hex Code | #f90c11 |
RGB Code | rgb(249, 12, 17) |
HSL Code | hsl(359, 95%, 51%) |
#f90c11 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 12, 17); }
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(359, 95%, 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 #f90c11
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 12, 17, 10%) | #f90c111a | |
rgb(249, 12, 17, 20%) | #f90c1133 | |
rgb(249, 12, 17, 40%) | #f90c114C | |
rgb(249, 12, 17, 60%) | #f90c1199 | |
rgb(249, 12, 17, 80%) | #f90c11CC | |
rgb(249, 12, 17, 100%) | #f90c11FF |
Saturated and desaturated colors of #f90c11
HSL Code | Preview |
---|---|
hsl(359, 10%, 51%) | |
hsl(359, 20%, 51%) | |
hsl(359, 40%, 51%) | |
hsl(359, 60%, 51%) | |
hsl(359, 80%, 51%) | |
hsl(359, 100%, 51%) |
#f90c11 Color Usage In CSS
body { color: #f90c11; } p { color: rgb(249, 12, 17); } header { border-bottom:1px solid #f90c11; }