HEX: #7EA265
RGB: (126,162,101)
#7EA265 contains mainly red and green colors. Web safe color of #7EA265 is #669966 (or #696).
#7EA265 color RGB value is (126,162,101).
RGB: (126,162,101) (49%,64%,40%)
R 126 of 255 = 49%
G 162 of 255 = 64%
B 101 of 255 = 40%
R + G + B ~ 51%. #7EA265 is middle color (not dark and not light).
R + G + B =
126 + 162 + 101 = 389 (100%)
R 126 of 389 ~ 32.39%
G 162 of 389 ~ 41.65%
B 101 of 389 ~ 25.96%
#7EA265 color CMYK value is (22,0,38,36).
CMYK: (22,0,38,36) C22M0Y38K36 (22%,0%,38%,36%) (0.22/0.00/0.38/0.36)
7E | A2 | 65 | |
---|---|---|---|
RGB | 126 | 162 | 101 |
HSL | 95° | 24.70% | 51.57% |
HSB/HSV | 95° | 37.65% | 63.53% |
CMYK | 22.22% | 0.00% | 37.65% |
36.47% |
HEX | 7E | A2 | 65 |
Decimal | 126 | 162 | 101 |
Binary | 1111110 | 10100010 | 1100101 |
Octal | 176 | 242 | 145 |
Examples of css and html codes for elements with #7EA265 color. Also use rgb(126,162,101) instead hex code.
.myTextColor { color: #7EA265; }
<p style="color:#7EA265">This sample text font color is #7EA265.</p>
This text font color is #7EA265.
.myBgColor { background-color: #7EA265; }
<div style="background-color:#7EA265">Inner text</div>
This div background color is #7EA265.
.myBorderColor { border: 1px solid #7EA265; }
<div style="border:3px solid #7EA265">Div</div>
This div border color is #7EA265.
.myOpacity80 { color: #7EA265; opacity: 0.8; }
<p style="color:#7EA265;opacity:0.8;">80%</p>
Text with #7EA265 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EA265;}
<p style="text-shadow: 3px 3px 1px #7EA265">Text here.</p>
This text has shadow with #7EA265 color.
.textShadow {text-shadow: 3px 3px 1px #7EA265, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EA265, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EA265 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EA265, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EA265, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EA265 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EA265; -webkit-box-shadow: 1px 1px 3px 2px #7EA265; box-shadow: 1px 1px 3px 2px #7EA265; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EA265; -webkit-box-shadow: 1px 1px 3px 2px #7EA265; box-shadow:1px 1px 3px 2px #7EA265;">
Div content here</div>
This text has color #7EA265 on black background.
This text has color #7EA265 on white background.
This text has black color on #7EA265 background.
This text has white color on #7EA265 background.