HEX: #7973AA
RGB: (121,115,170)
#7973AA contains red, green and blue colors in about the same proportion. Web safe color of #7973AA is #666699 (or #669).
#7973AA color RGB value is (121,115,170).
RGB: (121,115,170) (47%,45%,67%)
R 121 of 255 = 47%
G 115 of 255 = 45%
B 170 of 255 = 67%
R + G + B ~ 53%. #7973AA is middle color (not dark and not light).
R + G + B =
121 + 115 + 170 = 406 (100%)
R 121 of 406 ~ 29.8%
G 115 of 406 ~ 28.33%
B 170 of 406 ~ 41.87%
#7973AA color CMYK value is (29,32,0,33).
CMYK: (29,32,0,33) C29M32Y0K33 (29%,32%,0%,33%) (0.29/0.32/0.00/0.33)
79 | 73 | AA | |
---|---|---|---|
RGB | 121 | 115 | 170 |
HSL | 247° | 24.44% | 55.88% |
HSB/HSV | 247° | 32.35% | 66.67% |
CMYK | 28.82% | 32.35% | 0.00% |
33.33% |
HEX | 79 | 73 | AA |
Decimal | 121 | 115 | 170 |
Binary | 1111001 | 1110011 | 10101010 |
Octal | 171 | 163 | 252 |
Examples of css and html codes for elements with #7973AA color. Also use rgb(121,115,170) instead hex code.
.myTextColor { color: #7973AA; }
<p style="color:#7973AA">This sample text font color is #7973AA.</p>
This text font color is #7973AA.
.myBgColor { background-color: #7973AA; }
<div style="background-color:#7973AA">Inner text</div>
This div background color is #7973AA.
.myBorderColor { border: 1px solid #7973AA; }
<div style="border:3px solid #7973AA">Div</div>
This div border color is #7973AA.
.myOpacity80 { color: #7973AA; opacity: 0.8; }
<p style="color:#7973AA;opacity:0.8;">80%</p>
Text with #7973AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7973AA;}
<p style="text-shadow: 3px 3px 1px #7973AA">Text here.</p>
This text has shadow with #7973AA color.
.textShadow {text-shadow: 3px 3px 1px #7973AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7973AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #7973AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7973AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7973AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #7973AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7973AA; -webkit-box-shadow: 1px 1px 3px 2px #7973AA; box-shadow: 1px 1px 3px 2px #7973AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7973AA; -webkit-box-shadow: 1px 1px 3px 2px #7973AA; box-shadow:1px 1px 3px 2px #7973AA;">
Div content here</div>
This text has color #7973AA on black background.
This text has color #7973AA on white background.
This text has black color on #7973AA background.
This text has white color on #7973AA background.