HEX: #85EED1
RGB: (133,238,209)
#85EED1 contains mainly green and blue colors. Web safe color of #85EED1 is #99FFCC (or #9FC).
#85EED1 color RGB value is (133,238,209).
RGB: (133,238,209) (52%,93%,82%)
R 133 of 255 = 52%
G 238 of 255 = 93%
B 209 of 255 = 82%
R + G + B ~ 76%. #85EED1 is quite light color.
R + G + B =
133 + 238 + 209 = 580 (100%)
R 133 of 580 ~ 22.93%
G 238 of 580 ~ 41.03%
B 209 of 580 ~ 36.03%
#85EED1 color CMYK value is (44,0,12,7).
CMYK: (44,0,12,7) C44M0Y12K7 (44%,0%,12%,7%) (0.44/0.00/0.12/0.07)
85 | EE | D1 | |
---|---|---|---|
RGB | 133 | 238 | 209 |
HSL | 163° | 75.54% | 72.75% |
HSB/HSV | 163° | 44.12% | 93.33% |
CMYK | 44.12% | 0.00% | 12.18% |
6.67% |
HEX | 85 | EE | D1 |
Decimal | 133 | 238 | 209 |
Binary | 10000101 | 11101110 | 11010001 |
Octal | 205 | 356 | 321 |
Examples of css and html codes for elements with #85EED1 color. Also use rgb(133,238,209) instead hex code.
.myTextColor { color: #85EED1; }
<p style="color:#85EED1">This sample text font color is #85EED1.</p>
This text font color is #85EED1.
.myBgColor { background-color: #85EED1; }
<div style="background-color:#85EED1">Inner text</div>
This div background color is #85EED1.
.myBorderColor { border: 1px solid #85EED1; }
<div style="border:3px solid #85EED1">Div</div>
This div border color is #85EED1.
.myOpacity80 { color: #85EED1; opacity: 0.8; }
<p style="color:#85EED1;opacity:0.8;">80%</p>
Text with #85EED1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85EED1;}
<p style="text-shadow: 3px 3px 1px #85EED1">Text here.</p>
This text has shadow with #85EED1 color.
.textShadow {text-shadow: 3px 3px 1px #85EED1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85EED1, 5px 5px 20px red">Text here.</p>
This text has shadow with #85EED1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85EED1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85EED1, Direction=45, Strength=4)">Text</p>
This text has shadow with #85EED1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85EED1; -webkit-box-shadow: 1px 1px 3px 2px #85EED1; box-shadow: 1px 1px 3px 2px #85EED1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85EED1; -webkit-box-shadow: 1px 1px 3px 2px #85EED1; box-shadow:1px 1px 3px 2px #85EED1;">
Div content here</div>
This text has color #85EED1 on black background.
This text has color #85EED1 on white background.
This text has black color on #85EED1 background.
This text has white color on #85EED1 background.