#1cbeef Color
Color Codes | |
---|---|
Hex Code | #1cbeef |
RGB Code | rgb(28, 190, 239) |
HSL Code | hsl(194, 87%, 52%) |
#1cbeef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(28, 190, 239); }
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(194, 87%, 52%); }
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 #1cbeef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(28, 190, 239, 10%) | #1cbeef1a | |
rgb(28, 190, 239, 20%) | #1cbeef33 | |
rgb(28, 190, 239, 40%) | #1cbeef4C | |
rgb(28, 190, 239, 60%) | #1cbeef99 | |
rgb(28, 190, 239, 80%) | #1cbeefCC | |
rgb(28, 190, 239, 100%) | #1cbeefFF |
Saturated and desaturated colors of #1cbeef
HSL Code | Preview |
---|---|
hsl(194, 10%, 52%) | |
hsl(194, 20%, 52%) | |
hsl(194, 40%, 52%) | |
hsl(194, 60%, 52%) | |
hsl(194, 80%, 52%) | |
hsl(194, 100%, 52%) |
#1cbeef Color Usage In CSS
body { color: #1cbeef; } p { color: rgb(28, 190, 239); } header { border-bottom:1px solid #1cbeef; }