#3a6aec Color
Color Codes | |
---|---|
Hex Code | #3a6aec |
RGB Code | rgb(58, 106, 236) |
HSL Code | hsl(224, 82%, 58%) |
#3a6aec Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(58, 106, 236); }
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(224, 82%, 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 #3a6aec
RGB Code | Hex Code | Preview |
---|---|---|
rgb(58, 106, 236, 10%) | #3a6aec1a | |
rgb(58, 106, 236, 20%) | #3a6aec33 | |
rgb(58, 106, 236, 40%) | #3a6aec4C | |
rgb(58, 106, 236, 60%) | #3a6aec99 | |
rgb(58, 106, 236, 80%) | #3a6aecCC | |
rgb(58, 106, 236, 100%) | #3a6aecFF |
Saturated and desaturated colors of #3a6aec
HSL Code | Preview |
---|---|
hsl(224, 10%, 58%) | |
hsl(224, 20%, 58%) | |
hsl(224, 40%, 58%) | |
hsl(224, 60%, 58%) | |
hsl(224, 80%, 58%) | |
hsl(224, 100%, 58%) |
#3a6aec Color Usage In CSS
body { color: #3a6aec; } p { color: rgb(58, 106, 236); } header { border-bottom:1px solid #3a6aec; }