HEX: #583241
RGB: (88,50,65)
#583241 contains red, green and blue colors in about the same proportion. Web safe color of #583241 is #663333 (or #633).
#583241 color RGB value is (88,50,65).
RGB: (88,50,65) (35%,20%,25%)
R 88 of 255 = 35%
G 50 of 255 = 20%
B 65 of 255 = 25%
R + G + B ~ 27%. #583241 is quite dark color.
R + G + B =
88 + 50 + 65 = 203 (100%)
R 88 of 203 ~ 43.35%
G 50 of 203 ~ 24.63%
B 65 of 203 ~ 32.02%
#583241 color CMYK value is (0,43,26,65).
CMYK: (0,43,26,65) C0M43Y26K65 (0%,43%,26%,65%) (0.00/0.43/0.26/0.65)
58 | 32 | 41 | |
---|---|---|---|
RGB | 88 | 50 | 65 |
HSL | 336° | 27.54% | 27.06% |
HSB/HSV | 336° | 43.18% | 34.51% |
CMYK | 0.00% | 43.18% | 26.14% |
65.49% |
HEX | 58 | 32 | 41 |
Decimal | 88 | 50 | 65 |
Binary | 1011000 | 110010 | 1000001 |
Octal | 130 | 62 | 101 |
Examples of css and html codes for elements with #583241 color. Also use rgb(88,50,65) instead hex code.
.myTextColor { color: #583241; }
<p style="color:#583241">This sample text font color is #583241.</p>
This text font color is #583241.
.myBgColor { background-color: #583241; }
<div style="background-color:#583241">Inner text</div>
This div background color is #583241.
.myBorderColor { border: 1px solid #583241; }
<div style="border:3px solid #583241">Div</div>
This div border color is #583241.
.myOpacity80 { color: #583241; opacity: 0.8; }
<p style="color:#583241;opacity:0.8;">80%</p>
Text with #583241 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #583241;}
<p style="text-shadow: 3px 3px 1px #583241">Text here.</p>
This text has shadow with #583241 color.
.textShadow {text-shadow: 3px 3px 1px #583241, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #583241, 5px 5px 20px red">Text here.</p>
This text has shadow with #583241 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#583241, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#583241, Direction=45, Strength=4)">Text</p>
This text has shadow with #583241 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #583241; -webkit-box-shadow: 1px 1px 3px 2px #583241; box-shadow: 1px 1px 3px 2px #583241; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #583241; -webkit-box-shadow: 1px 1px 3px 2px #583241; box-shadow:1px 1px 3px 2px #583241;">
Div content here</div>
This text has color #583241 on black background.
This text has color #583241 on white background.
This text has black color on #583241 background.
This text has white color on #583241 background.