HEX: #71BEEC
RGB: (113,190,236)
#71BEEC contains mainly green and blue colors. Web safe color of #71BEEC is #66CCFF (or #6CF).
#71BEEC color RGB value is (113,190,236).
RGB: (113,190,236) (44%,75%,93%)
R 113 of 255 = 44%
G 190 of 255 = 75%
B 236 of 255 = 93%
R + G + B ~ 71%. #71BEEC is quite light color.
R + G + B =
113 + 190 + 236 = 539 (100%)
R 113 of 539 ~ 20.96%
G 190 of 539 ~ 35.25%
B 236 of 539 ~ 43.78%
#71BEEC color CMYK value is (52,19,0,7).
CMYK: (52,19,0,7) C52M19Y0K7 (52%,19%,0%,7%) (0.52/0.19/0.00/0.07)
71 | BE | EC | |
---|---|---|---|
RGB | 113 | 190 | 236 |
HSL | 202° | 76.40% | 68.43% |
HSB/HSV | 202° | 52.12% | 92.55% |
CMYK | 52.12% | 19.49% | 0.00% |
7.45% |
HEX | 71 | BE | EC |
Decimal | 113 | 190 | 236 |
Binary | 1110001 | 10111110 | 11101100 |
Octal | 161 | 276 | 354 |
Examples of css and html codes for elements with #71BEEC color. Also use rgb(113,190,236) instead hex code.
.myTextColor { color: #71BEEC; }
<p style="color:#71BEEC">This sample text font color is #71BEEC.</p>
This text font color is #71BEEC.
.myBgColor { background-color: #71BEEC; }
<div style="background-color:#71BEEC">Inner text</div>
This div background color is #71BEEC.
.myBorderColor { border: 1px solid #71BEEC; }
<div style="border:3px solid #71BEEC">Div</div>
This div border color is #71BEEC.
.myOpacity80 { color: #71BEEC; opacity: 0.8; }
<p style="color:#71BEEC;opacity:0.8;">80%</p>
Text with #71BEEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71BEEC;}
<p style="text-shadow: 3px 3px 1px #71BEEC">Text here.</p>
This text has shadow with #71BEEC color.
.textShadow {text-shadow: 3px 3px 1px #71BEEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71BEEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #71BEEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71BEEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71BEEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #71BEEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71BEEC; -webkit-box-shadow: 1px 1px 3px 2px #71BEEC; box-shadow: 1px 1px 3px 2px #71BEEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71BEEC; -webkit-box-shadow: 1px 1px 3px 2px #71BEEC; box-shadow:1px 1px 3px 2px #71BEEC;">
Div content here</div>
This text has color #71BEEC on black background.
This text has color #71BEEC on white background.
This text has black color on #71BEEC background.
This text has white color on #71BEEC background.