HEX: #06072E
RGB: (6,7,46)
#06072E contains red, green and blue colors in about the same proportion. Web safe color of #06072E is #000033 (or #003).
#06072E color RGB value is (6,7,46).
RGB: (6,7,46) (2%,3%,18%)
R 6 of 255 = 2%
G 7 of 255 = 3%
B 46 of 255 = 18%
R + G + B ~ 8%. #06072E is dark color.
R + G + B =
6 + 7 + 46 = 59 (100%)
R 6 of 59 ~ 10.17%
G 7 of 59 ~ 11.86%
B 46 of 59 ~ 77.97%
#06072E color CMYK value is (87,85,0,82).
CMYK: (87,85,0,82) C87M85Y0K82 (87%,85%,0%,82%) (0.87/0.85/0.00/0.82)
06 | 07 | 2E | |
---|---|---|---|
RGB | 6 | 7 | 46 |
HSL | 239° | 76.92% | 10.20% |
HSB/HSV | 239° | 86.96% | 18.04% |
CMYK | 86.96% | 84.78% | 0.00% |
81.96% |
HEX | 06 | 07 | 2E |
Decimal | 6 | 7 | 46 |
Binary | 110 | 111 | 101110 |
Octal | 6 | 7 | 56 |
Examples of css and html codes for elements with #06072E color. Also use rgb(6,7,46) instead hex code.
.myTextColor { color: #06072E; }
<p style="color:#06072E">This sample text font color is #06072E.</p>
This text font color is #06072E.
.myBgColor { background-color: #06072E; }
<div style="background-color:#06072E">Inner text</div>
This div background color is #06072E.
.myBorderColor { border: 1px solid #06072E; }
<div style="border:3px solid #06072E">Div</div>
This div border color is #06072E.
.myOpacity80 { color: #06072E; opacity: 0.8; }
<p style="color:#06072E;opacity:0.8;">80%</p>
Text with #06072E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06072E;}
<p style="text-shadow: 3px 3px 1px #06072E">Text here.</p>
This text has shadow with #06072E color.
.textShadow {text-shadow: 3px 3px 1px #06072E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06072E, 5px 5px 20px red">Text here.</p>
This text has shadow with #06072E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06072E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06072E, Direction=45, Strength=4)">Text</p>
This text has shadow with #06072E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06072E; -webkit-box-shadow: 1px 1px 3px 2px #06072E; box-shadow: 1px 1px 3px 2px #06072E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06072E; -webkit-box-shadow: 1px 1px 3px 2px #06072E; box-shadow:1px 1px 3px 2px #06072E;">
Div content here</div>
This text has color #06072E on black background.
This text has color #06072E on white background.
This text has black color on #06072E background.
This text has white color on #06072E background.