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