HEX: #7D80AC
RGB: (125,128,172)
#7D80AC contains red, green and blue colors in about the same proportion. Web safe color of #7D80AC is #666699 (or #669).
#7D80AC color RGB value is (125,128,172).
RGB: (125,128,172) (49%,50%,67%)
R 125 of 255 = 49%
G 128 of 255 = 50%
B 172 of 255 = 67%
R + G + B ~ 55%. #7D80AC is middle color (not dark and not light).
R + G + B =
125 + 128 + 172 = 425 (100%)
R 125 of 425 ~ 29.41%
G 128 of 425 ~ 30.12%
B 172 of 425 ~ 40.47%
#7D80AC color CMYK value is (27,26,0,33).
CMYK: (27,26,0,33) C27M26Y0K33 (27%,26%,0%,33%) (0.27/0.26/0.00/0.33)
7D | 80 | AC | |
---|---|---|---|
RGB | 125 | 128 | 172 |
HSL | 236° | 22.07% | 58.24% |
HSB/HSV | 236° | 27.33% | 67.45% |
CMYK | 27.33% | 25.58% | 0.00% |
32.55% |
HEX | 7D | 80 | AC |
Decimal | 125 | 128 | 172 |
Binary | 1111101 | 10000000 | 10101100 |
Octal | 175 | 200 | 254 |
Examples of css and html codes for elements with #7D80AC color. Also use rgb(125,128,172) instead hex code.
.myTextColor { color: #7D80AC; }
<p style="color:#7D80AC">This sample text font color is #7D80AC.</p>
This text font color is #7D80AC.
.myBgColor { background-color: #7D80AC; }
<div style="background-color:#7D80AC">Inner text</div>
This div background color is #7D80AC.
.myBorderColor { border: 1px solid #7D80AC; }
<div style="border:3px solid #7D80AC">Div</div>
This div border color is #7D80AC.
.myOpacity80 { color: #7D80AC; opacity: 0.8; }
<p style="color:#7D80AC;opacity:0.8;">80%</p>
Text with #7D80AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D80AC;}
<p style="text-shadow: 3px 3px 1px #7D80AC">Text here.</p>
This text has shadow with #7D80AC color.
.textShadow {text-shadow: 3px 3px 1px #7D80AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D80AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D80AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D80AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D80AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D80AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D80AC; -webkit-box-shadow: 1px 1px 3px 2px #7D80AC; box-shadow: 1px 1px 3px 2px #7D80AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D80AC; -webkit-box-shadow: 1px 1px 3px 2px #7D80AC; box-shadow:1px 1px 3px 2px #7D80AC;">
Div content here</div>
This text has color #7D80AC on black background.
This text has color #7D80AC on white background.
This text has black color on #7D80AC background.
This text has white color on #7D80AC background.