HEX: #53564D
RGB: (83,86,77)
#53564D contains red, green and blue colors in about the same proportion. Web safe color of #53564D is #666633 (or #663).
#53564D color RGB value is (83,86,77).
RGB: (83,86,77) (33%,34%,30%)
R 83 of 255 = 33%
G 86 of 255 = 34%
B 77 of 255 = 30%
R + G + B ~ 32%. #53564D is quite dark color.
R + G + B =
83 + 86 + 77 = 246 (100%)
R 83 of 246 ~ 33.74%
G 86 of 246 ~ 34.96%
B 77 of 246 ~ 31.3%
#53564D color CMYK value is (3,0,10,66).
CMYK: (3,0,10,66) C3M0Y10K66 (3%,0%,10%,66%) (0.03/0.00/0.10/0.66)
53 | 56 | 4D | |
---|---|---|---|
RGB | 83 | 86 | 77 |
HSL | 80° | 5.52% | 31.96% |
HSB/HSV | 80° | 10.47% | 33.73% |
CMYK | 3.49% | 0.00% | 10.47% |
66.27% |
HEX | 53 | 56 | 4D |
Decimal | 83 | 86 | 77 |
Binary | 1010011 | 1010110 | 1001101 |
Octal | 123 | 126 | 115 |
Examples of css and html codes for elements with #53564D color. Also use rgb(83,86,77) instead hex code.
.myTextColor { color: #53564D; }
<p style="color:#53564D">This sample text font color is #53564D.</p>
This text font color is #53564D.
.myBgColor { background-color: #53564D; }
<div style="background-color:#53564D">Inner text</div>
This div background color is #53564D.
.myBorderColor { border: 1px solid #53564D; }
<div style="border:3px solid #53564D">Div</div>
This div border color is #53564D.
.myOpacity80 { color: #53564D; opacity: 0.8; }
<p style="color:#53564D;opacity:0.8;">80%</p>
Text with #53564D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53564D;}
<p style="text-shadow: 3px 3px 1px #53564D">Text here.</p>
This text has shadow with #53564D color.
.textShadow {text-shadow: 3px 3px 1px #53564D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53564D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53564D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53564D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53564D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53564D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53564D; -webkit-box-shadow: 1px 1px 3px 2px #53564D; box-shadow: 1px 1px 3px 2px #53564D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53564D; -webkit-box-shadow: 1px 1px 3px 2px #53564D; box-shadow:1px 1px 3px 2px #53564D;">
Div content here</div>
This text has color #53564D on black background.
This text has color #53564D on white background.
This text has black color on #53564D background.
This text has white color on #53564D background.