#ddf375 Color
Color Codes | |
---|---|
Hex Code | #ddf375 |
RGB Code | rgb(221, 243, 117) |
HSL Code | hsl(70, 84%, 71%) |
#ddf375 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(221, 243, 117); }
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(70, 84%, 71%); }
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 #ddf375
RGB Code | Hex Code | Preview |
---|---|---|
rgb(221, 243, 117, 10%) | #ddf3751a | |
rgb(221, 243, 117, 20%) | #ddf37533 | |
rgb(221, 243, 117, 40%) | #ddf3754C | |
rgb(221, 243, 117, 60%) | #ddf37599 | |
rgb(221, 243, 117, 80%) | #ddf375CC | |
rgb(221, 243, 117, 100%) | #ddf375FF |
Saturated and desaturated colors of #ddf375
HSL Code | Preview |
---|---|
hsl(70, 10%, 71%) | |
hsl(70, 20%, 71%) | |
hsl(70, 40%, 71%) | |
hsl(70, 60%, 71%) | |
hsl(70, 80%, 71%) | |
hsl(70, 100%, 71%) |
#ddf375 Color Usage In CSS
body { color: #ddf375; } p { color: rgb(221, 243, 117); } header { border-bottom:1px solid #ddf375; }