#f6a53f Color
Color Codes | |
---|---|
Hex Code | #f6a53f |
RGB Code | rgb(246, 165, 63) |
HSL Code | hsl(33, 91%, 61%) |
#f6a53f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 165, 63); }
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(33, 91%, 61%); }
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 #f6a53f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 165, 63, 10%) | #f6a53f1a | |
rgb(246, 165, 63, 20%) | #f6a53f33 | |
rgb(246, 165, 63, 40%) | #f6a53f4C | |
rgb(246, 165, 63, 60%) | #f6a53f99 | |
rgb(246, 165, 63, 80%) | #f6a53fCC | |
rgb(246, 165, 63, 100%) | #f6a53fFF |
Saturated and desaturated colors of #f6a53f
HSL Code | Preview |
---|---|
hsl(33, 10%, 61%) | |
hsl(33, 20%, 61%) | |
hsl(33, 40%, 61%) | |
hsl(33, 60%, 61%) | |
hsl(33, 80%, 61%) | |
hsl(33, 100%, 61%) |
#f6a53f Color Usage In CSS
body { color: #f6a53f; } p { color: rgb(246, 165, 63); } header { border-bottom:1px solid #f6a53f; }