HEX: #7D575B
RGB: (125,87,91)
#7D575B contains red, green and blue colors in about the same proportion. Web safe color of #7D575B is #666666 (or #666).
#7D575B color RGB value is (125,87,91).
RGB: (125,87,91) (49%,34%,36%)
R 125 of 255 = 49%
G 87 of 255 = 34%
B 91 of 255 = 36%
R + G + B ~ 40%. #7D575B is middle color (not dark and not light).
R + G + B =
125 + 87 + 91 = 303 (100%)
R 125 of 303 ~ 41.25%
G 87 of 303 ~ 28.71%
B 91 of 303 ~ 30.03%
#7D575B color CMYK value is (0,30,27,51).
CMYK: (0,30,27,51) C0M30Y27K51 (0%,30%,27%,51%) (0.00/0.30/0.27/0.51)
7D | 57 | 5B | |
---|---|---|---|
RGB | 125 | 87 | 91 |
HSL | 354° | 17.92% | 41.57% |
HSB/HSV | 354° | 30.40% | 49.02% |
CMYK | 0.00% | 30.40% | 27.20% |
50.98% |
HEX | 7D | 57 | 5B |
Decimal | 125 | 87 | 91 |
Binary | 1111101 | 1010111 | 1011011 |
Octal | 175 | 127 | 133 |
Examples of css and html codes for elements with #7D575B color. Also use rgb(125,87,91) instead hex code.
.myTextColor { color: #7D575B; }
<p style="color:#7D575B">This sample text font color is #7D575B.</p>
This text font color is #7D575B.
.myBgColor { background-color: #7D575B; }
<div style="background-color:#7D575B">Inner text</div>
This div background color is #7D575B.
.myBorderColor { border: 1px solid #7D575B; }
<div style="border:3px solid #7D575B">Div</div>
This div border color is #7D575B.
.myOpacity80 { color: #7D575B; opacity: 0.8; }
<p style="color:#7D575B;opacity:0.8;">80%</p>
Text with #7D575B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D575B;}
<p style="text-shadow: 3px 3px 1px #7D575B">Text here.</p>
This text has shadow with #7D575B color.
.textShadow {text-shadow: 3px 3px 1px #7D575B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D575B, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D575B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D575B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D575B, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D575B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D575B; -webkit-box-shadow: 1px 1px 3px 2px #7D575B; box-shadow: 1px 1px 3px 2px #7D575B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D575B; -webkit-box-shadow: 1px 1px 3px 2px #7D575B; box-shadow:1px 1px 3px 2px #7D575B;">
Div content here</div>
This text has color #7D575B on black background.
This text has color #7D575B on white background.
This text has black color on #7D575B background.
This text has white color on #7D575B background.