#7791df Color
Color Codes | |
---|---|
Hex Code | #7791df |
RGB Code | rgb(119, 145, 223) |
HSL Code | hsl(225, 62%, 67%) |
#7791df Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 145, 223); }
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(225, 62%, 67%); }
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 #7791df
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 145, 223, 10%) | #7791df1a | |
rgb(119, 145, 223, 20%) | #7791df33 | |
rgb(119, 145, 223, 40%) | #7791df4C | |
rgb(119, 145, 223, 60%) | #7791df99 | |
rgb(119, 145, 223, 80%) | #7791dfCC | |
rgb(119, 145, 223, 100%) | #7791dfFF |
Saturated and desaturated colors of #7791df
HSL Code | Preview |
---|---|
hsl(225, 10%, 67%) | |
hsl(225, 20%, 67%) | |
hsl(225, 40%, 67%) | |
hsl(225, 60%, 67%) | |
hsl(225, 80%, 67%) | |
hsl(225, 100%, 67%) |
#7791df Color Usage In CSS
body { color: #7791df; } p { color: rgb(119, 145, 223); } header { border-bottom:1px solid #7791df; }