HEX: #7D699D
RGB: (125,105,157)
#7D699D contains red, green and blue colors in about the same proportion. Web safe color of #7D699D is #666699 (or #669).
#7D699D color RGB value is (125,105,157).
RGB: (125,105,157) (49%,41%,62%)
R 125 of 255 = 49%
G 105 of 255 = 41%
B 157 of 255 = 62%
R + G + B ~ 51%. #7D699D is middle color (not dark and not light).
R + G + B =
125 + 105 + 157 = 387 (100%)
R 125 of 387 ~ 32.3%
G 105 of 387 ~ 27.13%
B 157 of 387 ~ 40.57%
#7D699D color CMYK value is (20,33,0,38).
CMYK: (20,33,0,38) C20M33Y0K38 (20%,33%,0%,38%) (0.20/0.33/0.00/0.38)
7D | 69 | 9D | |
---|---|---|---|
RGB | 125 | 105 | 157 |
HSL | 263° | 20.97% | 51.37% |
HSB/HSV | 263° | 33.12% | 61.57% |
CMYK | 20.38% | 33.12% | 0.00% |
38.43% |
HEX | 7D | 69 | 9D |
Decimal | 125 | 105 | 157 |
Binary | 1111101 | 1101001 | 10011101 |
Octal | 175 | 151 | 235 |
Examples of css and html codes for elements with #7D699D color. Also use rgb(125,105,157) instead hex code.
.myTextColor { color: #7D699D; }
<p style="color:#7D699D">This sample text font color is #7D699D.</p>
This text font color is #7D699D.
.myBgColor { background-color: #7D699D; }
<div style="background-color:#7D699D">Inner text</div>
This div background color is #7D699D.
.myBorderColor { border: 1px solid #7D699D; }
<div style="border:3px solid #7D699D">Div</div>
This div border color is #7D699D.
.myOpacity80 { color: #7D699D; opacity: 0.8; }
<p style="color:#7D699D;opacity:0.8;">80%</p>
Text with #7D699D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D699D;}
<p style="text-shadow: 3px 3px 1px #7D699D">Text here.</p>
This text has shadow with #7D699D color.
.textShadow {text-shadow: 3px 3px 1px #7D699D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D699D, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D699D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D699D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D699D, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D699D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D699D; -webkit-box-shadow: 1px 1px 3px 2px #7D699D; box-shadow: 1px 1px 3px 2px #7D699D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D699D; -webkit-box-shadow: 1px 1px 3px 2px #7D699D; box-shadow:1px 1px 3px 2px #7D699D;">
Div content here</div>
This text has color #7D699D on black background.
This text has color #7D699D on white background.
This text has black color on #7D699D background.
This text has white color on #7D699D background.