HEX: #6EE4B8
RGB: (110,228,184)
#6EE4B8 contains mainly green and blue colors. Web safe color of #6EE4B8 is #66CCCC (or #6CC).
#6EE4B8 color RGB value is (110,228,184).
RGB: (110,228,184) (43%,89%,72%)
R 110 of 255 = 43%
G 228 of 255 = 89%
B 184 of 255 = 72%
R + G + B ~ 68%. #6EE4B8 is quite light color.
R + G + B =
110 + 228 + 184 = 522 (100%)
R 110 of 522 ~ 21.07%
G 228 of 522 ~ 43.68%
B 184 of 522 ~ 35.25%
#6EE4B8 color CMYK value is (52,0,19,11).
CMYK: (52,0,19,11) C52M0Y19K11 (52%,0%,19%,11%) (0.52/0.00/0.19/0.11)
6E | E4 | B8 | |
---|---|---|---|
RGB | 110 | 228 | 184 |
HSL | 158° | 68.60% | 66.27% |
HSB/HSV | 158° | 51.75% | 89.41% |
CMYK | 51.75% | 0.00% | 19.30% |
10.59% |
HEX | 6E | E4 | B8 |
Decimal | 110 | 228 | 184 |
Binary | 1101110 | 11100100 | 10111000 |
Octal | 156 | 344 | 270 |
Examples of css and html codes for elements with #6EE4B8 color. Also use rgb(110,228,184) instead hex code.
.myTextColor { color: #6EE4B8; }
<p style="color:#6EE4B8">This sample text font color is #6EE4B8.</p>
This text font color is #6EE4B8.
.myBgColor { background-color: #6EE4B8; }
<div style="background-color:#6EE4B8">Inner text</div>
This div background color is #6EE4B8.
.myBorderColor { border: 1px solid #6EE4B8; }
<div style="border:3px solid #6EE4B8">Div</div>
This div border color is #6EE4B8.
.myOpacity80 { color: #6EE4B8; opacity: 0.8; }
<p style="color:#6EE4B8;opacity:0.8;">80%</p>
Text with #6EE4B8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EE4B8;}
<p style="text-shadow: 3px 3px 1px #6EE4B8">Text here.</p>
This text has shadow with #6EE4B8 color.
.textShadow {text-shadow: 3px 3px 1px #6EE4B8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EE4B8, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EE4B8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EE4B8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EE4B8, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EE4B8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EE4B8; -webkit-box-shadow: 1px 1px 3px 2px #6EE4B8; box-shadow: 1px 1px 3px 2px #6EE4B8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EE4B8; -webkit-box-shadow: 1px 1px 3px 2px #6EE4B8; box-shadow:1px 1px 3px 2px #6EE4B8;">
Div content here</div>
This text has color #6EE4B8 on black background.
This text has color #6EE4B8 on white background.
This text has black color on #6EE4B8 background.
This text has white color on #6EE4B8 background.