#bae378 Color
Color Codes | |
---|---|
Hex Code | #bae378 |
RGB Code | rgb(186, 227, 120) |
HSL Code | hsl(83, 66%, 68%) |
#bae378 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(186, 227, 120); }
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(83, 66%, 68%); }
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 #bae378
RGB Code | Hex Code | Preview |
---|---|---|
rgb(186, 227, 120, 10%) | #bae3781a | |
rgb(186, 227, 120, 20%) | #bae37833 | |
rgb(186, 227, 120, 40%) | #bae3784C | |
rgb(186, 227, 120, 60%) | #bae37899 | |
rgb(186, 227, 120, 80%) | #bae378CC | |
rgb(186, 227, 120, 100%) | #bae378FF |
Saturated and desaturated colors of #bae378
HSL Code | Preview |
---|---|
hsl(83, 10%, 68%) | |
hsl(83, 20%, 68%) | |
hsl(83, 40%, 68%) | |
hsl(83, 60%, 68%) | |
hsl(83, 80%, 68%) | |
hsl(83, 100%, 68%) |
#bae378 Color Usage In CSS
body { color: #bae378; } p { color: rgb(186, 227, 120); } header { border-bottom:1px solid #bae378; }