HEX: #7B80AA
RGB: (123,128,170)
#7B80AA contains red, green and blue colors in about the same proportion. Web safe color of #7B80AA is #666699 (or #669).
#7B80AA color RGB value is (123,128,170).
RGB: (123,128,170) (48%,50%,67%)
R 123 of 255 = 48%
G 128 of 255 = 50%
B 170 of 255 = 67%
R + G + B ~ 55%. #7B80AA is middle color (not dark and not light).
R + G + B =
123 + 128 + 170 = 421 (100%)
R 123 of 421 ~ 29.22%
G 128 of 421 ~ 30.4%
B 170 of 421 ~ 40.38%
#7B80AA color CMYK value is (28,25,0,33).
CMYK: (28,25,0,33) C28M25Y0K33 (28%,25%,0%,33%) (0.28/0.25/0.00/0.33)
7B | 80 | AA | |
---|---|---|---|
RGB | 123 | 128 | 170 |
HSL | 234° | 21.66% | 57.45% |
HSB/HSV | 234° | 27.65% | 66.67% |
CMYK | 27.65% | 24.71% | 0.00% |
33.33% |
HEX | 7B | 80 | AA |
Decimal | 123 | 128 | 170 |
Binary | 1111011 | 10000000 | 10101010 |
Octal | 173 | 200 | 252 |
Examples of css and html codes for elements with #7B80AA color. Also use rgb(123,128,170) instead hex code.
.myTextColor { color: #7B80AA; }
<p style="color:#7B80AA">This sample text font color is #7B80AA.</p>
This text font color is #7B80AA.
.myBgColor { background-color: #7B80AA; }
<div style="background-color:#7B80AA">Inner text</div>
This div background color is #7B80AA.
.myBorderColor { border: 1px solid #7B80AA; }
<div style="border:3px solid #7B80AA">Div</div>
This div border color is #7B80AA.
.myOpacity80 { color: #7B80AA; opacity: 0.8; }
<p style="color:#7B80AA;opacity:0.8;">80%</p>
Text with #7B80AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7B80AA;}
<p style="text-shadow: 3px 3px 1px #7B80AA">Text here.</p>
This text has shadow with #7B80AA color.
.textShadow {text-shadow: 3px 3px 1px #7B80AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7B80AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #7B80AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7B80AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7B80AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #7B80AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7B80AA; -webkit-box-shadow: 1px 1px 3px 2px #7B80AA; box-shadow: 1px 1px 3px 2px #7B80AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7B80AA; -webkit-box-shadow: 1px 1px 3px 2px #7B80AA; box-shadow:1px 1px 3px 2px #7B80AA;">
Div content here</div>
This text has color #7B80AA on black background.
This text has color #7B80AA on white background.
This text has black color on #7B80AA background.
This text has white color on #7B80AA background.