#291a00 hex color information.
RGB value of #291a00 is (41,26,0)
Change page background color to #291a00
| Reset
| RGB | 41 | 26 | 0 |
|---|---|---|---|
| HSL | 0.11 | 1.00 | 0.08 |
| HSV | 38° | 100° | 16° |
| CMYK | 0.00 | 0.37 | 1.00 0.84 |
| XYZ | 1.2838 | 1.2102 | 0.1659 |
| Yxy | 1.2102 | 0.4826 | 0.4550 |
| Hunter Lab | 11.0009 | 1.5793 | 6.8065 |
| CIE-Lab | 10.6324 | 4.2808 | 15.9588 |
#291a00 hex color red value is 41, green value is 26 and the blue value of its RGB is 26. Cylindrical-coordinate representations (also known as HSL) of color #291a00 hue: 0.11 , saturation: 1.00 and the lightness value of 291a00 is 0.08.
The process color (four color CMYK) of #291a00 hex color is 0.00, 0.37, 1.00, 0.84. Web safe color of #291a00 is #333300
Color #291a00 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00101001 | 00011010 | 00000000 |
| Octal | 51 | 32 | 0 |
| Decimal | 41 | 26 | 0 |
| Hexadecimal | 29 | 1A | 0 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#291a00; }
.myforecolor {color:#291a00; }
.mybordercolor {border:3px solid #291a00; }
This sample text font color is #291a00
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:#291a00">Text here</p>
This div background color is #291a00
<div style="background-color:#291a00">
Div content here</div>
This div border color is #291a00
<div style="border:3px solid #291a00">
Div here</div>
| #291a00 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(41,26,0, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #291a00;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #291a00;
-webkit-box-shadow: 1px 1px 3px 2px #291a00;
box-shadow: 1px 1px 3px 2px #291a00;
}
<p style="text-shadow: 4px 4px 2px rgba(41,26,0, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #291a00">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #291a00
<div style="-moz-box-shadow: 1px 1px 3px 2px #291a00; -webkit-box-shadow: 1px 1px 3px 2px #291a00; box-shadow: 1px 1px 3px 2px #291a00;">
Div content here</div>