HEX: #677CAC
RGB: (103,124,172)
#677CAC contains mainly green and blue colors. Web safe color of #677CAC is #666699 (or #669).
#677CAC color RGB value is (103,124,172).
RGB: (103,124,172) (40%,49%,67%)
R 103 of 255 = 40%
G 124 of 255 = 49%
B 172 of 255 = 67%
R + G + B ~ 52%. #677CAC is middle color (not dark and not light).
R + G + B =
103 + 124 + 172 = 399 (100%)
R 103 of 399 ~ 25.81%
G 124 of 399 ~ 31.08%
B 172 of 399 ~ 43.11%
#677CAC color CMYK value is (40,28,0,33).
CMYK: (40,28,0,33) C40M28Y0K33 (40%,28%,0%,33%) (0.40/0.28/0.00/0.33)
67 | 7C | AC | |
---|---|---|---|
RGB | 103 | 124 | 172 |
HSL | 222° | 29.36% | 53.92% |
HSB/HSV | 222° | 40.12% | 67.45% |
CMYK | 40.12% | 27.91% | 0.00% |
32.55% |
HEX | 67 | 7C | AC |
Decimal | 103 | 124 | 172 |
Binary | 1100111 | 1111100 | 10101100 |
Octal | 147 | 174 | 254 |
Examples of css and html codes for elements with #677CAC color. Also use rgb(103,124,172) instead hex code.
.myTextColor { color: #677CAC; }
<p style="color:#677CAC">This sample text font color is #677CAC.</p>
This text font color is #677CAC.
.myBgColor { background-color: #677CAC; }
<div style="background-color:#677CAC">Inner text</div>
This div background color is #677CAC.
.myBorderColor { border: 1px solid #677CAC; }
<div style="border:3px solid #677CAC">Div</div>
This div border color is #677CAC.
.myOpacity80 { color: #677CAC; opacity: 0.8; }
<p style="color:#677CAC;opacity:0.8;">80%</p>
Text with #677CAC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #677CAC;}
<p style="text-shadow: 3px 3px 1px #677CAC">Text here.</p>
This text has shadow with #677CAC color.
.textShadow {text-shadow: 3px 3px 1px #677CAC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #677CAC, 5px 5px 20px red">Text here.</p>
This text has shadow with #677CAC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#677CAC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#677CAC, Direction=45, Strength=4)">Text</p>
This text has shadow with #677CAC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #677CAC; -webkit-box-shadow: 1px 1px 3px 2px #677CAC; box-shadow: 1px 1px 3px 2px #677CAC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #677CAC; -webkit-box-shadow: 1px 1px 3px 2px #677CAC; box-shadow:1px 1px 3px 2px #677CAC;">
Div content here</div>
This text has color #677CAC on black background.
This text has color #677CAC on white background.
This text has black color on #677CAC background.
This text has white color on #677CAC background.