HEX: #53746D
RGB: (83,116,109)
#53746D contains red, green and blue colors in about the same proportion. Web safe color of #53746D is #666666 (or #666).
#53746D color RGB value is (83,116,109).
RGB: (83,116,109) (33%,45%,43%)
R 83 of 255 = 33%
G 116 of 255 = 45%
B 109 of 255 = 43%
R + G + B ~ 40%. #53746D is middle color (not dark and not light).
R + G + B =
83 + 116 + 109 = 308 (100%)
R 83 of 308 ~ 26.95%
G 116 of 308 ~ 37.66%
B 109 of 308 ~ 35.39%
#53746D color CMYK value is (28,0,6,55).
CMYK: (28,0,6,55) C28M0Y6K55 (28%,0%,6%,55%) (0.28/0.00/0.06/0.55)
53 | 74 | 6D | |
---|---|---|---|
RGB | 83 | 116 | 109 |
HSL | 167° | 16.58% | 39.02% |
HSB/HSV | 167° | 28.45% | 45.49% |
CMYK | 28.45% | 0.00% | 6.03% |
54.51% |
HEX | 53 | 74 | 6D |
Decimal | 83 | 116 | 109 |
Binary | 1010011 | 1110100 | 1101101 |
Octal | 123 | 164 | 155 |
Examples of css and html codes for elements with #53746D color. Also use rgb(83,116,109) instead hex code.
.myTextColor { color: #53746D; }
<p style="color:#53746D">This sample text font color is #53746D.</p>
This text font color is #53746D.
.myBgColor { background-color: #53746D; }
<div style="background-color:#53746D">Inner text</div>
This div background color is #53746D.
.myBorderColor { border: 1px solid #53746D; }
<div style="border:3px solid #53746D">Div</div>
This div border color is #53746D.
.myOpacity80 { color: #53746D; opacity: 0.8; }
<p style="color:#53746D;opacity:0.8;">80%</p>
Text with #53746D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53746D;}
<p style="text-shadow: 3px 3px 1px #53746D">Text here.</p>
This text has shadow with #53746D color.
.textShadow {text-shadow: 3px 3px 1px #53746D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53746D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53746D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53746D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53746D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53746D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53746D; -webkit-box-shadow: 1px 1px 3px 2px #53746D; box-shadow: 1px 1px 3px 2px #53746D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53746D; -webkit-box-shadow: 1px 1px 3px 2px #53746D; box-shadow:1px 1px 3px 2px #53746D;">
Div content here</div>
This text has color #53746D on black background.
This text has color #53746D on white background.
This text has black color on #53746D background.
This text has white color on #53746D background.