HEX: #85C677
RGB: (133,198,119)
#85C677 contains mainly green color. Web safe color of #85C677 is #99CC66 (or #9C6).
#85C677 color RGB value is (133,198,119).
RGB: (133,198,119) (52%,78%,47%)
R 133 of 255 = 52%
G 198 of 255 = 78%
B 119 of 255 = 47%
R + G + B ~ 59%. #85C677 is middle color (not dark and not light).
R + G + B =
133 + 198 + 119 = 450 (100%)
R 133 of 450 ~ 29.56%
G 198 of 450 ~ 44%
B 119 of 450 ~ 26.44%
#85C677 color CMYK value is (33,0,40,22).
CMYK: (33,0,40,22) C33M0Y40K22 (33%,0%,40%,22%) (0.33/0.00/0.40/0.22)
85 | C6 | 77 | |
---|---|---|---|
RGB | 133 | 198 | 119 |
HSL | 109° | 40.93% | 62.16% |
HSB/HSV | 109° | 39.90% | 77.65% |
CMYK | 32.83% | 0.00% | 39.90% |
22.35% |
HEX | 85 | C6 | 77 |
Decimal | 133 | 198 | 119 |
Binary | 10000101 | 11000110 | 1110111 |
Octal | 205 | 306 | 167 |
Examples of css and html codes for elements with #85C677 color. Also use rgb(133,198,119) instead hex code.
.myTextColor { color: #85C677; }
<p style="color:#85C677">This sample text font color is #85C677.</p>
This text font color is #85C677.
.myBgColor { background-color: #85C677; }
<div style="background-color:#85C677">Inner text</div>
This div background color is #85C677.
.myBorderColor { border: 1px solid #85C677; }
<div style="border:3px solid #85C677">Div</div>
This div border color is #85C677.
.myOpacity80 { color: #85C677; opacity: 0.8; }
<p style="color:#85C677;opacity:0.8;">80%</p>
Text with #85C677 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85C677;}
<p style="text-shadow: 3px 3px 1px #85C677">Text here.</p>
This text has shadow with #85C677 color.
.textShadow {text-shadow: 3px 3px 1px #85C677, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85C677, 5px 5px 20px red">Text here.</p>
This text has shadow with #85C677 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85C677, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85C677, Direction=45, Strength=4)">Text</p>
This text has shadow with #85C677 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85C677; -webkit-box-shadow: 1px 1px 3px 2px #85C677; box-shadow: 1px 1px 3px 2px #85C677; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85C677; -webkit-box-shadow: 1px 1px 3px 2px #85C677; box-shadow:1px 1px 3px 2px #85C677;">
Div content here</div>
This text has color #85C677 on black background.
This text has color #85C677 on white background.
This text has black color on #85C677 background.
This text has white color on #85C677 background.