HEX: #53B93C
RGB: (83,185,60)
#53B93C contains mainly green color. Web safe color of #53B93C is #66CC33 (or #6C3).
#53B93C color RGB value is (83,185,60).
RGB: (83,185,60) (33%,73%,24%)
R 83 of 255 = 33%
G 185 of 255 = 73%
B 60 of 255 = 24%
R + G + B ~ 43%. #53B93C is middle color (not dark and not light).
R + G + B =
83 + 185 + 60 = 328 (100%)
R 83 of 328 ~ 25.3%
G 185 of 328 ~ 56.4%
B 60 of 328 ~ 18.29%
#53B93C color CMYK value is (55,0,68,27).
CMYK: (55,0,68,27) C55M0Y68K27 (55%,0%,68%,27%) (0.55/0.00/0.68/0.27)
53 | B9 | 3C | |
---|---|---|---|
RGB | 83 | 185 | 60 |
HSL | 109° | 51.02% | 48.04% |
HSB/HSV | 109° | 67.57% | 72.55% |
CMYK | 55.14% | 0.00% | 67.57% |
27.45% |
HEX | 53 | B9 | 3C |
Decimal | 83 | 185 | 60 |
Binary | 1010011 | 10111001 | 111100 |
Octal | 123 | 271 | 74 |
Examples of css and html codes for elements with #53B93C color. Also use rgb(83,185,60) instead hex code.
.myTextColor { color: #53B93C; }
<p style="color:#53B93C">This sample text font color is #53B93C.</p>
This text font color is #53B93C.
.myBgColor { background-color: #53B93C; }
<div style="background-color:#53B93C">Inner text</div>
This div background color is #53B93C.
.myBorderColor { border: 1px solid #53B93C; }
<div style="border:3px solid #53B93C">Div</div>
This div border color is #53B93C.
.myOpacity80 { color: #53B93C; opacity: 0.8; }
<p style="color:#53B93C;opacity:0.8;">80%</p>
Text with #53B93C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53B93C;}
<p style="text-shadow: 3px 3px 1px #53B93C">Text here.</p>
This text has shadow with #53B93C color.
.textShadow {text-shadow: 3px 3px 1px #53B93C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53B93C, 5px 5px 20px red">Text here.</p>
This text has shadow with #53B93C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53B93C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53B93C, Direction=45, Strength=4)">Text</p>
This text has shadow with #53B93C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53B93C; -webkit-box-shadow: 1px 1px 3px 2px #53B93C; box-shadow: 1px 1px 3px 2px #53B93C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53B93C; -webkit-box-shadow: 1px 1px 3px 2px #53B93C; box-shadow:1px 1px 3px 2px #53B93C;">
Div content here</div>
This text has color #53B93C on black background.
This text has color #53B93C on white background.
This text has black color on #53B93C background.
This text has white color on #53B93C background.