HEX: #95557B
RGB: (149,85,123)
#95557B contains mainly red and blue colors. Web safe color of #95557B is #996666 (or #966).
#95557B color RGB value is (149,85,123).
RGB: (149,85,123) (58%,33%,48%)
R 149 of 255 = 58%
G 85 of 255 = 33%
B 123 of 255 = 48%
R + G + B ~ 46%. #95557B is middle color (not dark and not light).
R + G + B =
149 + 85 + 123 = 357 (100%)
R 149 of 357 ~ 41.74%
G 85 of 357 ~ 23.81%
B 123 of 357 ~ 34.45%
#95557B color CMYK value is (0,43,17,42).
CMYK: (0,43,17,42) C0M43Y17K42 (0%,43%,17%,42%) (0.00/0.43/0.17/0.42)
95 | 55 | 7B | |
---|---|---|---|
RGB | 149 | 85 | 123 |
HSL | 324° | 27.35% | 45.88% |
HSB/HSV | 324° | 42.95% | 58.43% |
CMYK | 0.00% | 42.95% | 17.45% |
41.57% |
HEX | 95 | 55 | 7B |
Decimal | 149 | 85 | 123 |
Binary | 10010101 | 1010101 | 1111011 |
Octal | 225 | 125 | 173 |
Examples of css and html codes for elements with #95557B color. Also use rgb(149,85,123) instead hex code.
.myTextColor { color: #95557B; }
<p style="color:#95557B">This sample text font color is #95557B.</p>
This text font color is #95557B.
.myBgColor { background-color: #95557B; }
<div style="background-color:#95557B">Inner text</div>
This div background color is #95557B.
.myBorderColor { border: 1px solid #95557B; }
<div style="border:3px solid #95557B">Div</div>
This div border color is #95557B.
.myOpacity80 { color: #95557B; opacity: 0.8; }
<p style="color:#95557B;opacity:0.8;">80%</p>
Text with #95557B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95557B;}
<p style="text-shadow: 3px 3px 1px #95557B">Text here.</p>
This text has shadow with #95557B color.
.textShadow {text-shadow: 3px 3px 1px #95557B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95557B, 5px 5px 20px red">Text here.</p>
This text has shadow with #95557B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95557B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95557B, Direction=45, Strength=4)">Text</p>
This text has shadow with #95557B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95557B; -webkit-box-shadow: 1px 1px 3px 2px #95557B; box-shadow: 1px 1px 3px 2px #95557B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95557B; -webkit-box-shadow: 1px 1px 3px 2px #95557B; box-shadow:1px 1px 3px 2px #95557B;">
Div content here</div>
This text has color #95557B on black background.
This text has color #95557B on white background.
This text has black color on #95557B background.
This text has white color on #95557B background.