HEX: #717FD3
RGB: (113,127,211)
#717FD3 contains mainly blue color. Web safe color of #717FD3 is #6666CC (or #66C).
#717FD3 color RGB value is (113,127,211).
RGB: (113,127,211) (44%,50%,83%)
R 113 of 255 = 44%
G 127 of 255 = 50%
B 211 of 255 = 83%
R + G + B ~ 59%. #717FD3 is middle color (not dark and not light).
R + G + B =
113 + 127 + 211 = 451 (100%)
R 113 of 451 ~ 25.06%
G 127 of 451 ~ 28.16%
B 211 of 451 ~ 46.78%
#717FD3 color CMYK value is (46,40,0,17).
CMYK: (46,40,0,17) C46M40Y0K17 (46%,40%,0%,17%) (0.46/0.40/0.00/0.17)
71 | 7F | D3 | |
---|---|---|---|
RGB | 113 | 127 | 211 |
HSL | 231° | 52.69% | 63.53% |
HSB/HSV | 231° | 46.45% | 82.75% |
CMYK | 46.45% | 39.81% | 0.00% |
17.25% |
HEX | 71 | 7F | D3 |
Decimal | 113 | 127 | 211 |
Binary | 1110001 | 1111111 | 11010011 |
Octal | 161 | 177 | 323 |
Examples of css and html codes for elements with #717FD3 color. Also use rgb(113,127,211) instead hex code.
.myTextColor { color: #717FD3; }
<p style="color:#717FD3">This sample text font color is #717FD3.</p>
This text font color is #717FD3.
.myBgColor { background-color: #717FD3; }
<div style="background-color:#717FD3">Inner text</div>
This div background color is #717FD3.
.myBorderColor { border: 1px solid #717FD3; }
<div style="border:3px solid #717FD3">Div</div>
This div border color is #717FD3.
.myOpacity80 { color: #717FD3; opacity: 0.8; }
<p style="color:#717FD3;opacity:0.8;">80%</p>
Text with #717FD3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #717FD3;}
<p style="text-shadow: 3px 3px 1px #717FD3">Text here.</p>
This text has shadow with #717FD3 color.
.textShadow {text-shadow: 3px 3px 1px #717FD3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #717FD3, 5px 5px 20px red">Text here.</p>
This text has shadow with #717FD3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#717FD3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#717FD3, Direction=45, Strength=4)">Text</p>
This text has shadow with #717FD3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #717FD3; -webkit-box-shadow: 1px 1px 3px 2px #717FD3; box-shadow: 1px 1px 3px 2px #717FD3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #717FD3; -webkit-box-shadow: 1px 1px 3px 2px #717FD3; box-shadow:1px 1px 3px 2px #717FD3;">
Div content here</div>
This text has color #717FD3 on black background.
This text has color #717FD3 on white background.
This text has black color on #717FD3 background.
This text has white color on #717FD3 background.