#093cf1 Color
Color Codes | |
---|---|
Hex Code | #093cf1 |
RGB Code | rgb(09, 60, 241) |
HSL Code | hsl(227, 93%, 49%) |
#093cf1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(09, 60, 241); }
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(227, 93%, 49%); }
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 #093cf1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(09, 60, 241, 10%) | #093cf11a | |
rgb(09, 60, 241, 20%) | #093cf133 | |
rgb(09, 60, 241, 40%) | #093cf14C | |
rgb(09, 60, 241, 60%) | #093cf199 | |
rgb(09, 60, 241, 80%) | #093cf1CC | |
rgb(09, 60, 241, 100%) | #093cf1FF |
Saturated and desaturated colors of #093cf1
HSL Code | Preview |
---|---|
hsl(227, 10%, 49%) | |
hsl(227, 20%, 49%) | |
hsl(227, 40%, 49%) | |
hsl(227, 60%, 49%) | |
hsl(227, 80%, 49%) | |
hsl(227, 100%, 49%) |
#093cf1 Color Usage In CSS
body { color: #093cf1; } p { color: rgb(09, 60, 241); } header { border-bottom:1px solid #093cf1; }