HEX: #71CEB6
RGB: (113,206,182)
#71CEB6 contains mainly green and blue colors. Web safe color of #71CEB6 is #66CCCC (or #6CC).
#71CEB6 color RGB value is (113,206,182).
RGB: (113,206,182) (44%,81%,71%)
R 113 of 255 = 44%
G 206 of 255 = 81%
B 182 of 255 = 71%
R + G + B ~ 65%. #71CEB6 is quite light color.
R + G + B =
113 + 206 + 182 = 501 (100%)
R 113 of 501 ~ 22.55%
G 206 of 501 ~ 41.12%
B 182 of 501 ~ 36.33%
#71CEB6 color CMYK value is (45,0,12,19).
CMYK: (45,0,12,19) C45M0Y12K19 (45%,0%,12%,19%) (0.45/0.00/0.12/0.19)
71 | CE | B6 | |
---|---|---|---|
RGB | 113 | 206 | 182 |
HSL | 165° | 48.69% | 62.55% |
HSB/HSV | 165° | 45.15% | 80.78% |
CMYK | 45.15% | 0.00% | 11.65% |
19.22% |
HEX | 71 | CE | B6 |
Decimal | 113 | 206 | 182 |
Binary | 1110001 | 11001110 | 10110110 |
Octal | 161 | 316 | 266 |
Examples of css and html codes for elements with #71CEB6 color. Also use rgb(113,206,182) instead hex code.
.myTextColor { color: #71CEB6; }
<p style="color:#71CEB6">This sample text font color is #71CEB6.</p>
This text font color is #71CEB6.
.myBgColor { background-color: #71CEB6; }
<div style="background-color:#71CEB6">Inner text</div>
This div background color is #71CEB6.
.myBorderColor { border: 1px solid #71CEB6; }
<div style="border:3px solid #71CEB6">Div</div>
This div border color is #71CEB6.
.myOpacity80 { color: #71CEB6; opacity: 0.8; }
<p style="color:#71CEB6;opacity:0.8;">80%</p>
Text with #71CEB6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71CEB6;}
<p style="text-shadow: 3px 3px 1px #71CEB6">Text here.</p>
This text has shadow with #71CEB6 color.
.textShadow {text-shadow: 3px 3px 1px #71CEB6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71CEB6, 5px 5px 20px red">Text here.</p>
This text has shadow with #71CEB6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71CEB6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71CEB6, Direction=45, Strength=4)">Text</p>
This text has shadow with #71CEB6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71CEB6; -webkit-box-shadow: 1px 1px 3px 2px #71CEB6; box-shadow: 1px 1px 3px 2px #71CEB6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71CEB6; -webkit-box-shadow: 1px 1px 3px 2px #71CEB6; box-shadow:1px 1px 3px 2px #71CEB6;">
Div content here</div>
This text has color #71CEB6 on black background.
This text has color #71CEB6 on white background.
This text has black color on #71CEB6 background.
This text has white color on #71CEB6 background.