#1293ca Color
Color Codes | |
---|---|
Hex Code | #1293ca |
RGB Code | rgb(18, 147, 202) |
HSL Code | hsl(198, 84%, 43%) |
#1293ca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(18, 147, 202); }
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(198, 84%, 43%); }
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 #1293ca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(18, 147, 202, 10%) | #1293ca1a | |
rgb(18, 147, 202, 20%) | #1293ca33 | |
rgb(18, 147, 202, 40%) | #1293ca4C | |
rgb(18, 147, 202, 60%) | #1293ca99 | |
rgb(18, 147, 202, 80%) | #1293caCC | |
rgb(18, 147, 202, 100%) | #1293caFF |
Saturated and desaturated colors of #1293ca
HSL Code | Preview |
---|---|
hsl(198, 10%, 43%) | |
hsl(198, 20%, 43%) | |
hsl(198, 40%, 43%) | |
hsl(198, 60%, 43%) | |
hsl(198, 80%, 43%) | |
hsl(198, 100%, 43%) |
#1293ca Color Usage In CSS
body { color: #1293ca; } p { color: rgb(18, 147, 202); } header { border-bottom:1px solid #1293ca; }