HEX: #584F46
RGB: (88,79,70)
#584F46 contains red, green and blue colors in about the same proportion. Web safe color of #584F46 is #666633 (or #663).
#584F46 color RGB value is (88,79,70).
RGB: (88,79,70) (35%,31%,27%)
R 88 of 255 = 35%
G 79 of 255 = 31%
B 70 of 255 = 27%
R + G + B ~ 31%. #584F46 is quite dark color.
R + G + B =
88 + 79 + 70 = 237 (100%)
R 88 of 237 ~ 37.13%
G 79 of 237 ~ 33.33%
B 70 of 237 ~ 29.54%
#584F46 color CMYK value is (0,10,20,65).
CMYK: (0,10,20,65) C0M10Y20K65 (0%,10%,20%,65%) (0.00/0.10/0.20/0.65)
58 | 4F | 46 | |
---|---|---|---|
RGB | 88 | 79 | 70 |
HSL | 30° | 11.39% | 30.98% |
HSB/HSV | 30° | 20.45% | 34.51% |
CMYK | 0.00% | 10.23% | 20.45% |
65.49% |
HEX | 58 | 4F | 46 |
Decimal | 88 | 79 | 70 |
Binary | 1011000 | 1001111 | 1000110 |
Octal | 130 | 117 | 106 |
Examples of css and html codes for elements with #584F46 color. Also use rgb(88,79,70) instead hex code.
.myTextColor { color: #584F46; }
<p style="color:#584F46">This sample text font color is #584F46.</p>
This text font color is #584F46.
.myBgColor { background-color: #584F46; }
<div style="background-color:#584F46">Inner text</div>
This div background color is #584F46.
.myBorderColor { border: 1px solid #584F46; }
<div style="border:3px solid #584F46">Div</div>
This div border color is #584F46.
.myOpacity80 { color: #584F46; opacity: 0.8; }
<p style="color:#584F46;opacity:0.8;">80%</p>
Text with #584F46 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #584F46;}
<p style="text-shadow: 3px 3px 1px #584F46">Text here.</p>
This text has shadow with #584F46 color.
.textShadow {text-shadow: 3px 3px 1px #584F46, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #584F46, 5px 5px 20px red">Text here.</p>
This text has shadow with #584F46 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#584F46, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#584F46, Direction=45, Strength=4)">Text</p>
This text has shadow with #584F46 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #584F46; -webkit-box-shadow: 1px 1px 3px 2px #584F46; box-shadow: 1px 1px 3px 2px #584F46; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #584F46; -webkit-box-shadow: 1px 1px 3px 2px #584F46; box-shadow:1px 1px 3px 2px #584F46;">
Div content here</div>
This text has color #584F46 on black background.
This text has color #584F46 on white background.
This text has black color on #584F46 background.
This text has white color on #584F46 background.