#234768 Color
Color Codes | |
---|---|
Hex Code | #234768 |
RGB Code | rgb(35, 71, 104) |
HSL Code | hsl(209, 50%, 27%) |
#234768 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 71, 104); }
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(209, 50%, 27%); }
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 #234768
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 71, 104, 10%) | #2347681a | |
rgb(35, 71, 104, 20%) | #23476833 | |
rgb(35, 71, 104, 40%) | #2347684C | |
rgb(35, 71, 104, 60%) | #23476899 | |
rgb(35, 71, 104, 80%) | #234768CC | |
rgb(35, 71, 104, 100%) | #234768FF |
Saturated and desaturated colors of #234768
HSL Code | Preview |
---|---|
hsl(209, 10%, 27%) | |
hsl(209, 20%, 27%) | |
hsl(209, 40%, 27%) | |
hsl(209, 60%, 27%) | |
hsl(209, 80%, 27%) | |
hsl(209, 100%, 27%) |
#234768 Color Usage In CSS
body { color: #234768; } p { color: rgb(35, 71, 104); } header { border-bottom:1px solid #234768; }