HEX: #53785D
RGB: (83,120,93)
#53785D contains red, green and blue colors in about the same proportion. Web safe color of #53785D is #666666 (or #666).
#53785D color RGB value is (83,120,93).
RGB: (83,120,93) (33%,47%,36%)
R 83 of 255 = 33%
G 120 of 255 = 47%
B 93 of 255 = 36%
R + G + B ~ 39%. #53785D is quite dark color.
R + G + B =
83 + 120 + 93 = 296 (100%)
R 83 of 296 ~ 28.04%
G 120 of 296 ~ 40.54%
B 93 of 296 ~ 31.42%
#53785D color CMYK value is (31,0,23,53).
CMYK: (31,0,23,53) C31M0Y23K53 (31%,0%,23%,53%) (0.31/0.00/0.23/0.53)
53 | 78 | 5D | |
---|---|---|---|
RGB | 83 | 120 | 93 |
HSL | 136° | 18.23% | 39.80% |
HSB/HSV | 136° | 30.83% | 47.06% |
CMYK | 30.83% | 0.00% | 22.50% |
52.94% |
HEX | 53 | 78 | 5D |
Decimal | 83 | 120 | 93 |
Binary | 1010011 | 1111000 | 1011101 |
Octal | 123 | 170 | 135 |
Examples of css and html codes for elements with #53785D color. Also use rgb(83,120,93) instead hex code.
.myTextColor { color: #53785D; }
<p style="color:#53785D">This sample text font color is #53785D.</p>
This text font color is #53785D.
.myBgColor { background-color: #53785D; }
<div style="background-color:#53785D">Inner text</div>
This div background color is #53785D.
.myBorderColor { border: 1px solid #53785D; }
<div style="border:3px solid #53785D">Div</div>
This div border color is #53785D.
.myOpacity80 { color: #53785D; opacity: 0.8; }
<p style="color:#53785D;opacity:0.8;">80%</p>
Text with #53785D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53785D;}
<p style="text-shadow: 3px 3px 1px #53785D">Text here.</p>
This text has shadow with #53785D color.
.textShadow {text-shadow: 3px 3px 1px #53785D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53785D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53785D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53785D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53785D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53785D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53785D; -webkit-box-shadow: 1px 1px 3px 2px #53785D; box-shadow: 1px 1px 3px 2px #53785D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53785D; -webkit-box-shadow: 1px 1px 3px 2px #53785D; box-shadow:1px 1px 3px 2px #53785D;">
Div content here</div>
This text has color #53785D on black background.
This text has color #53785D on white background.
This text has black color on #53785D background.
This text has white color on #53785D background.