#f6da03 Color
Color Codes | |
---|---|
Hex Code | #f6da03 |
RGB Code | rgb(246, 218, 03) |
HSL Code | hsl(53, 98%, 49%) |
#f6da03 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 218, 03); }
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(53, 98%, 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 #f6da03
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 218, 03, 10%) | #f6da031a | |
rgb(246, 218, 03, 20%) | #f6da0333 | |
rgb(246, 218, 03, 40%) | #f6da034C | |
rgb(246, 218, 03, 60%) | #f6da0399 | |
rgb(246, 218, 03, 80%) | #f6da03CC | |
rgb(246, 218, 03, 100%) | #f6da03FF |
Saturated and desaturated colors of #f6da03
HSL Code | Preview |
---|---|
hsl(53, 10%, 49%) | |
hsl(53, 20%, 49%) | |
hsl(53, 40%, 49%) | |
hsl(53, 60%, 49%) | |
hsl(53, 80%, 49%) | |
hsl(53, 100%, 49%) |
#f6da03 Color Usage In CSS
body { color: #f6da03; } p { color: rgb(246, 218, 03); } header { border-bottom:1px solid #f6da03; }