#c1fb17 Color
Color Codes | |
---|---|
Hex Code | #c1fb17 |
RGB Code | rgb(193, 251, 23) |
HSL Code | hsl(75, 97%, 54%) |
#c1fb17 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 251, 23); }
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(75, 97%, 54%); }
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 #c1fb17
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 251, 23, 10%) | #c1fb171a | |
rgb(193, 251, 23, 20%) | #c1fb1733 | |
rgb(193, 251, 23, 40%) | #c1fb174C | |
rgb(193, 251, 23, 60%) | #c1fb1799 | |
rgb(193, 251, 23, 80%) | #c1fb17CC | |
rgb(193, 251, 23, 100%) | #c1fb17FF |
Saturated and desaturated colors of #c1fb17
HSL Code | Preview |
---|---|
hsl(75, 10%, 54%) | |
hsl(75, 20%, 54%) | |
hsl(75, 40%, 54%) | |
hsl(75, 60%, 54%) | |
hsl(75, 80%, 54%) | |
hsl(75, 100%, 54%) |
#c1fb17 Color Usage In CSS
body { color: #c1fb17; } p { color: rgb(193, 251, 23); } header { border-bottom:1px solid #c1fb17; }