HEX: #55713D
RGB: (85,113,61)
#55713D contains red, green and blue colors in about the same proportion. Web safe color of #55713D is #666633 (or #663).
#55713D color RGB value is (85,113,61).
RGB: (85,113,61) (33%,44%,24%)
R 85 of 255 = 33%
G 113 of 255 = 44%
B 61 of 255 = 24%
R + G + B ~ 34%. #55713D is quite dark color.
R + G + B =
85 + 113 + 61 = 259 (100%)
R 85 of 259 ~ 32.82%
G 113 of 259 ~ 43.63%
B 61 of 259 ~ 23.55%
#55713D color CMYK value is (25,0,46,56).
CMYK: (25,0,46,56) C25M0Y46K56 (25%,0%,46%,56%) (0.25/0.00/0.46/0.56)
55 | 71 | 3D | |
---|---|---|---|
RGB | 85 | 113 | 61 |
HSL | 92° | 29.89% | 34.12% |
HSB/HSV | 92° | 46.02% | 44.31% |
CMYK | 24.78% | 0.00% | 46.02% |
55.69% |
HEX | 55 | 71 | 3D |
Decimal | 85 | 113 | 61 |
Binary | 1010101 | 1110001 | 111101 |
Octal | 125 | 161 | 75 |
Examples of css and html codes for elements with #55713D color. Also use rgb(85,113,61) instead hex code.
.myTextColor { color: #55713D; }
<p style="color:#55713D">This sample text font color is #55713D.</p>
This text font color is #55713D.
.myBgColor { background-color: #55713D; }
<div style="background-color:#55713D">Inner text</div>
This div background color is #55713D.
.myBorderColor { border: 1px solid #55713D; }
<div style="border:3px solid #55713D">Div</div>
This div border color is #55713D.
.myOpacity80 { color: #55713D; opacity: 0.8; }
<p style="color:#55713D;opacity:0.8;">80%</p>
Text with #55713D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55713D;}
<p style="text-shadow: 3px 3px 1px #55713D">Text here.</p>
This text has shadow with #55713D color.
.textShadow {text-shadow: 3px 3px 1px #55713D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55713D, 5px 5px 20px red">Text here.</p>
This text has shadow with #55713D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55713D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55713D, Direction=45, Strength=4)">Text</p>
This text has shadow with #55713D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55713D; -webkit-box-shadow: 1px 1px 3px 2px #55713D; box-shadow: 1px 1px 3px 2px #55713D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55713D; -webkit-box-shadow: 1px 1px 3px 2px #55713D; box-shadow:1px 1px 3px 2px #55713D;">
Div content here</div>
This text has color #55713D on black background.
This text has color #55713D on white background.
This text has black color on #55713D background.
This text has white color on #55713D background.