HEX: #7784AB
RGB: (119,132,171)
#7784AB contains red, green and blue colors in about the same proportion. Web safe color of #7784AB is #669999 (or #699).
#7784AB color RGB value is (119,132,171).
RGB: (119,132,171) (47%,52%,67%)
R 119 of 255 = 47%
G 132 of 255 = 52%
B 171 of 255 = 67%
R + G + B ~ 55%. #7784AB is middle color (not dark and not light).
R + G + B =
119 + 132 + 171 = 422 (100%)
R 119 of 422 ~ 28.2%
G 132 of 422 ~ 31.28%
B 171 of 422 ~ 40.52%
#7784AB color CMYK value is (30,23,0,33).
CMYK: (30,23,0,33) C30M23Y0K33 (30%,23%,0%,33%) (0.30/0.23/0.00/0.33)
77 | 84 | AB | |
---|---|---|---|
RGB | 119 | 132 | 171 |
HSL | 225° | 23.64% | 56.86% |
HSB/HSV | 225° | 30.41% | 67.06% |
CMYK | 30.41% | 22.81% | 0.00% |
32.94% |
HEX | 77 | 84 | AB |
Decimal | 119 | 132 | 171 |
Binary | 1110111 | 10000100 | 10101011 |
Octal | 167 | 204 | 253 |
Examples of css and html codes for elements with #7784AB color. Also use rgb(119,132,171) instead hex code.
.myTextColor { color: #7784AB; }
<p style="color:#7784AB">This sample text font color is #7784AB.</p>
This text font color is #7784AB.
.myBgColor { background-color: #7784AB; }
<div style="background-color:#7784AB">Inner text</div>
This div background color is #7784AB.
.myBorderColor { border: 1px solid #7784AB; }
<div style="border:3px solid #7784AB">Div</div>
This div border color is #7784AB.
.myOpacity80 { color: #7784AB; opacity: 0.8; }
<p style="color:#7784AB;opacity:0.8;">80%</p>
Text with #7784AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7784AB;}
<p style="text-shadow: 3px 3px 1px #7784AB">Text here.</p>
This text has shadow with #7784AB color.
.textShadow {text-shadow: 3px 3px 1px #7784AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7784AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7784AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7784AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7784AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7784AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7784AB; -webkit-box-shadow: 1px 1px 3px 2px #7784AB; box-shadow: 1px 1px 3px 2px #7784AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7784AB; -webkit-box-shadow: 1px 1px 3px 2px #7784AB; box-shadow:1px 1px 3px 2px #7784AB;">
Div content here</div>
This text has color #7784AB on black background.
This text has color #7784AB on white background.
This text has black color on #7784AB background.
This text has white color on #7784AB background.