HEX: #53804C
RGB: (83,128,76)
#53804C contains red, green and blue colors in about the same proportion. Web safe color of #53804C is #666633 (or #663).
#53804C color RGB value is (83,128,76).
RGB: (83,128,76) (33%,50%,30%)
R 83 of 255 = 33%
G 128 of 255 = 50%
B 76 of 255 = 30%
R + G + B ~ 38%. #53804C is quite dark color.
R + G + B =
83 + 128 + 76 = 287 (100%)
R 83 of 287 ~ 28.92%
G 128 of 287 ~ 44.6%
B 76 of 287 ~ 26.48%
#53804C color CMYK value is (35,0,41,50).
CMYK: (35,0,41,50) C35M0Y41K50 (35%,0%,41%,50%) (0.35/0.00/0.41/0.50)
53 | 80 | 4C | |
---|---|---|---|
RGB | 83 | 128 | 76 |
HSL | 112° | 25.49% | 40.00% |
HSB/HSV | 112° | 40.63% | 50.20% |
CMYK | 35.16% | 0.00% | 40.63% |
49.80% |
HEX | 53 | 80 | 4C |
Decimal | 83 | 128 | 76 |
Binary | 1010011 | 10000000 | 1001100 |
Octal | 123 | 200 | 114 |
Examples of css and html codes for elements with #53804C color. Also use rgb(83,128,76) instead hex code.
.myTextColor { color: #53804C; }
<p style="color:#53804C">This sample text font color is #53804C.</p>
This text font color is #53804C.
.myBgColor { background-color: #53804C; }
<div style="background-color:#53804C">Inner text</div>
This div background color is #53804C.
.myBorderColor { border: 1px solid #53804C; }
<div style="border:3px solid #53804C">Div</div>
This div border color is #53804C.
.myOpacity80 { color: #53804C; opacity: 0.8; }
<p style="color:#53804C;opacity:0.8;">80%</p>
Text with #53804C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53804C;}
<p style="text-shadow: 3px 3px 1px #53804C">Text here.</p>
This text has shadow with #53804C color.
.textShadow {text-shadow: 3px 3px 1px #53804C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53804C, 5px 5px 20px red">Text here.</p>
This text has shadow with #53804C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53804C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53804C, Direction=45, Strength=4)">Text</p>
This text has shadow with #53804C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53804C; -webkit-box-shadow: 1px 1px 3px 2px #53804C; box-shadow: 1px 1px 3px 2px #53804C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53804C; -webkit-box-shadow: 1px 1px 3px 2px #53804C; box-shadow:1px 1px 3px 2px #53804C;">
Div content here</div>
This text has color #53804C on black background.
This text has color #53804C on white background.
This text has black color on #53804C background.
This text has white color on #53804C background.