HEX: #55B571
RGB: (85,181,113)
#55B571 contains mainly green color. Web safe color of #55B571 is #66CC66 (or #6C6).
#55B571 color RGB value is (85,181,113).
RGB: (85,181,113) (33%,71%,44%)
R 85 of 255 = 33%
G 181 of 255 = 71%
B 113 of 255 = 44%
R + G + B ~ 49%. #55B571 is middle color (not dark and not light).
R + G + B =
85 + 181 + 113 = 379 (100%)
R 85 of 379 ~ 22.43%
G 181 of 379 ~ 47.76%
B 113 of 379 ~ 29.82%
#55B571 color CMYK value is (53,0,38,29).
CMYK: (53,0,38,29) C53M0Y38K29 (53%,0%,38%,29%) (0.53/0.00/0.38/0.29)
55 | B5 | 71 | |
---|---|---|---|
RGB | 85 | 181 | 113 |
HSL | 138° | 39.34% | 52.16% |
HSB/HSV | 138° | 53.04% | 70.98% |
CMYK | 53.04% | 0.00% | 37.57% |
29.02% |
HEX | 55 | B5 | 71 |
Decimal | 85 | 181 | 113 |
Binary | 1010101 | 10110101 | 1110001 |
Octal | 125 | 265 | 161 |
Examples of css and html codes for elements with #55B571 color. Also use rgb(85,181,113) instead hex code.
.myTextColor { color: #55B571; }
<p style="color:#55B571">This sample text font color is #55B571.</p>
This text font color is #55B571.
.myBgColor { background-color: #55B571; }
<div style="background-color:#55B571">Inner text</div>
This div background color is #55B571.
.myBorderColor { border: 1px solid #55B571; }
<div style="border:3px solid #55B571">Div</div>
This div border color is #55B571.
.myOpacity80 { color: #55B571; opacity: 0.8; }
<p style="color:#55B571;opacity:0.8;">80%</p>
Text with #55B571 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55B571;}
<p style="text-shadow: 3px 3px 1px #55B571">Text here.</p>
This text has shadow with #55B571 color.
.textShadow {text-shadow: 3px 3px 1px #55B571, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55B571, 5px 5px 20px red">Text here.</p>
This text has shadow with #55B571 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55B571, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55B571, Direction=45, Strength=4)">Text</p>
This text has shadow with #55B571 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55B571; -webkit-box-shadow: 1px 1px 3px 2px #55B571; box-shadow: 1px 1px 3px 2px #55B571; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55B571; -webkit-box-shadow: 1px 1px 3px 2px #55B571; box-shadow:1px 1px 3px 2px #55B571;">
Div content here</div>
This text has color #55B571 on black background.
This text has color #55B571 on white background.
This text has black color on #55B571 background.
This text has white color on #55B571 background.