#27010c hex color information.
RGB value of #27010c is (39,1,12)
Change page background color to #27010c
| Reset
| RGB | 39 | 1 | 12 |
|---|---|---|---|
| HSL | 0.95 | 0.95 | 0.08 |
| HSV | 343° | 97° | 15° |
| CMYK | 0.00 | 0.97 | 0.69 0.85 |
| XYZ | 0.9139 | 0.4796 | 0.3922 |
| Yxy | 0.4796 | 0.5118 | 0.2686 |
| Hunter Lab | 6.9253 | 11.4365 | 1.4900 |
| CIE-Lab | 4.3322 | 18.6833 | 1.8595 |
#27010c hex color red value is 39, green value is 1 and the blue value of its RGB is 1. Cylindrical-coordinate representations (also known as HSL) of color #27010c hue: 0.95 , saturation: 0.95 and the lightness value of 27010c is 0.08.
The process color (four color CMYK) of #27010c hex color is 0.00, 0.97, 0.69, 0.85. Web safe color of #27010c is #330000
Color #27010c contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00100111 | 00000001 | 00001100 |
| Octal | 47 | 1 | 14 |
| Decimal | 39 | 1 | 12 |
| Hexadecimal | 27 | 1 | C |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#27010c; }
.myforecolor {color:#27010c; }
.mybordercolor {border:3px solid #27010c; }
This sample text font color is #27010c
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:#27010c">Text here</p>
This div background color is #27010c
<div style="background-color:#27010c">
Div content here</div>
This div border color is #27010c
<div style="border:3px solid #27010c">
Div here</div>
| #27010c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(39,1,12, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #27010c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #27010c;
-webkit-box-shadow: 1px 1px 3px 2px #27010c;
box-shadow: 1px 1px 3px 2px #27010c;
}
<p style="text-shadow: 4px 4px 2px rgba(39,1,12, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #27010c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #27010c
<div style="-moz-box-shadow: 1px 1px 3px 2px #27010c; -webkit-box-shadow: 1px 1px 3px 2px #27010c; box-shadow: 1px 1px 3px 2px #27010c;">
Div content here</div>