#3e4ae8 Color
Color Codes | |
---|---|
Hex Code | #3e4ae8 |
RGB Code | rgb(62, 74, 232) |
HSL Code | hsl(236, 79%, 58%) |
#3e4ae8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 74, 232); }
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(236, 79%, 58%); }
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 #3e4ae8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 74, 232, 10%) | #3e4ae81a | |
rgb(62, 74, 232, 20%) | #3e4ae833 | |
rgb(62, 74, 232, 40%) | #3e4ae84C | |
rgb(62, 74, 232, 60%) | #3e4ae899 | |
rgb(62, 74, 232, 80%) | #3e4ae8CC | |
rgb(62, 74, 232, 100%) | #3e4ae8FF |
Saturated and desaturated colors of #3e4ae8
HSL Code | Preview |
---|---|
hsl(236, 10%, 58%) | |
hsl(236, 20%, 58%) | |
hsl(236, 40%, 58%) | |
hsl(236, 60%, 58%) | |
hsl(236, 80%, 58%) | |
hsl(236, 100%, 58%) |
#3e4ae8 Color Usage In CSS
body { color: #3e4ae8; } p { color: rgb(62, 74, 232); } header { border-bottom:1px solid #3e4ae8; }