HEX: #066A2E
RGB: (6,106,46)
#066A2E contains mainly green color. Web safe color of #066A2E is #006633 (or #063).
#066A2E color RGB value is (6,106,46).
RGB: (6,106,46) (2%,42%,18%)
R 6 of 255 = 2%
G 106 of 255 = 42%
B 46 of 255 = 18%
R + G + B ~ 21%. #066A2E is dark color.
R + G + B =
6 + 106 + 46 = 158 (100%)
R 6 of 158 ~ 3.8%
G 106 of 158 ~ 67.09%
B 46 of 158 ~ 29.11%
#066A2E color CMYK value is (94,0,57,58).
CMYK: (94,0,57,58) C94M0Y57K58 (94%,0%,57%,58%) (0.94/0.00/0.57/0.58)
06 | 6A | 2E | |
---|---|---|---|
RGB | 6 | 106 | 46 |
HSL | 144° | 89.29% | 21.96% |
HSB/HSV | 144° | 94.34% | 41.57% |
CMYK | 94.34% | 0.00% | 56.60% |
58.43% |
HEX | 06 | 6A | 2E |
Decimal | 6 | 106 | 46 |
Binary | 110 | 1101010 | 101110 |
Octal | 6 | 152 | 56 |
Examples of css and html codes for elements with #066A2E color. Also use rgb(6,106,46) instead hex code.
.myTextColor { color: #066A2E; }
<p style="color:#066A2E">This sample text font color is #066A2E.</p>
This text font color is #066A2E.
.myBgColor { background-color: #066A2E; }
<div style="background-color:#066A2E">Inner text</div>
This div background color is #066A2E.
.myBorderColor { border: 1px solid #066A2E; }
<div style="border:3px solid #066A2E">Div</div>
This div border color is #066A2E.
.myOpacity80 { color: #066A2E; opacity: 0.8; }
<p style="color:#066A2E;opacity:0.8;">80%</p>
Text with #066A2E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #066A2E;}
<p style="text-shadow: 3px 3px 1px #066A2E">Text here.</p>
This text has shadow with #066A2E color.
.textShadow {text-shadow: 3px 3px 1px #066A2E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #066A2E, 5px 5px 20px red">Text here.</p>
This text has shadow with #066A2E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#066A2E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#066A2E, Direction=45, Strength=4)">Text</p>
This text has shadow with #066A2E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #066A2E; -webkit-box-shadow: 1px 1px 3px 2px #066A2E; box-shadow: 1px 1px 3px 2px #066A2E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #066A2E; -webkit-box-shadow: 1px 1px 3px 2px #066A2E; box-shadow:1px 1px 3px 2px #066A2E;">
Div content here</div>
This text has color #066A2E on black background.
This text has color #066A2E on white background.
This text has black color on #066A2E background.
This text has white color on #066A2E background.