#f37d13 Color
Color Codes | |
---|---|
Hex Code | #f37d13 |
RGB Code | rgb(243, 125, 19) |
HSL Code | hsl(28, 90%, 51%) |
#f37d13 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 125, 19); }
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(28, 90%, 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 #f37d13
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 125, 19, 10%) | #f37d131a | |
rgb(243, 125, 19, 20%) | #f37d1333 | |
rgb(243, 125, 19, 40%) | #f37d134C | |
rgb(243, 125, 19, 60%) | #f37d1399 | |
rgb(243, 125, 19, 80%) | #f37d13CC | |
rgb(243, 125, 19, 100%) | #f37d13FF |
Saturated and desaturated colors of #f37d13
HSL Code | Preview |
---|---|
hsl(28, 10%, 51%) | |
hsl(28, 20%, 51%) | |
hsl(28, 40%, 51%) | |
hsl(28, 60%, 51%) | |
hsl(28, 80%, 51%) | |
hsl(28, 100%, 51%) |
#f37d13 Color Usage In CSS
body { color: #f37d13; } p { color: rgb(243, 125, 19); } header { border-bottom:1px solid #f37d13; }