#bdf33f Color
Color Codes | |
---|---|
Hex Code | #bdf33f |
RGB Code | rgb(189, 243, 63) |
HSL Code | hsl(78, 88%, 60%) |
#bdf33f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(189, 243, 63); }
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(78, 88%, 60%); }
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 #bdf33f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(189, 243, 63, 10%) | #bdf33f1a | |
rgb(189, 243, 63, 20%) | #bdf33f33 | |
rgb(189, 243, 63, 40%) | #bdf33f4C | |
rgb(189, 243, 63, 60%) | #bdf33f99 | |
rgb(189, 243, 63, 80%) | #bdf33fCC | |
rgb(189, 243, 63, 100%) | #bdf33fFF |
Saturated and desaturated colors of #bdf33f
HSL Code | Preview |
---|---|
hsl(78, 10%, 60%) | |
hsl(78, 20%, 60%) | |
hsl(78, 40%, 60%) | |
hsl(78, 60%, 60%) | |
hsl(78, 80%, 60%) | |
hsl(78, 100%, 60%) |
#bdf33f Color Usage In CSS
body { color: #bdf33f; } p { color: rgb(189, 243, 63); } header { border-bottom:1px solid #bdf33f; }