#f55300 Color
Color Codes | |
---|---|
Hex Code | #f55300 |
RGB Code | rgb(245, 83, 00) |
HSL Code | hsl(20, 100%, 48%) |
#f55300 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(245, 83, 00); }
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(20, 100%, 48%); }
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 #f55300
RGB Code | Hex Code | Preview |
---|---|---|
rgb(245, 83, 00, 10%) | #f553001a | |
rgb(245, 83, 00, 20%) | #f5530033 | |
rgb(245, 83, 00, 40%) | #f553004C | |
rgb(245, 83, 00, 60%) | #f5530099 | |
rgb(245, 83, 00, 80%) | #f55300CC | |
rgb(245, 83, 00, 100%) | #f55300FF |
Saturated and desaturated colors of #f55300
HSL Code | Preview |
---|---|
hsl(20, 10%, 48%) | |
hsl(20, 20%, 48%) | |
hsl(20, 40%, 48%) | |
hsl(20, 60%, 48%) | |
hsl(20, 80%, 48%) | |
hsl(20, 100%, 48%) |
#f55300 Color Usage In CSS
body { color: #f55300; } p { color: rgb(245, 83, 00); } header { border-bottom:1px solid #f55300; }