#0180f3 Color
Color Codes | |
---|---|
Hex Code | #0180f3 |
RGB Code | rgb(01, 128, 243) |
HSL Code | hsl(209, 99%, 48%) |
#0180f3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 128, 243); }
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(209, 99%, 48%); }
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 #0180f3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 128, 243, 10%) | #0180f31a | |
rgb(01, 128, 243, 20%) | #0180f333 | |
rgb(01, 128, 243, 40%) | #0180f34C | |
rgb(01, 128, 243, 60%) | #0180f399 | |
rgb(01, 128, 243, 80%) | #0180f3CC | |
rgb(01, 128, 243, 100%) | #0180f3FF |
Saturated and desaturated colors of #0180f3
HSL Code | Preview |
---|---|
hsl(209, 10%, 48%) | |
hsl(209, 20%, 48%) | |
hsl(209, 40%, 48%) | |
hsl(209, 60%, 48%) | |
hsl(209, 80%, 48%) | |
hsl(209, 100%, 48%) |
#0180f3 Color Usage In CSS
body { color: #0180f3; } p { color: rgb(01, 128, 243); } header { border-bottom:1px solid #0180f3; }