HEX: #779CAD
RGB: (119,156,173)
#779CAD contains red, green and blue colors in about the same proportion. Web safe color of #779CAD is #669999 (or #699).
#779CAD color RGB value is (119,156,173).
RGB: (119,156,173) (47%,61%,68%)
R 119 of 255 = 47%
G 156 of 255 = 61%
B 173 of 255 = 68%
R + G + B ~ 59%. #779CAD is middle color (not dark and not light).
R + G + B =
119 + 156 + 173 = 448 (100%)
R 119 of 448 ~ 26.56%
G 156 of 448 ~ 34.82%
B 173 of 448 ~ 38.62%
#779CAD color CMYK value is (31,10,0,32).
CMYK: (31,10,0,32) C31M10Y0K32 (31%,10%,0%,32%) (0.31/0.10/0.00/0.32)
77 | 9C | AD | |
---|---|---|---|
RGB | 119 | 156 | 173 |
HSL | 199° | 24.77% | 57.25% |
HSB/HSV | 199° | 31.21% | 67.84% |
CMYK | 31.21% | 9.83% | 0.00% |
32.16% |
HEX | 77 | 9C | AD |
Decimal | 119 | 156 | 173 |
Binary | 1110111 | 10011100 | 10101101 |
Octal | 167 | 234 | 255 |
Examples of css and html codes for elements with #779CAD color. Also use rgb(119,156,173) instead hex code.
.myTextColor { color: #779CAD; }
<p style="color:#779CAD">This sample text font color is #779CAD.</p>
This text font color is #779CAD.
.myBgColor { background-color: #779CAD; }
<div style="background-color:#779CAD">Inner text</div>
This div background color is #779CAD.
.myBorderColor { border: 1px solid #779CAD; }
<div style="border:3px solid #779CAD">Div</div>
This div border color is #779CAD.
.myOpacity80 { color: #779CAD; opacity: 0.8; }
<p style="color:#779CAD;opacity:0.8;">80%</p>
Text with #779CAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #779CAD;}
<p style="text-shadow: 3px 3px 1px #779CAD">Text here.</p>
This text has shadow with #779CAD color.
.textShadow {text-shadow: 3px 3px 1px #779CAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #779CAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #779CAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#779CAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#779CAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #779CAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #779CAD; -webkit-box-shadow: 1px 1px 3px 2px #779CAD; box-shadow: 1px 1px 3px 2px #779CAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #779CAD; -webkit-box-shadow: 1px 1px 3px 2px #779CAD; box-shadow:1px 1px 3px 2px #779CAD;">
Div content here</div>
This text has color #779CAD on black background.
This text has color #779CAD on white background.
This text has black color on #779CAD background.
This text has white color on #779CAD background.