#2546e6 Color
Color Codes | |
---|---|
Hex Code | #2546e6 |
RGB Code | rgb(37, 70, 230) |
HSL Code | hsl(230, 79%, 52%) |
#2546e6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(37, 70, 230); }
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(230, 79%, 52%); }
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 #2546e6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(37, 70, 230, 10%) | #2546e61a | |
rgb(37, 70, 230, 20%) | #2546e633 | |
rgb(37, 70, 230, 40%) | #2546e64C | |
rgb(37, 70, 230, 60%) | #2546e699 | |
rgb(37, 70, 230, 80%) | #2546e6CC | |
rgb(37, 70, 230, 100%) | #2546e6FF |
Saturated and desaturated colors of #2546e6
HSL Code | Preview |
---|---|
hsl(230, 10%, 52%) | |
hsl(230, 20%, 52%) | |
hsl(230, 40%, 52%) | |
hsl(230, 60%, 52%) | |
hsl(230, 80%, 52%) | |
hsl(230, 100%, 52%) |
#2546e6 Color Usage In CSS
body { color: #2546e6; } p { color: rgb(37, 70, 230); } header { border-bottom:1px solid #2546e6; }