#f36195 Color
Color Codes | |
---|---|
Hex Code | #f36195 |
RGB Code | rgb(243, 97, 149) |
HSL Code | hsl(339, 86%, 67%) |
#f36195 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 97, 149); }
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(339, 86%, 67%); }
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 #f36195
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 97, 149, 10%) | #f361951a | |
rgb(243, 97, 149, 20%) | #f3619533 | |
rgb(243, 97, 149, 40%) | #f361954C | |
rgb(243, 97, 149, 60%) | #f3619599 | |
rgb(243, 97, 149, 80%) | #f36195CC | |
rgb(243, 97, 149, 100%) | #f36195FF |
Saturated and desaturated colors of #f36195
HSL Code | Preview |
---|---|
hsl(339, 10%, 67%) | |
hsl(339, 20%, 67%) | |
hsl(339, 40%, 67%) | |
hsl(339, 60%, 67%) | |
hsl(339, 80%, 67%) | |
hsl(339, 100%, 67%) |
#f36195 Color Usage In CSS
body { color: #f36195; } p { color: rgb(243, 97, 149); } header { border-bottom:1px solid #f36195; }