#306cf3 Color
Color Codes | |
---|---|
Hex Code | #306cf3 |
RGB Code | rgb(48, 108, 243) |
HSL Code | hsl(222, 89%, 57%) |
#306cf3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(48, 108, 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(222, 89%, 57%); }
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 #306cf3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(48, 108, 243, 10%) | #306cf31a | |
rgb(48, 108, 243, 20%) | #306cf333 | |
rgb(48, 108, 243, 40%) | #306cf34C | |
rgb(48, 108, 243, 60%) | #306cf399 | |
rgb(48, 108, 243, 80%) | #306cf3CC | |
rgb(48, 108, 243, 100%) | #306cf3FF |
Saturated and desaturated colors of #306cf3
HSL Code | Preview |
---|---|
hsl(222, 10%, 57%) | |
hsl(222, 20%, 57%) | |
hsl(222, 40%, 57%) | |
hsl(222, 60%, 57%) | |
hsl(222, 80%, 57%) | |
hsl(222, 100%, 57%) |
#306cf3 Color Usage In CSS
body { color: #306cf3; } p { color: rgb(48, 108, 243); } header { border-bottom:1px solid #306cf3; }