HEX: #717FAF
RGB: (113,127,175)
#717FAF contains mainly green and blue colors. Web safe color of #717FAF is #666699 (or #669).
#717FAF color RGB value is (113,127,175).
RGB: (113,127,175) (44%,50%,69%)
R 113 of 255 = 44%
G 127 of 255 = 50%
B 175 of 255 = 69%
R + G + B ~ 54%. #717FAF is middle color (not dark and not light).
R + G + B =
113 + 127 + 175 = 415 (100%)
R 113 of 415 ~ 27.23%
G 127 of 415 ~ 30.6%
B 175 of 415 ~ 42.17%
#717FAF color CMYK value is (35,27,0,31).
CMYK: (35,27,0,31) C35M27Y0K31 (35%,27%,0%,31%) (0.35/0.27/0.00/0.31)
71 | 7F | AF | |
---|---|---|---|
RGB | 113 | 127 | 175 |
HSL | 226° | 27.93% | 56.47% |
HSB/HSV | 226° | 35.43% | 68.63% |
CMYK | 35.43% | 27.43% | 0.00% |
31.37% |
HEX | 71 | 7F | AF |
Decimal | 113 | 127 | 175 |
Binary | 1110001 | 1111111 | 10101111 |
Octal | 161 | 177 | 257 |
Examples of css and html codes for elements with #717FAF color. Also use rgb(113,127,175) instead hex code.
.myTextColor { color: #717FAF; }
<p style="color:#717FAF">This sample text font color is #717FAF.</p>
This text font color is #717FAF.
.myBgColor { background-color: #717FAF; }
<div style="background-color:#717FAF">Inner text</div>
This div background color is #717FAF.
.myBorderColor { border: 1px solid #717FAF; }
<div style="border:3px solid #717FAF">Div</div>
This div border color is #717FAF.
.myOpacity80 { color: #717FAF; opacity: 0.8; }
<p style="color:#717FAF;opacity:0.8;">80%</p>
Text with #717FAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #717FAF;}
<p style="text-shadow: 3px 3px 1px #717FAF">Text here.</p>
This text has shadow with #717FAF color.
.textShadow {text-shadow: 3px 3px 1px #717FAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #717FAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #717FAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#717FAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#717FAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #717FAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #717FAF; -webkit-box-shadow: 1px 1px 3px 2px #717FAF; box-shadow: 1px 1px 3px 2px #717FAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #717FAF; -webkit-box-shadow: 1px 1px 3px 2px #717FAF; box-shadow:1px 1px 3px 2px #717FAF;">
Div content here</div>
This text has color #717FAF on black background.
This text has color #717FAF on white background.
This text has black color on #717FAF background.
This text has white color on #717FAF background.