#21022c hex color information.
RGB value of #21022c is (33,2,44)
Change page background color to #21022c
| Reset
| RGB | 33 | 2 | 44 |
|---|---|---|---|
| HSL | 0.79 | 0.91 | 0.09 |
| HSV | 284° | 95° | 17° |
| CMYK | 0.25 | 0.95 | 0.00 0.83 |
| XYZ | 1.1035 | 0.5486 | 2.4306 |
| Yxy | 0.5486 | 0.2703 | 0.1344 |
| Hunter Lab | 7.4068 | 13.6321 | -14.2719 |
| CIE-Lab | 4.9555 | 22.8925 | -20.1836 |
#21022c hex color red value is 33, green value is 2 and the blue value of its RGB is 2. Cylindrical-coordinate representations (also known as HSL) of color #21022c hue: 0.79 , saturation: 0.91 and the lightness value of 21022c is 0.09.
The process color (four color CMYK) of #21022c hex color is 0.25, 0.95, 0.00, 0.83. Web safe color of #21022c is #330033
Color #21022c contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00100001 | 00000010 | 00101100 |
| Octal | 41 | 2 | 54 |
| Decimal | 33 | 2 | 44 |
| Hexadecimal | 21 | 2 | 2C |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#21022c; }
.myforecolor {color:#21022c; }
.mybordercolor {border:3px solid #21022c; }
This sample text font color is #21022c
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#21022c">Text here</p>
This div background color is #21022c
<div style="background-color:#21022c">
Div content here</div>
This div border color is #21022c
<div style="border:3px solid #21022c">
Div here</div>
| #21022c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(33,2,44, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #21022c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #21022c;
-webkit-box-shadow: 1px 1px 3px 2px #21022c;
box-shadow: 1px 1px 3px 2px #21022c;
}
<p style="text-shadow: 4px 4px 2px rgba(33,2,44, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #21022c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #21022c
<div style="-moz-box-shadow: 1px 1px 3px 2px #21022c; -webkit-box-shadow: 1px 1px 3px 2px #21022c; box-shadow: 1px 1px 3px 2px #21022c;">
Div content here</div>