HEX: #95937D
RGB: (149,147,125)
#95937D contains red, green and blue colors in about the same proportion. Web safe color of #95937D is #999966 (or #996).
#95937D color RGB value is (149,147,125).
RGB: (149,147,125) (58%,58%,49%)
R 149 of 255 = 58%
G 147 of 255 = 58%
B 125 of 255 = 49%
R + G + B ~ 55%. #95937D is middle color (not dark and not light).
R + G + B =
149 + 147 + 125 = 421 (100%)
R 149 of 421 ~ 35.39%
G 147 of 421 ~ 34.92%
B 125 of 421 ~ 29.69%
#95937D color CMYK value is (0,1,16,42).
CMYK: (0,1,16,42) C0M1Y16K42 (0%,1%,16%,42%) (0.00/0.01/0.16/0.42)
95 | 93 | 7D | |
---|---|---|---|
RGB | 149 | 147 | 125 |
HSL | 55° | 10.17% | 53.73% |
HSB/HSV | 55° | 16.11% | 58.43% |
CMYK | 0.00% | 1.34% | 16.11% |
41.57% |
HEX | 95 | 93 | 7D |
Decimal | 149 | 147 | 125 |
Binary | 10010101 | 10010011 | 1111101 |
Octal | 225 | 223 | 175 |
Examples of css and html codes for elements with #95937D color. Also use rgb(149,147,125) instead hex code.
.myTextColor { color: #95937D; }
<p style="color:#95937D">This sample text font color is #95937D.</p>
This text font color is #95937D.
.myBgColor { background-color: #95937D; }
<div style="background-color:#95937D">Inner text</div>
This div background color is #95937D.
.myBorderColor { border: 1px solid #95937D; }
<div style="border:3px solid #95937D">Div</div>
This div border color is #95937D.
.myOpacity80 { color: #95937D; opacity: 0.8; }
<p style="color:#95937D;opacity:0.8;">80%</p>
Text with #95937D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95937D;}
<p style="text-shadow: 3px 3px 1px #95937D">Text here.</p>
This text has shadow with #95937D color.
.textShadow {text-shadow: 3px 3px 1px #95937D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95937D, 5px 5px 20px red">Text here.</p>
This text has shadow with #95937D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95937D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95937D, Direction=45, Strength=4)">Text</p>
This text has shadow with #95937D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95937D; -webkit-box-shadow: 1px 1px 3px 2px #95937D; box-shadow: 1px 1px 3px 2px #95937D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95937D; -webkit-box-shadow: 1px 1px 3px 2px #95937D; box-shadow:1px 1px 3px 2px #95937D;">
Div content here</div>
This text has color #95937D on black background.
This text has color #95937D on white background.
This text has black color on #95937D background.
This text has white color on #95937D background.