#38acfd Color
Color Codes | |
---|---|
Hex Code | #38acfd |
RGB Code | rgb(56, 172, 253) |
HSL Code | hsl(205, 98%, 61%) |
#38acfd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 172, 253); }
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(205, 98%, 61%); }
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 #38acfd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 172, 253, 10%) | #38acfd1a | |
rgb(56, 172, 253, 20%) | #38acfd33 | |
rgb(56, 172, 253, 40%) | #38acfd4C | |
rgb(56, 172, 253, 60%) | #38acfd99 | |
rgb(56, 172, 253, 80%) | #38acfdCC | |
rgb(56, 172, 253, 100%) | #38acfdFF |
Saturated and desaturated colors of #38acfd
HSL Code | Preview |
---|---|
hsl(205, 10%, 61%) | |
hsl(205, 20%, 61%) | |
hsl(205, 40%, 61%) | |
hsl(205, 60%, 61%) | |
hsl(205, 80%, 61%) | |
hsl(205, 100%, 61%) |
#38acfd Color Usage In CSS
body { color: #38acfd; } p { color: rgb(56, 172, 253); } header { border-bottom:1px solid #38acfd; }