HEX: #71D4CB
RGB: (113,212,203)
#71D4CB contains mainly green and blue colors. Web safe color of #71D4CB is #66CCCC (or #6CC).
#71D4CB color RGB value is (113,212,203).
RGB: (113,212,203) (44%,83%,80%)
R 113 of 255 = 44%
G 212 of 255 = 83%
B 203 of 255 = 80%
R + G + B ~ 69%. #71D4CB is quite light color.
R + G + B =
113 + 212 + 203 = 528 (100%)
R 113 of 528 ~ 21.4%
G 212 of 528 ~ 40.15%
B 203 of 528 ~ 38.45%
#71D4CB color CMYK value is (47,0,4,17).
CMYK: (47,0,4,17) C47M0Y4K17 (47%,0%,4%,17%) (0.47/0.00/0.04/0.17)
71 | D4 | CB | |
---|---|---|---|
RGB | 113 | 212 | 203 |
HSL | 175° | 53.51% | 63.73% |
HSB/HSV | 175° | 46.70% | 83.14% |
CMYK | 46.70% | 0.00% | 4.25% |
16.86% |
HEX | 71 | D4 | CB |
Decimal | 113 | 212 | 203 |
Binary | 1110001 | 11010100 | 11001011 |
Octal | 161 | 324 | 313 |
Examples of css and html codes for elements with #71D4CB color. Also use rgb(113,212,203) instead hex code.
.myTextColor { color: #71D4CB; }
<p style="color:#71D4CB">This sample text font color is #71D4CB.</p>
This text font color is #71D4CB.
.myBgColor { background-color: #71D4CB; }
<div style="background-color:#71D4CB">Inner text</div>
This div background color is #71D4CB.
.myBorderColor { border: 1px solid #71D4CB; }
<div style="border:3px solid #71D4CB">Div</div>
This div border color is #71D4CB.
.myOpacity80 { color: #71D4CB; opacity: 0.8; }
<p style="color:#71D4CB;opacity:0.8;">80%</p>
Text with #71D4CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71D4CB;}
<p style="text-shadow: 3px 3px 1px #71D4CB">Text here.</p>
This text has shadow with #71D4CB color.
.textShadow {text-shadow: 3px 3px 1px #71D4CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71D4CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #71D4CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71D4CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71D4CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #71D4CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71D4CB; -webkit-box-shadow: 1px 1px 3px 2px #71D4CB; box-shadow: 1px 1px 3px 2px #71D4CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71D4CB; -webkit-box-shadow: 1px 1px 3px 2px #71D4CB; box-shadow:1px 1px 3px 2px #71D4CB;">
Div content here</div>
This text has color #71D4CB on black background.
This text has color #71D4CB on white background.
This text has black color on #71D4CB background.
This text has white color on #71D4CB background.