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