#4358b5 Color
Color Codes | |
---|---|
Hex Code | #4358b5 |
RGB Code | rgb(67, 88, 181) |
HSL Code | hsl(229, 46%, 49%) |
#4358b5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(67, 88, 181); }
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(229, 46%, 49%); }
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 #4358b5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(67, 88, 181, 10%) | #4358b51a | |
rgb(67, 88, 181, 20%) | #4358b533 | |
rgb(67, 88, 181, 40%) | #4358b54C | |
rgb(67, 88, 181, 60%) | #4358b599 | |
rgb(67, 88, 181, 80%) | #4358b5CC | |
rgb(67, 88, 181, 100%) | #4358b5FF |
Saturated and desaturated colors of #4358b5
HSL Code | Preview |
---|---|
hsl(229, 10%, 49%) | |
hsl(229, 20%, 49%) | |
hsl(229, 40%, 49%) | |
hsl(229, 60%, 49%) | |
hsl(229, 80%, 49%) | |
hsl(229, 100%, 49%) |
#4358b5 Color Usage In CSS
body { color: #4358b5; } p { color: rgb(67, 88, 181); } header { border-bottom:1px solid #4358b5; }