HEX: #53BC6C
RGB: (83,188,108)
#53BC6C contains mainly green color. Web safe color of #53BC6C is #66CC66 (or #6C6).
#53BC6C color RGB value is (83,188,108).
RGB: (83,188,108) (33%,74%,42%)
R 83 of 255 = 33%
G 188 of 255 = 74%
B 108 of 255 = 42%
R + G + B ~ 50%. #53BC6C is middle color (not dark and not light).
R + G + B =
83 + 188 + 108 = 379 (100%)
R 83 of 379 ~ 21.9%
G 188 of 379 ~ 49.6%
B 108 of 379 ~ 28.5%
#53BC6C color CMYK value is (56,0,43,26).
CMYK: (56,0,43,26) C56M0Y43K26 (56%,0%,43%,26%) (0.56/0.00/0.43/0.26)
53 | BC | 6C | |
---|---|---|---|
RGB | 83 | 188 | 108 |
HSL | 134° | 43.93% | 53.14% |
HSB/HSV | 134° | 55.85% | 73.73% |
CMYK | 55.85% | 0.00% | 42.55% |
26.27% |
HEX | 53 | BC | 6C |
Decimal | 83 | 188 | 108 |
Binary | 1010011 | 10111100 | 1101100 |
Octal | 123 | 274 | 154 |
Examples of css and html codes for elements with #53BC6C color. Also use rgb(83,188,108) instead hex code.
.myTextColor { color: #53BC6C; }
<p style="color:#53BC6C">This sample text font color is #53BC6C.</p>
This text font color is #53BC6C.
.myBgColor { background-color: #53BC6C; }
<div style="background-color:#53BC6C">Inner text</div>
This div background color is #53BC6C.
.myBorderColor { border: 1px solid #53BC6C; }
<div style="border:3px solid #53BC6C">Div</div>
This div border color is #53BC6C.
.myOpacity80 { color: #53BC6C; opacity: 0.8; }
<p style="color:#53BC6C;opacity:0.8;">80%</p>
Text with #53BC6C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53BC6C;}
<p style="text-shadow: 3px 3px 1px #53BC6C">Text here.</p>
This text has shadow with #53BC6C color.
.textShadow {text-shadow: 3px 3px 1px #53BC6C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53BC6C, 5px 5px 20px red">Text here.</p>
This text has shadow with #53BC6C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53BC6C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53BC6C, Direction=45, Strength=4)">Text</p>
This text has shadow with #53BC6C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53BC6C; -webkit-box-shadow: 1px 1px 3px 2px #53BC6C; box-shadow: 1px 1px 3px 2px #53BC6C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53BC6C; -webkit-box-shadow: 1px 1px 3px 2px #53BC6C; box-shadow:1px 1px 3px 2px #53BC6C;">
Div content here</div>
This text has color #53BC6C on black background.
This text has color #53BC6C on white background.
This text has black color on #53BC6C background.
This text has white color on #53BC6C background.