HEX: #53AE4D
RGB: (83,174,77)
#53AE4D contains mainly green color. Web safe color of #53AE4D is #669933 (or #693).
#53AE4D color RGB value is (83,174,77).
RGB: (83,174,77) (33%,68%,30%)
R 83 of 255 = 33%
G 174 of 255 = 68%
B 77 of 255 = 30%
R + G + B ~ 44%. #53AE4D is middle color (not dark and not light).
R + G + B =
83 + 174 + 77 = 334 (100%)
R 83 of 334 ~ 24.85%
G 174 of 334 ~ 52.1%
B 77 of 334 ~ 23.05%
#53AE4D color CMYK value is (52,0,56,32).
CMYK: (52,0,56,32) C52M0Y56K32 (52%,0%,56%,32%) (0.52/0.00/0.56/0.32)
53 | AE | 4D | |
---|---|---|---|
RGB | 83 | 174 | 77 |
HSL | 116° | 38.65% | 49.22% |
HSB/HSV | 116° | 55.75% | 68.24% |
CMYK | 52.30% | 0.00% | 55.75% |
31.76% |
HEX | 53 | AE | 4D |
Decimal | 83 | 174 | 77 |
Binary | 1010011 | 10101110 | 1001101 |
Octal | 123 | 256 | 115 |
Examples of css and html codes for elements with #53AE4D color. Also use rgb(83,174,77) instead hex code.
.myTextColor { color: #53AE4D; }
<p style="color:#53AE4D">This sample text font color is #53AE4D.</p>
This text font color is #53AE4D.
.myBgColor { background-color: #53AE4D; }
<div style="background-color:#53AE4D">Inner text</div>
This div background color is #53AE4D.
.myBorderColor { border: 1px solid #53AE4D; }
<div style="border:3px solid #53AE4D">Div</div>
This div border color is #53AE4D.
.myOpacity80 { color: #53AE4D; opacity: 0.8; }
<p style="color:#53AE4D;opacity:0.8;">80%</p>
Text with #53AE4D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53AE4D;}
<p style="text-shadow: 3px 3px 1px #53AE4D">Text here.</p>
This text has shadow with #53AE4D color.
.textShadow {text-shadow: 3px 3px 1px #53AE4D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53AE4D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53AE4D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53AE4D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53AE4D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53AE4D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53AE4D; -webkit-box-shadow: 1px 1px 3px 2px #53AE4D; box-shadow: 1px 1px 3px 2px #53AE4D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53AE4D; -webkit-box-shadow: 1px 1px 3px 2px #53AE4D; box-shadow:1px 1px 3px 2px #53AE4D;">
Div content here</div>
This text has color #53AE4D on black background.
This text has color #53AE4D on white background.
This text has black color on #53AE4D background.
This text has white color on #53AE4D background.