#fdc255 Color
Color Codes | |
---|---|
Hex Code | #fdc255 |
RGB Code | rgb(253, 194, 85) |
HSL Code | hsl(39, 98%, 66%) |
#fdc255 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 194, 85); }
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, 98%, 66%); }
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 #fdc255
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 194, 85, 10%) | #fdc2551a | |
rgb(253, 194, 85, 20%) | #fdc25533 | |
rgb(253, 194, 85, 40%) | #fdc2554C | |
rgb(253, 194, 85, 60%) | #fdc25599 | |
rgb(253, 194, 85, 80%) | #fdc255CC | |
rgb(253, 194, 85, 100%) | #fdc255FF |
Saturated and desaturated colors of #fdc255
HSL Code | Preview |
---|---|
hsl(39, 10%, 66%) | |
hsl(39, 20%, 66%) | |
hsl(39, 40%, 66%) | |
hsl(39, 60%, 66%) | |
hsl(39, 80%, 66%) | |
hsl(39, 100%, 66%) |
#fdc255 Color Usage In CSS
body { color: #fdc255; } p { color: rgb(253, 194, 85); } header { border-bottom:1px solid #fdc255; }