#eda326 Color
Color Codes | |
---|---|
Hex Code | #eda326 |
RGB Code | rgb(237, 163, 38) |
HSL Code | hsl(38, 85%, 54%) |
#eda326 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(237, 163, 38); }
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(38, 85%, 54%); }
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 #eda326
RGB Code | Hex Code | Preview |
---|---|---|
rgb(237, 163, 38, 10%) | #eda3261a | |
rgb(237, 163, 38, 20%) | #eda32633 | |
rgb(237, 163, 38, 40%) | #eda3264C | |
rgb(237, 163, 38, 60%) | #eda32699 | |
rgb(237, 163, 38, 80%) | #eda326CC | |
rgb(237, 163, 38, 100%) | #eda326FF |
Saturated and desaturated colors of #eda326
HSL Code | Preview |
---|---|
hsl(38, 10%, 54%) | |
hsl(38, 20%, 54%) | |
hsl(38, 40%, 54%) | |
hsl(38, 60%, 54%) | |
hsl(38, 80%, 54%) | |
hsl(38, 100%, 54%) |
#eda326 Color Usage In CSS
body { color: #eda326; } p { color: rgb(237, 163, 38); } header { border-bottom:1px solid #eda326; }