#383764 Color
Color Codes | |
---|---|
Hex Code | #383764 |
RGB Code | rgb(56, 55, 100) |
HSL Code | hsl(241, 29%, 30%) |
#383764 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 55, 100); }
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(241, 29%, 30%); }
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 #383764
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 55, 100, 10%) | #3837641a | |
rgb(56, 55, 100, 20%) | #38376433 | |
rgb(56, 55, 100, 40%) | #3837644C | |
rgb(56, 55, 100, 60%) | #38376499 | |
rgb(56, 55, 100, 80%) | #383764CC | |
rgb(56, 55, 100, 100%) | #383764FF |
Saturated and desaturated colors of #383764
HSL Code | Preview |
---|---|
hsl(241, 10%, 30%) | |
hsl(241, 20%, 30%) | |
hsl(241, 40%, 30%) | |
hsl(241, 60%, 30%) | |
hsl(241, 80%, 30%) | |
hsl(241, 100%, 30%) |
#383764 Color Usage In CSS
body { color: #383764; } p { color: rgb(56, 55, 100); } header { border-bottom:1px solid #383764; }