HEX: #06391C
RGB: (6,57,28)
#06391C contains red, green and blue colors in about the same proportion. Web safe color of #06391C is #003333 (or #033).
#06391C color RGB value is (6,57,28).
RGB: (6,57,28) (2%,22%,11%)
R 6 of 255 = 2%
G 57 of 255 = 22%
B 28 of 255 = 11%
R + G + B ~ 12%. #06391C is dark color.
R + G + B =
6 + 57 + 28 = 91 (100%)
R 6 of 91 ~ 6.59%
G 57 of 91 ~ 62.64%
B 28 of 91 ~ 30.77%
#06391C color CMYK value is (89,0,51,78).
CMYK: (89,0,51,78) C89M0Y51K78 (89%,0%,51%,78%) (0.89/0.00/0.51/0.78)
06 | 39 | 1C | |
---|---|---|---|
RGB | 6 | 57 | 28 |
HSL | 146° | 80.95% | 12.35% |
HSB/HSV | 146° | 89.47% | 22.35% |
CMYK | 89.47% | 0.00% | 50.88% |
77.65% |
HEX | 06 | 39 | 1C |
Decimal | 6 | 57 | 28 |
Binary | 110 | 111001 | 11100 |
Octal | 6 | 71 | 34 |
Examples of css and html codes for elements with #06391C color. Also use rgb(6,57,28) instead hex code.
.myTextColor { color: #06391C; }
<p style="color:#06391C">This sample text font color is #06391C.</p>
This text font color is #06391C.
.myBgColor { background-color: #06391C; }
<div style="background-color:#06391C">Inner text</div>
This div background color is #06391C.
.myBorderColor { border: 1px solid #06391C; }
<div style="border:3px solid #06391C">Div</div>
This div border color is #06391C.
.myOpacity80 { color: #06391C; opacity: 0.8; }
<p style="color:#06391C;opacity:0.8;">80%</p>
Text with #06391C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06391C;}
<p style="text-shadow: 3px 3px 1px #06391C">Text here.</p>
This text has shadow with #06391C color.
.textShadow {text-shadow: 3px 3px 1px #06391C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06391C, 5px 5px 20px red">Text here.</p>
This text has shadow with #06391C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06391C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06391C, Direction=45, Strength=4)">Text</p>
This text has shadow with #06391C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06391C; -webkit-box-shadow: 1px 1px 3px 2px #06391C; box-shadow: 1px 1px 3px 2px #06391C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06391C; -webkit-box-shadow: 1px 1px 3px 2px #06391C; box-shadow:1px 1px 3px 2px #06391C;">
Div content here</div>
This text has color #06391C on black background.
This text has color #06391C on white background.
This text has black color on #06391C background.
This text has white color on #06391C background.