HEX: #7DD0CC
RGB: (125,208,204)
#7DD0CC contains mainly green and blue colors. Web safe color of #7DD0CC is #66CCCC (or #6CC).
#7DD0CC color RGB value is (125,208,204).
RGB: (125,208,204) (49%,82%,80%)
R 125 of 255 = 49%
G 208 of 255 = 82%
B 204 of 255 = 80%
R + G + B ~ 70%. #7DD0CC is quite light color.
R + G + B =
125 + 208 + 204 = 537 (100%)
R 125 of 537 ~ 23.28%
G 208 of 537 ~ 38.73%
B 204 of 537 ~ 37.99%
#7DD0CC color CMYK value is (40,0,2,18).
CMYK: (40,0,2,18) C40M0Y2K18 (40%,0%,2%,18%) (0.40/0.00/0.02/0.18)
7D | D0 | CC | |
---|---|---|---|
RGB | 125 | 208 | 204 |
HSL | 177° | 46.89% | 65.29% |
HSB/HSV | 177° | 39.90% | 81.57% |
CMYK | 39.90% | 0.00% | 1.92% |
18.43% |
HEX | 7D | D0 | CC |
Decimal | 125 | 208 | 204 |
Binary | 1111101 | 11010000 | 11001100 |
Octal | 175 | 320 | 314 |
Examples of css and html codes for elements with #7DD0CC color. Also use rgb(125,208,204) instead hex code.
.myTextColor { color: #7DD0CC; }
<p style="color:#7DD0CC">This sample text font color is #7DD0CC.</p>
This text font color is #7DD0CC.
.myBgColor { background-color: #7DD0CC; }
<div style="background-color:#7DD0CC">Inner text</div>
This div background color is #7DD0CC.
.myBorderColor { border: 1px solid #7DD0CC; }
<div style="border:3px solid #7DD0CC">Div</div>
This div border color is #7DD0CC.
.myOpacity80 { color: #7DD0CC; opacity: 0.8; }
<p style="color:#7DD0CC;opacity:0.8;">80%</p>
Text with #7DD0CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DD0CC;}
<p style="text-shadow: 3px 3px 1px #7DD0CC">Text here.</p>
This text has shadow with #7DD0CC color.
.textShadow {text-shadow: 3px 3px 1px #7DD0CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DD0CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DD0CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DD0CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DD0CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DD0CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DD0CC; -webkit-box-shadow: 1px 1px 3px 2px #7DD0CC; box-shadow: 1px 1px 3px 2px #7DD0CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DD0CC; -webkit-box-shadow: 1px 1px 3px 2px #7DD0CC; box-shadow:1px 1px 3px 2px #7DD0CC;">
Div content here</div>
This text has color #7DD0CC on black background.
This text has color #7DD0CC on white background.
This text has black color on #7DD0CC background.
This text has white color on #7DD0CC background.