#fd9606 Color
Color Codes | |
---|---|
Hex Code | #fd9606 |
RGB Code | rgb(253, 150, 06) |
HSL Code | hsl(35, 98%, 51%) |
#fd9606 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 150, 06); }
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(35, 98%, 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 #fd9606
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 150, 06, 10%) | #fd96061a | |
rgb(253, 150, 06, 20%) | #fd960633 | |
rgb(253, 150, 06, 40%) | #fd96064C | |
rgb(253, 150, 06, 60%) | #fd960699 | |
rgb(253, 150, 06, 80%) | #fd9606CC | |
rgb(253, 150, 06, 100%) | #fd9606FF |
Saturated and desaturated colors of #fd9606
HSL Code | Preview |
---|---|
hsl(35, 10%, 51%) | |
hsl(35, 20%, 51%) | |
hsl(35, 40%, 51%) | |
hsl(35, 60%, 51%) | |
hsl(35, 80%, 51%) | |
hsl(35, 100%, 51%) |
#fd9606 Color Usage In CSS
body { color: #fd9606; } p { color: rgb(253, 150, 06); } header { border-bottom:1px solid #fd9606; }