HEX: #7ED6AF
RGB: (126,214,175)
#7ED6AF contains mainly green and blue colors. Web safe color of #7ED6AF is #66CC99 (or #6C9).
#7ED6AF color RGB value is (126,214,175).
RGB: (126,214,175) (49%,84%,69%)
R 126 of 255 = 49%
G 214 of 255 = 84%
B 175 of 255 = 69%
R + G + B ~ 67%. #7ED6AF is quite light color.
R + G + B =
126 + 214 + 175 = 515 (100%)
R 126 of 515 ~ 24.47%
G 214 of 515 ~ 41.55%
B 175 of 515 ~ 33.98%
#7ED6AF color CMYK value is (41,0,18,16).
CMYK: (41,0,18,16) C41M0Y18K16 (41%,0%,18%,16%) (0.41/0.00/0.18/0.16)
7E | D6 | AF | |
---|---|---|---|
RGB | 126 | 214 | 175 |
HSL | 153° | 51.76% | 66.67% |
HSB/HSV | 153° | 41.12% | 83.92% |
CMYK | 41.12% | 0.00% | 18.22% |
16.08% |
HEX | 7E | D6 | AF |
Decimal | 126 | 214 | 175 |
Binary | 1111110 | 11010110 | 10101111 |
Octal | 176 | 326 | 257 |
Examples of css and html codes for elements with #7ED6AF color. Also use rgb(126,214,175) instead hex code.
.myTextColor { color: #7ED6AF; }
<p style="color:#7ED6AF">This sample text font color is #7ED6AF.</p>
This text font color is #7ED6AF.
.myBgColor { background-color: #7ED6AF; }
<div style="background-color:#7ED6AF">Inner text</div>
This div background color is #7ED6AF.
.myBorderColor { border: 1px solid #7ED6AF; }
<div style="border:3px solid #7ED6AF">Div</div>
This div border color is #7ED6AF.
.myOpacity80 { color: #7ED6AF; opacity: 0.8; }
<p style="color:#7ED6AF;opacity:0.8;">80%</p>
Text with #7ED6AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7ED6AF;}
<p style="text-shadow: 3px 3px 1px #7ED6AF">Text here.</p>
This text has shadow with #7ED6AF color.
.textShadow {text-shadow: 3px 3px 1px #7ED6AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7ED6AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #7ED6AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7ED6AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7ED6AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #7ED6AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7ED6AF; -webkit-box-shadow: 1px 1px 3px 2px #7ED6AF; box-shadow: 1px 1px 3px 2px #7ED6AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7ED6AF; -webkit-box-shadow: 1px 1px 3px 2px #7ED6AF; box-shadow:1px 1px 3px 2px #7ED6AF;">
Div content here</div>
This text has color #7ED6AF on black background.
This text has color #7ED6AF on white background.
This text has black color on #7ED6AF background.
This text has white color on #7ED6AF background.