#dff014 Color
Color Codes | |
---|---|
Hex Code | #dff014 |
RGB Code | rgb(223, 240, 20) |
HSL Code | hsl(65, 88%, 51%) |
#dff014 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 240, 20); }
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(65, 88%, 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 #dff014
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 240, 20, 10%) | #dff0141a | |
rgb(223, 240, 20, 20%) | #dff01433 | |
rgb(223, 240, 20, 40%) | #dff0144C | |
rgb(223, 240, 20, 60%) | #dff01499 | |
rgb(223, 240, 20, 80%) | #dff014CC | |
rgb(223, 240, 20, 100%) | #dff014FF |
Saturated and desaturated colors of #dff014
HSL Code | Preview |
---|---|
hsl(65, 10%, 51%) | |
hsl(65, 20%, 51%) | |
hsl(65, 40%, 51%) | |
hsl(65, 60%, 51%) | |
hsl(65, 80%, 51%) | |
hsl(65, 100%, 51%) |
#dff014 Color Usage In CSS
body { color: #dff014; } p { color: rgb(223, 240, 20); } header { border-bottom:1px solid #dff014; }