HEX: #717FAD
RGB: (113,127,173)
#717FAD contains mainly green and blue colors. Web safe color of #717FAD is #666699 (or #669).
#717FAD color RGB value is (113,127,173).
RGB: (113,127,173) (44%,50%,68%)
R 113 of 255 = 44%
G 127 of 255 = 50%
B 173 of 255 = 68%
R + G + B ~ 54%. #717FAD is middle color (not dark and not light).
R + G + B =
113 + 127 + 173 = 413 (100%)
R 113 of 413 ~ 27.36%
G 127 of 413 ~ 30.75%
B 173 of 413 ~ 41.89%
#717FAD color CMYK value is (35,27,0,32).
CMYK: (35,27,0,32) C35M27Y0K32 (35%,27%,0%,32%) (0.35/0.27/0.00/0.32)
71 | 7F | AD | |
---|---|---|---|
RGB | 113 | 127 | 173 |
HSL | 226° | 26.79% | 56.08% |
HSB/HSV | 226° | 34.68% | 67.84% |
CMYK | 34.68% | 26.59% | 0.00% |
32.16% |
HEX | 71 | 7F | AD |
Decimal | 113 | 127 | 173 |
Binary | 1110001 | 1111111 | 10101101 |
Octal | 161 | 177 | 255 |
Examples of css and html codes for elements with #717FAD color. Also use rgb(113,127,173) instead hex code.
.myTextColor { color: #717FAD; }
<p style="color:#717FAD">This sample text font color is #717FAD.</p>
This text font color is #717FAD.
.myBgColor { background-color: #717FAD; }
<div style="background-color:#717FAD">Inner text</div>
This div background color is #717FAD.
.myBorderColor { border: 1px solid #717FAD; }
<div style="border:3px solid #717FAD">Div</div>
This div border color is #717FAD.
.myOpacity80 { color: #717FAD; opacity: 0.8; }
<p style="color:#717FAD;opacity:0.8;">80%</p>
Text with #717FAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #717FAD;}
<p style="text-shadow: 3px 3px 1px #717FAD">Text here.</p>
This text has shadow with #717FAD color.
.textShadow {text-shadow: 3px 3px 1px #717FAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #717FAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #717FAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#717FAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#717FAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #717FAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #717FAD; -webkit-box-shadow: 1px 1px 3px 2px #717FAD; box-shadow: 1px 1px 3px 2px #717FAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #717FAD; -webkit-box-shadow: 1px 1px 3px 2px #717FAD; box-shadow:1px 1px 3px 2px #717FAD;">
Div content here</div>
This text has color #717FAD on black background.
This text has color #717FAD on white background.
This text has black color on #717FAD background.
This text has white color on #717FAD background.