HEX: #06150D
RGB: (6,21,13)
#06150D contains red, green and blue colors in about the same proportion. Web safe color of #06150D is #000000 (or #000).
#06150D color RGB value is (6,21,13).
RGB: (6,21,13) (2%,8%,5%)
R 6 of 255 = 2%
G 21 of 255 = 8%
B 13 of 255 = 5%
R + G + B ~ 5%. #06150D is dark color.
R + G + B =
6 + 21 + 13 = 40 (100%)
R 6 of 40 ~ 15%
G 21 of 40 ~ 52.5%
B 13 of 40 ~ 32.5%
#06150D color CMYK value is (71,0,38,92).
CMYK: (71,0,38,92) C71M0Y38K92 (71%,0%,38%,92%) (0.71/0.00/0.38/0.92)
06 | 15 | 0D | |
---|---|---|---|
RGB | 6 | 21 | 13 |
HSL | 148° | 55.56% | 5.29% |
HSB/HSV | 148° | 71.43% | 8.24% |
CMYK | 71.43% | 0.00% | 38.10% |
91.76% |
HEX | 06 | 15 | 0D |
Decimal | 6 | 21 | 13 |
Binary | 110 | 10101 | 1101 |
Octal | 6 | 25 | 15 |
Examples of css and html codes for elements with #06150D color. Also use rgb(6,21,13) instead hex code.
.myTextColor { color: #06150D; }
<p style="color:#06150D">This sample text font color is #06150D.</p>
This text font color is #06150D.
.myBgColor { background-color: #06150D; }
<div style="background-color:#06150D">Inner text</div>
This div background color is #06150D.
.myBorderColor { border: 1px solid #06150D; }
<div style="border:3px solid #06150D">Div</div>
This div border color is #06150D.
.myOpacity80 { color: #06150D; opacity: 0.8; }
<p style="color:#06150D;opacity:0.8;">80%</p>
Text with #06150D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06150D;}
<p style="text-shadow: 3px 3px 1px #06150D">Text here.</p>
This text has shadow with #06150D color.
.textShadow {text-shadow: 3px 3px 1px #06150D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06150D, 5px 5px 20px red">Text here.</p>
This text has shadow with #06150D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06150D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06150D, Direction=45, Strength=4)">Text</p>
This text has shadow with #06150D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06150D; -webkit-box-shadow: 1px 1px 3px 2px #06150D; box-shadow: 1px 1px 3px 2px #06150D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06150D; -webkit-box-shadow: 1px 1px 3px 2px #06150D; box-shadow:1px 1px 3px 2px #06150D;">
Div content here</div>
This text has color #06150D on black background.
This text has color #06150D on white background.
This text has black color on #06150D background.
This text has white color on #06150D background.