HEX: #53675C
RGB: (83,103,92)
#53675C contains red, green and blue colors in about the same proportion. Web safe color of #53675C is #666666 (or #666).
#53675C color RGB value is (83,103,92).
RGB: (83,103,92) (33%,40%,36%)
R 83 of 255 = 33%
G 103 of 255 = 40%
B 92 of 255 = 36%
R + G + B ~ 36%. #53675C is quite dark color.
R + G + B =
83 + 103 + 92 = 278 (100%)
R 83 of 278 ~ 29.86%
G 103 of 278 ~ 37.05%
B 92 of 278 ~ 33.09%
#53675C color CMYK value is (19,0,11,60).
CMYK: (19,0,11,60) C19M0Y11K60 (19%,0%,11%,60%) (0.19/0.00/0.11/0.60)
53 | 67 | 5C | |
---|---|---|---|
RGB | 83 | 103 | 92 |
HSL | 147° | 10.75% | 36.47% |
HSB/HSV | 147° | 19.42% | 40.39% |
CMYK | 19.42% | 0.00% | 10.68% |
59.61% |
HEX | 53 | 67 | 5C |
Decimal | 83 | 103 | 92 |
Binary | 1010011 | 1100111 | 1011100 |
Octal | 123 | 147 | 134 |
Examples of css and html codes for elements with #53675C color. Also use rgb(83,103,92) instead hex code.
.myTextColor { color: #53675C; }
<p style="color:#53675C">This sample text font color is #53675C.</p>
This text font color is #53675C.
.myBgColor { background-color: #53675C; }
<div style="background-color:#53675C">Inner text</div>
This div background color is #53675C.
.myBorderColor { border: 1px solid #53675C; }
<div style="border:3px solid #53675C">Div</div>
This div border color is #53675C.
.myOpacity80 { color: #53675C; opacity: 0.8; }
<p style="color:#53675C;opacity:0.8;">80%</p>
Text with #53675C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53675C;}
<p style="text-shadow: 3px 3px 1px #53675C">Text here.</p>
This text has shadow with #53675C color.
.textShadow {text-shadow: 3px 3px 1px #53675C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53675C, 5px 5px 20px red">Text here.</p>
This text has shadow with #53675C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53675C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53675C, Direction=45, Strength=4)">Text</p>
This text has shadow with #53675C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53675C; -webkit-box-shadow: 1px 1px 3px 2px #53675C; box-shadow: 1px 1px 3px 2px #53675C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53675C; -webkit-box-shadow: 1px 1px 3px 2px #53675C; box-shadow:1px 1px 3px 2px #53675C;">
Div content here</div>
This text has color #53675C on black background.
This text has color #53675C on white background.
This text has black color on #53675C background.
This text has white color on #53675C background.