#f3b213 Color
Color Codes | |
---|---|
Hex Code | #f3b213 |
RGB Code | rgb(243, 178, 19) |
HSL Code | hsl(43, 90%, 51%) |
#f3b213 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 178, 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(43, 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 #f3b213
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 178, 19, 10%) | #f3b2131a | |
rgb(243, 178, 19, 20%) | #f3b21333 | |
rgb(243, 178, 19, 40%) | #f3b2134C | |
rgb(243, 178, 19, 60%) | #f3b21399 | |
rgb(243, 178, 19, 80%) | #f3b213CC | |
rgb(243, 178, 19, 100%) | #f3b213FF |
Saturated and desaturated colors of #f3b213
HSL Code | Preview |
---|---|
hsl(43, 10%, 51%) | |
hsl(43, 20%, 51%) | |
hsl(43, 40%, 51%) | |
hsl(43, 60%, 51%) | |
hsl(43, 80%, 51%) | |
hsl(43, 100%, 51%) |
#f3b213 Color Usage In CSS
body { color: #f3b213; } p { color: rgb(243, 178, 19); } header { border-bottom:1px solid #f3b213; }