#dcce23 Color
Color Codes | |
---|---|
Hex Code | #dcce23 |
RGB Code | rgb(220, 206, 35) |
HSL Code | hsl(55, 73%, 50%) |
#dcce23 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(220, 206, 35); }
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(55, 73%, 50%); }
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 #dcce23
RGB Code | Hex Code | Preview |
---|---|---|
rgb(220, 206, 35, 10%) | #dcce231a | |
rgb(220, 206, 35, 20%) | #dcce2333 | |
rgb(220, 206, 35, 40%) | #dcce234C | |
rgb(220, 206, 35, 60%) | #dcce2399 | |
rgb(220, 206, 35, 80%) | #dcce23CC | |
rgb(220, 206, 35, 100%) | #dcce23FF |
Saturated and desaturated colors of #dcce23
HSL Code | Preview |
---|---|
hsl(55, 10%, 50%) | |
hsl(55, 20%, 50%) | |
hsl(55, 40%, 50%) | |
hsl(55, 60%, 50%) | |
hsl(55, 80%, 50%) | |
hsl(55, 100%, 50%) |
#dcce23 Color Usage In CSS
body { color: #dcce23; } p { color: rgb(220, 206, 35); } header { border-bottom:1px solid #dcce23; }