HEX: #953E60
RGB: (149,62,96)
#953E60 contains mainly red and blue colors. Web safe color of #953E60 is #993366 (or #936).
#953E60 color RGB value is (149,62,96).
RGB: (149,62,96) (58%,24%,38%)
R 149 of 255 = 58%
G 62 of 255 = 24%
B 96 of 255 = 38%
R + G + B ~ 40%. #953E60 is middle color (not dark and not light).
R + G + B =
149 + 62 + 96 = 307 (100%)
R 149 of 307 ~ 48.53%
G 62 of 307 ~ 20.2%
B 96 of 307 ~ 31.27%
#953E60 color CMYK value is (0,58,36,42).
CMYK: (0,58,36,42) C0M58Y36K42 (0%,58%,36%,42%) (0.00/0.58/0.36/0.42)
95 | 3E | 60 | |
---|---|---|---|
RGB | 149 | 62 | 96 |
HSL | 337° | 41.23% | 41.37% |
HSB/HSV | 337° | 58.39% | 58.43% |
CMYK | 0.00% | 58.39% | 35.57% |
41.57% |
HEX | 95 | 3E | 60 |
Decimal | 149 | 62 | 96 |
Binary | 10010101 | 111110 | 1100000 |
Octal | 225 | 76 | 140 |
Examples of css and html codes for elements with #953E60 color. Also use rgb(149,62,96) instead hex code.
.myTextColor { color: #953E60; }
<p style="color:#953E60">This sample text font color is #953E60.</p>
This text font color is #953E60.
.myBgColor { background-color: #953E60; }
<div style="background-color:#953E60">Inner text</div>
This div background color is #953E60.
.myBorderColor { border: 1px solid #953E60; }
<div style="border:3px solid #953E60">Div</div>
This div border color is #953E60.
.myOpacity80 { color: #953E60; opacity: 0.8; }
<p style="color:#953E60;opacity:0.8;">80%</p>
Text with #953E60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #953E60;}
<p style="text-shadow: 3px 3px 1px #953E60">Text here.</p>
This text has shadow with #953E60 color.
.textShadow {text-shadow: 3px 3px 1px #953E60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #953E60, 5px 5px 20px red">Text here.</p>
This text has shadow with #953E60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#953E60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#953E60, Direction=45, Strength=4)">Text</p>
This text has shadow with #953E60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #953E60; -webkit-box-shadow: 1px 1px 3px 2px #953E60; box-shadow: 1px 1px 3px 2px #953E60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #953E60; -webkit-box-shadow: 1px 1px 3px 2px #953E60; box-shadow:1px 1px 3px 2px #953E60;">
Div content here</div>
This text has color #953E60 on black background.
This text has color #953E60 on white background.
This text has black color on #953E60 background.
This text has white color on #953E60 background.