HEX: #061200
RGB: (6,18,0)
#061200 contains only red and green colors. Web safe color of #061200 is #000000 (or #000).
#061200 color RGB value is (6,18,0).
RGB: (6,18,0) (2%,7%,0%)
R 6 of 255 = 2%
G 18 of 255 = 7%
B 0 of 255 = 0%
R + G + B ~ 3%. #061200 is dark color.
R + G + B =
6 + 18 + 0 = 24 (100%)
R 6 of 24 ~ 25%
G 18 of 24 ~ 75%
B 0 of 24 ~ 0%
#061200 color CMYK value is (67,0,100,93).
CMYK: (67,0,100,93) C67M0Y100K93 (67%,0%,100%,93%) (0.67/0.00/1.00/0.93)
06 | 12 | 00 | |
---|---|---|---|
RGB | 6 | 18 | 0 |
HSL | 100° | 100.00% | 3.53% |
HSB/HSV | 100° | 100.00% | 7.06% |
CMYK | 66.67% | 0.00% | 100.00% |
92.94% |
HEX | 06 | 12 | 00 |
Decimal | 6 | 18 | 0 |
Binary | 110 | 10010 | 0 |
Octal | 6 | 22 | 0 |
Examples of css and html codes for elements with #061200 color. Also use rgb(6,18,0) instead hex code.
.myTextColor { color: #061200; }
<p style="color:#061200">This sample text font color is #061200.</p>
This text font color is #061200.
.myBgColor { background-color: #061200; }
<div style="background-color:#061200">Inner text</div>
This div background color is #061200.
.myBorderColor { border: 1px solid #061200; }
<div style="border:3px solid #061200">Div</div>
This div border color is #061200.
.myOpacity80 { color: #061200; opacity: 0.8; }
<p style="color:#061200;opacity:0.8;">80%</p>
Text with #061200 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #061200;}
<p style="text-shadow: 3px 3px 1px #061200">Text here.</p>
This text has shadow with #061200 color.
.textShadow {text-shadow: 3px 3px 1px #061200, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #061200, 5px 5px 20px red">Text here.</p>
This text has shadow with #061200 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#061200, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#061200, Direction=45, Strength=4)">Text</p>
This text has shadow with #061200 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #061200; -webkit-box-shadow: 1px 1px 3px 2px #061200; box-shadow: 1px 1px 3px 2px #061200; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #061200; -webkit-box-shadow: 1px 1px 3px 2px #061200; box-shadow:1px 1px 3px 2px #061200;">
Div content here</div>
This text has color #061200 on black background.
This text has color #061200 on white background.
This text has black color on #061200 background.
This text has white color on #061200 background.