HEX: #53484D
RGB: (83,72,77)
#53484D contains red, green and blue colors in about the same proportion. Web safe color of #53484D is #663333 (or #633).
#53484D color RGB value is (83,72,77).
RGB: (83,72,77) (33%,28%,30%)
R 83 of 255 = 33%
G 72 of 255 = 28%
B 77 of 255 = 30%
R + G + B ~ 30%. #53484D is quite dark color.
R + G + B =
83 + 72 + 77 = 232 (100%)
R 83 of 232 ~ 35.78%
G 72 of 232 ~ 31.03%
B 77 of 232 ~ 33.19%
#53484D color CMYK value is (0,13,7,67).
CMYK: (0,13,7,67) C0M13Y7K67 (0%,13%,7%,67%) (0.00/0.13/0.07/0.67)
53 | 48 | 4D | |
---|---|---|---|
RGB | 83 | 72 | 77 |
HSL | 333° | 7.10% | 30.39% |
HSB/HSV | 333° | 13.25% | 32.55% |
CMYK | 0.00% | 13.25% | 7.23% |
67.45% |
HEX | 53 | 48 | 4D |
Decimal | 83 | 72 | 77 |
Binary | 1010011 | 1001000 | 1001101 |
Octal | 123 | 110 | 115 |
Examples of css and html codes for elements with #53484D color. Also use rgb(83,72,77) instead hex code.
.myTextColor { color: #53484D; }
<p style="color:#53484D">This sample text font color is #53484D.</p>
This text font color is #53484D.
.myBgColor { background-color: #53484D; }
<div style="background-color:#53484D">Inner text</div>
This div background color is #53484D.
.myBorderColor { border: 1px solid #53484D; }
<div style="border:3px solid #53484D">Div</div>
This div border color is #53484D.
.myOpacity80 { color: #53484D; opacity: 0.8; }
<p style="color:#53484D;opacity:0.8;">80%</p>
Text with #53484D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53484D;}
<p style="text-shadow: 3px 3px 1px #53484D">Text here.</p>
This text has shadow with #53484D color.
.textShadow {text-shadow: 3px 3px 1px #53484D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53484D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53484D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53484D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53484D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53484D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53484D; -webkit-box-shadow: 1px 1px 3px 2px #53484D; box-shadow: 1px 1px 3px 2px #53484D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53484D; -webkit-box-shadow: 1px 1px 3px 2px #53484D; box-shadow:1px 1px 3px 2px #53484D;">
Div content here</div>
This text has color #53484D on black background.
This text has color #53484D on white background.
This text has black color on #53484D background.
This text has white color on #53484D background.