#26699a Color
Color Codes | |
---|---|
Hex Code | #26699a |
RGB Code | rgb(38, 105, 154) |
HSL Code | hsl(205, 60%, 38%) |
#26699a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(38, 105, 154); }
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(205, 60%, 38%); }
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 #26699a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(38, 105, 154, 10%) | #26699a1a | |
rgb(38, 105, 154, 20%) | #26699a33 | |
rgb(38, 105, 154, 40%) | #26699a4C | |
rgb(38, 105, 154, 60%) | #26699a99 | |
rgb(38, 105, 154, 80%) | #26699aCC | |
rgb(38, 105, 154, 100%) | #26699aFF |
Saturated and desaturated colors of #26699a
HSL Code | Preview |
---|---|
hsl(205, 10%, 38%) | |
hsl(205, 20%, 38%) | |
hsl(205, 40%, 38%) | |
hsl(205, 60%, 38%) | |
hsl(205, 80%, 38%) | |
hsl(205, 100%, 38%) |
#26699a Color Usage In CSS
body { color: #26699a; } p { color: rgb(38, 105, 154); } header { border-bottom:1px solid #26699a; }