#fca300 Color
Color Codes | |
---|---|
Hex Code | #fca300 |
RGB Code | rgb(252, 163, 00) |
HSL Code | hsl(39, 100%, 49%) |
#fca300 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(252, 163, 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(39, 100%, 49%); }
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 #fca300
RGB Code | Hex Code | Preview |
---|---|---|
rgb(252, 163, 00, 10%) | #fca3001a | |
rgb(252, 163, 00, 20%) | #fca30033 | |
rgb(252, 163, 00, 40%) | #fca3004C | |
rgb(252, 163, 00, 60%) | #fca30099 | |
rgb(252, 163, 00, 80%) | #fca300CC | |
rgb(252, 163, 00, 100%) | #fca300FF |
Saturated and desaturated colors of #fca300
HSL Code | Preview |
---|---|
hsl(39, 10%, 49%) | |
hsl(39, 20%, 49%) | |
hsl(39, 40%, 49%) | |
hsl(39, 60%, 49%) | |
hsl(39, 80%, 49%) | |
hsl(39, 100%, 49%) |
#fca300 Color Usage In CSS
body { color: #fca300; } p { color: rgb(252, 163, 00); } header { border-bottom:1px solid #fca300; }