HEX: #7DD7CB
RGB: (125,215,203)
#7DD7CB contains mainly green and blue colors. Web safe color of #7DD7CB is #66CCCC (or #6CC).
#7DD7CB color RGB value is (125,215,203).
RGB: (125,215,203) (49%,84%,80%)
R 125 of 255 = 49%
G 215 of 255 = 84%
B 203 of 255 = 80%
R + G + B ~ 71%. #7DD7CB is quite light color.
R + G + B =
125 + 215 + 203 = 543 (100%)
R 125 of 543 ~ 23.02%
G 215 of 543 ~ 39.59%
B 203 of 543 ~ 37.38%
#7DD7CB color CMYK value is (42,0,6,16).
CMYK: (42,0,6,16) C42M0Y6K16 (42%,0%,6%,16%) (0.42/0.00/0.06/0.16)
7D | D7 | CB | |
---|---|---|---|
RGB | 125 | 215 | 203 |
HSL | 172° | 52.94% | 66.67% |
HSB/HSV | 172° | 41.86% | 84.31% |
CMYK | 41.86% | 0.00% | 5.58% |
15.69% |
HEX | 7D | D7 | CB |
Decimal | 125 | 215 | 203 |
Binary | 1111101 | 11010111 | 11001011 |
Octal | 175 | 327 | 313 |
Examples of css and html codes for elements with #7DD7CB color. Also use rgb(125,215,203) instead hex code.
.myTextColor { color: #7DD7CB; }
<p style="color:#7DD7CB">This sample text font color is #7DD7CB.</p>
This text font color is #7DD7CB.
.myBgColor { background-color: #7DD7CB; }
<div style="background-color:#7DD7CB">Inner text</div>
This div background color is #7DD7CB.
.myBorderColor { border: 1px solid #7DD7CB; }
<div style="border:3px solid #7DD7CB">Div</div>
This div border color is #7DD7CB.
.myOpacity80 { color: #7DD7CB; opacity: 0.8; }
<p style="color:#7DD7CB;opacity:0.8;">80%</p>
Text with #7DD7CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DD7CB;}
<p style="text-shadow: 3px 3px 1px #7DD7CB">Text here.</p>
This text has shadow with #7DD7CB color.
.textShadow {text-shadow: 3px 3px 1px #7DD7CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DD7CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DD7CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DD7CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DD7CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DD7CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DD7CB; -webkit-box-shadow: 1px 1px 3px 2px #7DD7CB; box-shadow: 1px 1px 3px 2px #7DD7CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DD7CB; -webkit-box-shadow: 1px 1px 3px 2px #7DD7CB; box-shadow:1px 1px 3px 2px #7DD7CB;">
Div content here</div>
This text has color #7DD7CB on black background.
This text has color #7DD7CB on white background.
This text has black color on #7DD7CB background.
This text has white color on #7DD7CB background.