HEX: #71A7FA
RGB: (113,167,250)
#71A7FA contains mainly blue color. Web safe color of #71A7FA is #6699FF (or #69F).
#71A7FA color RGB value is (113,167,250).
RGB: (113,167,250) (44%,65%,98%)
R 113 of 255 = 44%
G 167 of 255 = 65%
B 250 of 255 = 98%
R + G + B ~ 69%. #71A7FA is quite light color.
R + G + B =
113 + 167 + 250 = 530 (100%)
R 113 of 530 ~ 21.32%
G 167 of 530 ~ 31.51%
B 250 of 530 ~ 47.17%
#71A7FA color CMYK value is (55,33,0,2).
CMYK: (55,33,0,2) C55M33Y0K2 (55%,33%,0%,2%) (0.55/0.33/0.00/0.02)
71 | A7 | FA | |
---|---|---|---|
RGB | 113 | 167 | 250 |
HSL | 216° | 93.20% | 71.18% |
HSB/HSV | 216° | 54.80% | 98.04% |
CMYK | 54.80% | 33.20% | 0.00% |
1.96% |
HEX | 71 | A7 | FA |
Decimal | 113 | 167 | 250 |
Binary | 1110001 | 10100111 | 11111010 |
Octal | 161 | 247 | 372 |
Examples of css and html codes for elements with #71A7FA color. Also use rgb(113,167,250) instead hex code.
.myTextColor { color: #71A7FA; }
<p style="color:#71A7FA">This sample text font color is #71A7FA.</p>
This text font color is #71A7FA.
.myBgColor { background-color: #71A7FA; }
<div style="background-color:#71A7FA">Inner text</div>
This div background color is #71A7FA.
.myBorderColor { border: 1px solid #71A7FA; }
<div style="border:3px solid #71A7FA">Div</div>
This div border color is #71A7FA.
.myOpacity80 { color: #71A7FA; opacity: 0.8; }
<p style="color:#71A7FA;opacity:0.8;">80%</p>
Text with #71A7FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71A7FA;}
<p style="text-shadow: 3px 3px 1px #71A7FA">Text here.</p>
This text has shadow with #71A7FA color.
.textShadow {text-shadow: 3px 3px 1px #71A7FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71A7FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #71A7FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71A7FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71A7FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #71A7FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71A7FA; -webkit-box-shadow: 1px 1px 3px 2px #71A7FA; box-shadow: 1px 1px 3px 2px #71A7FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71A7FA; -webkit-box-shadow: 1px 1px 3px 2px #71A7FA; box-shadow:1px 1px 3px 2px #71A7FA;">
Div content here</div>
This text has color #71A7FA on black background.
This text has color #71A7FA on white background.
This text has black color on #71A7FA background.
This text has white color on #71A7FA background.