#d68c30 Color
Color Codes | |
---|---|
Hex Code | #d68c30 |
RGB Code | rgb(214, 140, 48) |
HSL Code | hsl(33, 67%, 51%) |
#d68c30 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 140, 48); }
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, 67%, 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 #d68c30
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 140, 48, 10%) | #d68c301a | |
rgb(214, 140, 48, 20%) | #d68c3033 | |
rgb(214, 140, 48, 40%) | #d68c304C | |
rgb(214, 140, 48, 60%) | #d68c3099 | |
rgb(214, 140, 48, 80%) | #d68c30CC | |
rgb(214, 140, 48, 100%) | #d68c30FF |
Saturated and desaturated colors of #d68c30
HSL Code | Preview |
---|---|
hsl(33, 10%, 51%) | |
hsl(33, 20%, 51%) | |
hsl(33, 40%, 51%) | |
hsl(33, 60%, 51%) | |
hsl(33, 80%, 51%) | |
hsl(33, 100%, 51%) |
#d68c30 Color Usage In CSS
body { color: #d68c30; } p { color: rgb(214, 140, 48); } header { border-bottom:1px solid #d68c30; }