#0799ea Color
Color Codes | |
---|---|
Hex Code | #0799ea |
RGB Code | rgb(07, 153, 234) |
HSL Code | hsl(201, 94%, 47%) |
#0799ea Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 153, 234); }
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(201, 94%, 47%); }
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 #0799ea
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 153, 234, 10%) | #0799ea1a | |
rgb(07, 153, 234, 20%) | #0799ea33 | |
rgb(07, 153, 234, 40%) | #0799ea4C | |
rgb(07, 153, 234, 60%) | #0799ea99 | |
rgb(07, 153, 234, 80%) | #0799eaCC | |
rgb(07, 153, 234, 100%) | #0799eaFF |
Saturated and desaturated colors of #0799ea
HSL Code | Preview |
---|---|
hsl(201, 10%, 47%) | |
hsl(201, 20%, 47%) | |
hsl(201, 40%, 47%) | |
hsl(201, 60%, 47%) | |
hsl(201, 80%, 47%) | |
hsl(201, 100%, 47%) |
#0799ea Color Usage In CSS
body { color: #0799ea; } p { color: rgb(07, 153, 234); } header { border-bottom:1px solid #0799ea; }