#ceb600 Color
Color Codes | |
---|---|
Hex Code | #ceb600 |
RGB Code | rgb(206, 182, 00) |
HSL Code | hsl(53, 100%, 40%) |
#ceb600 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 182, 00); }
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(53, 100%, 40%); }
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 #ceb600
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 182, 00, 10%) | #ceb6001a | |
rgb(206, 182, 00, 20%) | #ceb60033 | |
rgb(206, 182, 00, 40%) | #ceb6004C | |
rgb(206, 182, 00, 60%) | #ceb60099 | |
rgb(206, 182, 00, 80%) | #ceb600CC | |
rgb(206, 182, 00, 100%) | #ceb600FF |
Saturated and desaturated colors of #ceb600
HSL Code | Preview |
---|---|
hsl(53, 10%, 40%) | |
hsl(53, 20%, 40%) | |
hsl(53, 40%, 40%) | |
hsl(53, 60%, 40%) | |
hsl(53, 80%, 40%) | |
hsl(53, 100%, 40%) |
#ceb600 Color Usage In CSS
body { color: #ceb600; } p { color: rgb(206, 182, 00); } header { border-bottom:1px solid #ceb600; }