HEX: #584231
RGB: (88,66,49)
#584231 contains red, green and blue colors in about the same proportion. Web safe color of #584231 is #663333 (or #633).
#584231 color RGB value is (88,66,49).
RGB: (88,66,49) (35%,26%,19%)
R 88 of 255 = 35%
G 66 of 255 = 26%
B 49 of 255 = 19%
R + G + B ~ 27%. #584231 is quite dark color.
R + G + B =
88 + 66 + 49 = 203 (100%)
R 88 of 203 ~ 43.35%
G 66 of 203 ~ 32.51%
B 49 of 203 ~ 24.14%
#584231 color CMYK value is (0,25,44,65).
CMYK: (0,25,44,65) C0M25Y44K65 (0%,25%,44%,65%) (0.00/0.25/0.44/0.65)
58 | 42 | 31 | |
---|---|---|---|
RGB | 88 | 66 | 49 |
HSL | 26° | 28.47% | 26.86% |
HSB/HSV | 26° | 44.32% | 34.51% |
CMYK | 0.00% | 25.00% | 44.32% |
65.49% |
HEX | 58 | 42 | 31 |
Decimal | 88 | 66 | 49 |
Binary | 1011000 | 1000010 | 110001 |
Octal | 130 | 102 | 61 |
Examples of css and html codes for elements with #584231 color. Also use rgb(88,66,49) instead hex code.
.myTextColor { color: #584231; }
<p style="color:#584231">This sample text font color is #584231.</p>
This text font color is #584231.
.myBgColor { background-color: #584231; }
<div style="background-color:#584231">Inner text</div>
This div background color is #584231.
.myBorderColor { border: 1px solid #584231; }
<div style="border:3px solid #584231">Div</div>
This div border color is #584231.
.myOpacity80 { color: #584231; opacity: 0.8; }
<p style="color:#584231;opacity:0.8;">80%</p>
Text with #584231 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #584231;}
<p style="text-shadow: 3px 3px 1px #584231">Text here.</p>
This text has shadow with #584231 color.
.textShadow {text-shadow: 3px 3px 1px #584231, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #584231, 5px 5px 20px red">Text here.</p>
This text has shadow with #584231 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#584231, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#584231, Direction=45, Strength=4)">Text</p>
This text has shadow with #584231 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #584231; -webkit-box-shadow: 1px 1px 3px 2px #584231; box-shadow: 1px 1px 3px 2px #584231; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #584231; -webkit-box-shadow: 1px 1px 3px 2px #584231; box-shadow:1px 1px 3px 2px #584231;">
Div content here</div>
This text has color #584231 on black background.
This text has color #584231 on white background.
This text has black color on #584231 background.
This text has white color on #584231 background.