HEX: #7DC6AD
RGB: (125,198,173)
#7DC6AD contains mainly green and blue colors. Web safe color of #7DC6AD is #66CC99 (or #6C9).
#7DC6AD color RGB value is (125,198,173).
RGB: (125,198,173) (49%,78%,68%)
R 125 of 255 = 49%
G 198 of 255 = 78%
B 173 of 255 = 68%
R + G + B ~ 65%. #7DC6AD is quite light color.
R + G + B =
125 + 198 + 173 = 496 (100%)
R 125 of 496 ~ 25.2%
G 198 of 496 ~ 39.92%
B 173 of 496 ~ 34.88%
#7DC6AD color CMYK value is (37,0,13,22).
CMYK: (37,0,13,22) C37M0Y13K22 (37%,0%,13%,22%) (0.37/0.00/0.13/0.22)
7D | C6 | AD | |
---|---|---|---|
RGB | 125 | 198 | 173 |
HSL | 159° | 39.04% | 63.33% |
HSB/HSV | 159° | 36.87% | 77.65% |
CMYK | 36.87% | 0.00% | 12.63% |
22.35% |
HEX | 7D | C6 | AD |
Decimal | 125 | 198 | 173 |
Binary | 1111101 | 11000110 | 10101101 |
Octal | 175 | 306 | 255 |
Examples of css and html codes for elements with #7DC6AD color. Also use rgb(125,198,173) instead hex code.
.myTextColor { color: #7DC6AD; }
<p style="color:#7DC6AD">This sample text font color is #7DC6AD.</p>
This text font color is #7DC6AD.
.myBgColor { background-color: #7DC6AD; }
<div style="background-color:#7DC6AD">Inner text</div>
This div background color is #7DC6AD.
.myBorderColor { border: 1px solid #7DC6AD; }
<div style="border:3px solid #7DC6AD">Div</div>
This div border color is #7DC6AD.
.myOpacity80 { color: #7DC6AD; opacity: 0.8; }
<p style="color:#7DC6AD;opacity:0.8;">80%</p>
Text with #7DC6AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DC6AD;}
<p style="text-shadow: 3px 3px 1px #7DC6AD">Text here.</p>
This text has shadow with #7DC6AD color.
.textShadow {text-shadow: 3px 3px 1px #7DC6AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DC6AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DC6AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DC6AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DC6AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DC6AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DC6AD; -webkit-box-shadow: 1px 1px 3px 2px #7DC6AD; box-shadow: 1px 1px 3px 2px #7DC6AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DC6AD; -webkit-box-shadow: 1px 1px 3px 2px #7DC6AD; box-shadow:1px 1px 3px 2px #7DC6AD;">
Div content here</div>
This text has color #7DC6AD on black background.
This text has color #7DC6AD on white background.
This text has black color on #7DC6AD background.
This text has white color on #7DC6AD background.