#fae16f Color
Color Codes | |
---|---|
Hex Code | #fae16f |
RGB Code | rgb(250, 225, 111) |
HSL Code | hsl(49, 93%, 71%) |
#fae16f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 225, 111); }
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(49, 93%, 71%); }
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 #fae16f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 225, 111, 10%) | #fae16f1a | |
rgb(250, 225, 111, 20%) | #fae16f33 | |
rgb(250, 225, 111, 40%) | #fae16f4C | |
rgb(250, 225, 111, 60%) | #fae16f99 | |
rgb(250, 225, 111, 80%) | #fae16fCC | |
rgb(250, 225, 111, 100%) | #fae16fFF |
Saturated and desaturated colors of #fae16f
HSL Code | Preview |
---|---|
hsl(49, 10%, 71%) | |
hsl(49, 20%, 71%) | |
hsl(49, 40%, 71%) | |
hsl(49, 60%, 71%) | |
hsl(49, 80%, 71%) | |
hsl(49, 100%, 71%) |
#fae16f Color Usage In CSS
body { color: #fae16f; } p { color: rgb(250, 225, 111); } header { border-bottom:1px solid #fae16f; }