#69a0fb Color
Color Codes | |
---|---|
Hex Code | #69a0fb |
RGB Code | rgb(105, 160, 251) |
HSL Code | hsl(217, 95%, 70%) |
#69a0fb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 160, 251); }
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(217, 95%, 70%); }
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 #69a0fb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 160, 251, 10%) | #69a0fb1a | |
rgb(105, 160, 251, 20%) | #69a0fb33 | |
rgb(105, 160, 251, 40%) | #69a0fb4C | |
rgb(105, 160, 251, 60%) | #69a0fb99 | |
rgb(105, 160, 251, 80%) | #69a0fbCC | |
rgb(105, 160, 251, 100%) | #69a0fbFF |
Saturated and desaturated colors of #69a0fb
HSL Code | Preview |
---|---|
hsl(217, 10%, 70%) | |
hsl(217, 20%, 70%) | |
hsl(217, 40%, 70%) | |
hsl(217, 60%, 70%) | |
hsl(217, 80%, 70%) | |
hsl(217, 100%, 70%) |
#69a0fb Color Usage In CSS
body { color: #69a0fb; } p { color: rgb(105, 160, 251); } header { border-bottom:1px solid #69a0fb; }