#1a1a1a hex color information.
RGB value of #1a1a1a is (26,26,26)
Change page background color to #1a1a1a
| Reset
| RGB | 26 | 26 | 26 |
|---|---|---|---|
| HSL | 0.00 | 0.00 | 0.10 |
| HSV | 0° | 0° | 10° |
| CMYK | 0.00 | 0.00 | 0.00 0.90 |
| XYZ | 0.9818 | 1.0330 | 1.1249 |
| Yxy | 1.0330 | 0.3127 | 0.3290 |
| Hunter Lab | 10.1637 | -0.5435 | 0.5524 |
| CIE-Lab | 9.2634 | -0.0013 | -0.0018 |
#1a1a1a hex color red value is 26, green value is 26 and the blue value of its RGB is 26. Cylindrical-coordinate representations (also known as HSL) of color #1a1a1a hue: 0.00 , saturation: 0.00 and the lightness value of 1a1a1a is 0.10.
The process color (four color CMYK) of #1a1a1a hex color is 0.00, 0.00, 0.00, 0.90. Web safe color of #1a1a1a is #333333
Color #1a1a1a rgb is equally color. #1a1a1a color name is Gray10.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00011010 | 00011010 | 00011010 |
| Octal | 32 | 32 | 32 |
| Decimal | 26 | 26 | 26 |
| Hexadecimal | 1A | 1A | 1A |
Analogous colors are identical
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#1a1a1a; }
.myforecolor {color:#1a1a1a; }
.mybordercolor {border:3px solid #1a1a1a; }
This sample text font color is #1a1a1a
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:#1a1a1a">Text here</p>
This div background color is #1a1a1a
<div style="background-color:#1a1a1a">
Div content here</div>
This div border color is #1a1a1a
<div style="border:3px solid #1a1a1a">
Div here</div>
| #1a1a1a | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(26,26,26, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #1a1a1a;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #1a1a1a;
-webkit-box-shadow: 1px 1px 3px 2px #1a1a1a;
box-shadow: 1px 1px 3px 2px #1a1a1a;
}
<p style="text-shadow: 4px 4px 2px rgba(26,26,26, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #1a1a1a">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #1a1a1a
<div style="-moz-box-shadow: 1px 1px 3px 2px #1a1a1a; -webkit-box-shadow: 1px 1px 3px 2px #1a1a1a; box-shadow: 1px 1px 3px 2px #1a1a1a;">
Div content here</div>