HEX: #687FAA
RGB: (104,127,170)
#687FAA contains mainly green and blue colors. Web safe color of #687FAA is #666699 (or #669).
#687FAA color RGB value is (104,127,170).
RGB: (104,127,170) (41%,50%,67%)
R 104 of 255 = 41%
G 127 of 255 = 50%
B 170 of 255 = 67%
R + G + B ~ 53%. #687FAA is middle color (not dark and not light).
R + G + B =
104 + 127 + 170 = 401 (100%)
R 104 of 401 ~ 25.94%
G 127 of 401 ~ 31.67%
B 170 of 401 ~ 42.39%
#687FAA color CMYK value is (39,25,0,33).
CMYK: (39,25,0,33) C39M25Y0K33 (39%,25%,0%,33%) (0.39/0.25/0.00/0.33)
68 | 7F | AA | |
---|---|---|---|
RGB | 104 | 127 | 170 |
HSL | 219° | 27.97% | 53.73% |
HSB/HSV | 219° | 38.82% | 66.67% |
CMYK | 38.82% | 25.29% | 0.00% |
33.33% |
HEX | 68 | 7F | AA |
Decimal | 104 | 127 | 170 |
Binary | 1101000 | 1111111 | 10101010 |
Octal | 150 | 177 | 252 |
Examples of css and html codes for elements with #687FAA color. Also use rgb(104,127,170) instead hex code.
.myTextColor { color: #687FAA; }
<p style="color:#687FAA">This sample text font color is #687FAA.</p>
This text font color is #687FAA.
.myBgColor { background-color: #687FAA; }
<div style="background-color:#687FAA">Inner text</div>
This div background color is #687FAA.
.myBorderColor { border: 1px solid #687FAA; }
<div style="border:3px solid #687FAA">Div</div>
This div border color is #687FAA.
.myOpacity80 { color: #687FAA; opacity: 0.8; }
<p style="color:#687FAA;opacity:0.8;">80%</p>
Text with #687FAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #687FAA;}
<p style="text-shadow: 3px 3px 1px #687FAA">Text here.</p>
This text has shadow with #687FAA color.
.textShadow {text-shadow: 3px 3px 1px #687FAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #687FAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #687FAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#687FAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#687FAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #687FAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #687FAA; -webkit-box-shadow: 1px 1px 3px 2px #687FAA; box-shadow: 1px 1px 3px 2px #687FAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #687FAA; -webkit-box-shadow: 1px 1px 3px 2px #687FAA; box-shadow:1px 1px 3px 2px #687FAA;">
Div content here</div>
This text has color #687FAA on black background.
This text has color #687FAA on white background.
This text has black color on #687FAA background.
This text has white color on #687FAA background.