HEX: #55CB2B
RGB: (85,203,43)
#55CB2B contains mainly green color. Web safe color of #55CB2B is #66CC33 (or #6C3).
#55CB2B color RGB value is (85,203,43).
RGB: (85,203,43) (33%,80%,17%)
R 85 of 255 = 33%
G 203 of 255 = 80%
B 43 of 255 = 17%
R + G + B ~ 43%. #55CB2B is middle color (not dark and not light).
R + G + B =
85 + 203 + 43 = 331 (100%)
R 85 of 331 ~ 25.68%
G 203 of 331 ~ 61.33%
B 43 of 331 ~ 12.99%
#55CB2B color CMYK value is (58,0,79,20).
CMYK: (58,0,79,20) C58M0Y79K20 (58%,0%,79%,20%) (0.58/0.00/0.79/0.20)
55 | CB | 2B | |
---|---|---|---|
RGB | 85 | 203 | 43 |
HSL | 104° | 65.04% | 48.24% |
HSB/HSV | 104° | 78.82% | 79.61% |
CMYK | 58.13% | 0.00% | 78.82% |
20.39% |
HEX | 55 | CB | 2B |
Decimal | 85 | 203 | 43 |
Binary | 1010101 | 11001011 | 101011 |
Octal | 125 | 313 | 53 |
Examples of css and html codes for elements with #55CB2B color. Also use rgb(85,203,43) instead hex code.
.myTextColor { color: #55CB2B; }
<p style="color:#55CB2B">This sample text font color is #55CB2B.</p>
This text font color is #55CB2B.
.myBgColor { background-color: #55CB2B; }
<div style="background-color:#55CB2B">Inner text</div>
This div background color is #55CB2B.
.myBorderColor { border: 1px solid #55CB2B; }
<div style="border:3px solid #55CB2B">Div</div>
This div border color is #55CB2B.
.myOpacity80 { color: #55CB2B; opacity: 0.8; }
<p style="color:#55CB2B;opacity:0.8;">80%</p>
Text with #55CB2B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55CB2B;}
<p style="text-shadow: 3px 3px 1px #55CB2B">Text here.</p>
This text has shadow with #55CB2B color.
.textShadow {text-shadow: 3px 3px 1px #55CB2B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55CB2B, 5px 5px 20px red">Text here.</p>
This text has shadow with #55CB2B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55CB2B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55CB2B, Direction=45, Strength=4)">Text</p>
This text has shadow with #55CB2B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55CB2B; -webkit-box-shadow: 1px 1px 3px 2px #55CB2B; box-shadow: 1px 1px 3px 2px #55CB2B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55CB2B; -webkit-box-shadow: 1px 1px 3px 2px #55CB2B; box-shadow:1px 1px 3px 2px #55CB2B;">
Div content here</div>
This text has color #55CB2B on black background.
This text has color #55CB2B on white background.
This text has black color on #55CB2B background.
This text has white color on #55CB2B background.