HEX: #7674AA
RGB: (118,116,170)
#7674AA contains red, green and blue colors in about the same proportion. Web safe color of #7674AA is #666699 (or #669).
#7674AA color RGB value is (118,116,170).
RGB: (118,116,170) (46%,45%,67%)
R 118 of 255 = 46%
G 116 of 255 = 45%
B 170 of 255 = 67%
R + G + B ~ 53%. #7674AA is middle color (not dark and not light).
R + G + B =
118 + 116 + 170 = 404 (100%)
R 118 of 404 ~ 29.21%
G 116 of 404 ~ 28.71%
B 170 of 404 ~ 42.08%
#7674AA color CMYK value is (31,32,0,33).
CMYK: (31,32,0,33) C31M32Y0K33 (31%,32%,0%,33%) (0.31/0.32/0.00/0.33)
76 | 74 | AA | |
---|---|---|---|
RGB | 118 | 116 | 170 |
HSL | 242° | 24.11% | 56.08% |
HSB/HSV | 242° | 31.76% | 66.67% |
CMYK | 30.59% | 31.76% | 0.00% |
33.33% |
HEX | 76 | 74 | AA |
Decimal | 118 | 116 | 170 |
Binary | 1110110 | 1110100 | 10101010 |
Octal | 166 | 164 | 252 |
Examples of css and html codes for elements with #7674AA color. Also use rgb(118,116,170) instead hex code.
.myTextColor { color: #7674AA; }
<p style="color:#7674AA">This sample text font color is #7674AA.</p>
This text font color is #7674AA.
.myBgColor { background-color: #7674AA; }
<div style="background-color:#7674AA">Inner text</div>
This div background color is #7674AA.
.myBorderColor { border: 1px solid #7674AA; }
<div style="border:3px solid #7674AA">Div</div>
This div border color is #7674AA.
.myOpacity80 { color: #7674AA; opacity: 0.8; }
<p style="color:#7674AA;opacity:0.8;">80%</p>
Text with #7674AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7674AA;}
<p style="text-shadow: 3px 3px 1px #7674AA">Text here.</p>
This text has shadow with #7674AA color.
.textShadow {text-shadow: 3px 3px 1px #7674AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7674AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #7674AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7674AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7674AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #7674AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7674AA; -webkit-box-shadow: 1px 1px 3px 2px #7674AA; box-shadow: 1px 1px 3px 2px #7674AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7674AA; -webkit-box-shadow: 1px 1px 3px 2px #7674AA; box-shadow:1px 1px 3px 2px #7674AA;">
Div content here</div>
This text has color #7674AA on black background.
This text has color #7674AA on white background.
This text has black color on #7674AA background.
This text has white color on #7674AA background.