HEX: #7EDB83
RGB: (126,219,131)
#7EDB83 contains mainly green color. Web safe color of #7EDB83 is #66CC99 (or #6C9).
#7EDB83 color RGB value is (126,219,131).
RGB: (126,219,131) (49%,86%,51%)
R 126 of 255 = 49%
G 219 of 255 = 86%
B 131 of 255 = 51%
R + G + B ~ 62%. #7EDB83 is quite light color.
R + G + B =
126 + 219 + 131 = 476 (100%)
R 126 of 476 ~ 26.47%
G 219 of 476 ~ 46.01%
B 131 of 476 ~ 27.52%
#7EDB83 color CMYK value is (42,0,40,14).
CMYK: (42,0,40,14) C42M0Y40K14 (42%,0%,40%,14%) (0.42/0.00/0.40/0.14)
7E | DB | 83 | |
---|---|---|---|
RGB | 126 | 219 | 131 |
HSL | 123° | 56.36% | 67.65% |
HSB/HSV | 123° | 42.47% | 85.88% |
CMYK | 42.47% | 0.00% | 40.18% |
14.12% |
HEX | 7E | DB | 83 |
Decimal | 126 | 219 | 131 |
Binary | 1111110 | 11011011 | 10000011 |
Octal | 176 | 333 | 203 |
Examples of css and html codes for elements with #7EDB83 color. Also use rgb(126,219,131) instead hex code.
.myTextColor { color: #7EDB83; }
<p style="color:#7EDB83">This sample text font color is #7EDB83.</p>
This text font color is #7EDB83.
.myBgColor { background-color: #7EDB83; }
<div style="background-color:#7EDB83">Inner text</div>
This div background color is #7EDB83.
.myBorderColor { border: 1px solid #7EDB83; }
<div style="border:3px solid #7EDB83">Div</div>
This div border color is #7EDB83.
.myOpacity80 { color: #7EDB83; opacity: 0.8; }
<p style="color:#7EDB83;opacity:0.8;">80%</p>
Text with #7EDB83 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EDB83;}
<p style="text-shadow: 3px 3px 1px #7EDB83">Text here.</p>
This text has shadow with #7EDB83 color.
.textShadow {text-shadow: 3px 3px 1px #7EDB83, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EDB83, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EDB83 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EDB83, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EDB83, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EDB83 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EDB83; -webkit-box-shadow: 1px 1px 3px 2px #7EDB83; box-shadow: 1px 1px 3px 2px #7EDB83; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EDB83; -webkit-box-shadow: 1px 1px 3px 2px #7EDB83; box-shadow:1px 1px 3px 2px #7EDB83;">
Div content here</div>
This text has color #7EDB83 on black background.
This text has color #7EDB83 on white background.
This text has black color on #7EDB83 background.
This text has white color on #7EDB83 background.