#1d9de2 Color
Color Codes | |
---|---|
Hex Code | #1d9de2 |
RGB Code | rgb(29, 157, 226) |
HSL Code | hsl(201, 77%, 50%) |
#1d9de2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(29, 157, 226); }
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, 77%, 50%); }
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 #1d9de2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(29, 157, 226, 10%) | #1d9de21a | |
rgb(29, 157, 226, 20%) | #1d9de233 | |
rgb(29, 157, 226, 40%) | #1d9de24C | |
rgb(29, 157, 226, 60%) | #1d9de299 | |
rgb(29, 157, 226, 80%) | #1d9de2CC | |
rgb(29, 157, 226, 100%) | #1d9de2FF |
Saturated and desaturated colors of #1d9de2
HSL Code | Preview |
---|---|
hsl(201, 10%, 50%) | |
hsl(201, 20%, 50%) | |
hsl(201, 40%, 50%) | |
hsl(201, 60%, 50%) | |
hsl(201, 80%, 50%) | |
hsl(201, 100%, 50%) |
#1d9de2 Color Usage In CSS
body { color: #1d9de2; } p { color: rgb(29, 157, 226); } header { border-bottom:1px solid #1d9de2; }