HEX: #667E2A
RGB: (102,126,42)
#667E2A contains mainly red and green colors. Web safe color of #667E2A is #666633 (or #663).
#667E2A color RGB value is (102,126,42).
RGB: (102,126,42) (40%,49%,16%)
R 102 of 255 = 40%
G 126 of 255 = 49%
B 42 of 255 = 16%
R + G + B ~ 35%. #667E2A is quite dark color.
R + G + B =
102 + 126 + 42 = 270 (100%)
R 102 of 270 ~ 37.78%
G 126 of 270 ~ 46.67%
B 42 of 270 ~ 15.56%
#667E2A color CMYK value is (19,0,67,51).
CMYK: (19,0,67,51) C19M0Y67K51 (19%,0%,67%,51%) (0.19/0.00/0.67/0.51)
66 | 7E | 2A | |
---|---|---|---|
RGB | 102 | 126 | 42 |
HSL | 77° | 50.00% | 32.94% |
HSB/HSV | 77° | 66.67% | 49.41% |
CMYK | 19.05% | 0.00% | 66.67% |
50.59% |
HEX | 66 | 7E | 2A |
Decimal | 102 | 126 | 42 |
Binary | 1100110 | 1111110 | 101010 |
Octal | 146 | 176 | 52 |
Examples of css and html codes for elements with #667E2A color. Also use rgb(102,126,42) instead hex code.
.myTextColor { color: #667E2A; }
<p style="color:#667E2A">This sample text font color is #667E2A.</p>
This text font color is #667E2A.
.myBgColor { background-color: #667E2A; }
<div style="background-color:#667E2A">Inner text</div>
This div background color is #667E2A.
.myBorderColor { border: 1px solid #667E2A; }
<div style="border:3px solid #667E2A">Div</div>
This div border color is #667E2A.
.myOpacity80 { color: #667E2A; opacity: 0.8; }
<p style="color:#667E2A;opacity:0.8;">80%</p>
Text with #667E2A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #667E2A;}
<p style="text-shadow: 3px 3px 1px #667E2A">Text here.</p>
This text has shadow with #667E2A color.
.textShadow {text-shadow: 3px 3px 1px #667E2A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #667E2A, 5px 5px 20px red">Text here.</p>
This text has shadow with #667E2A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#667E2A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#667E2A, Direction=45, Strength=4)">Text</p>
This text has shadow with #667E2A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #667E2A; -webkit-box-shadow: 1px 1px 3px 2px #667E2A; box-shadow: 1px 1px 3px 2px #667E2A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #667E2A; -webkit-box-shadow: 1px 1px 3px 2px #667E2A; box-shadow:1px 1px 3px 2px #667E2A;">
Div content here</div>
This text has color #667E2A on black background.
This text has color #667E2A on white background.
This text has black color on #667E2A background.
This text has white color on #667E2A background.