#d63600 Color
Color Codes | |
---|---|
Hex Code | #d63600 |
RGB Code | rgb(214, 54, 00) |
HSL Code | hsl(15, 100%, 42%) |
#d63600 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 54, 00); }
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(15, 100%, 42%); }
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 #d63600
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 54, 00, 10%) | #d636001a | |
rgb(214, 54, 00, 20%) | #d6360033 | |
rgb(214, 54, 00, 40%) | #d636004C | |
rgb(214, 54, 00, 60%) | #d6360099 | |
rgb(214, 54, 00, 80%) | #d63600CC | |
rgb(214, 54, 00, 100%) | #d63600FF |
Saturated and desaturated colors of #d63600
HSL Code | Preview |
---|---|
hsl(15, 10%, 42%) | |
hsl(15, 20%, 42%) | |
hsl(15, 40%, 42%) | |
hsl(15, 60%, 42%) | |
hsl(15, 80%, 42%) | |
hsl(15, 100%, 42%) |
#d63600 Color Usage In CSS
body { color: #d63600; } p { color: rgb(214, 54, 00); } header { border-bottom:1px solid #d63600; }