HEX: #593231
RGB: (89,50,49)
#593231 contains red, green and blue colors in about the same proportion. Web safe color of #593231 is #663333 (or #633).
#593231 color RGB value is (89,50,49).
RGB: (89,50,49) (35%,20%,19%)
R 89 of 255 = 35%
G 50 of 255 = 20%
B 49 of 255 = 19%
R + G + B ~ 25%. #593231 is quite dark color.
R + G + B =
89 + 50 + 49 = 188 (100%)
R 89 of 188 ~ 47.34%
G 50 of 188 ~ 26.6%
B 49 of 188 ~ 26.06%
#593231 color CMYK value is (0,44,45,65).
CMYK: (0,44,45,65) C0M44Y45K65 (0%,44%,45%,65%) (0.00/0.44/0.45/0.65)
59 | 32 | 31 | |
---|---|---|---|
RGB | 89 | 50 | 49 |
HSL | 2° | 28.99% | 27.06% |
HSB/HSV | 1° | 44.94% | 34.90% |
CMYK | 0.00% | 43.82% | 44.94% |
65.10% |
HEX | 59 | 32 | 31 |
Decimal | 89 | 50 | 49 |
Binary | 1011001 | 110010 | 110001 |
Octal | 131 | 62 | 61 |
Examples of css and html codes for elements with #593231 color. Also use rgb(89,50,49) instead hex code.
.myTextColor { color: #593231; }
<p style="color:#593231">This sample text font color is #593231.</p>
This text font color is #593231.
.myBgColor { background-color: #593231; }
<div style="background-color:#593231">Inner text</div>
This div background color is #593231.
.myBorderColor { border: 1px solid #593231; }
<div style="border:3px solid #593231">Div</div>
This div border color is #593231.
.myOpacity80 { color: #593231; opacity: 0.8; }
<p style="color:#593231;opacity:0.8;">80%</p>
Text with #593231 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #593231;}
<p style="text-shadow: 3px 3px 1px #593231">Text here.</p>
This text has shadow with #593231 color.
.textShadow {text-shadow: 3px 3px 1px #593231, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #593231, 5px 5px 20px red">Text here.</p>
This text has shadow with #593231 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#593231, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#593231, Direction=45, Strength=4)">Text</p>
This text has shadow with #593231 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #593231; -webkit-box-shadow: 1px 1px 3px 2px #593231; box-shadow: 1px 1px 3px 2px #593231; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #593231; -webkit-box-shadow: 1px 1px 3px 2px #593231; box-shadow:1px 1px 3px 2px #593231;">
Div content here</div>
This text has color #593231 on black background.
This text has color #593231 on white background.
This text has black color on #593231 background.
This text has white color on #593231 background.