HEX: #6EFBC9
RGB: (110,251,201)
#6EFBC9 contains mainly green and blue colors. Web safe color of #6EFBC9 is #66FFCC (or #6FC).
#6EFBC9 color RGB value is (110,251,201).
RGB: (110,251,201) (43%,98%,79%)
R 110 of 255 = 43%
G 251 of 255 = 98%
B 201 of 255 = 79%
R + G + B ~ 73%. #6EFBC9 is quite light color.
R + G + B =
110 + 251 + 201 = 562 (100%)
R 110 of 562 ~ 19.57%
G 251 of 562 ~ 44.66%
B 201 of 562 ~ 35.77%
#6EFBC9 color CMYK value is (56,0,20,2).
CMYK: (56,0,20,2) C56M0Y20K2 (56%,0%,20%,2%) (0.56/0.00/0.20/0.02)
6E | FB | C9 | |
---|---|---|---|
RGB | 110 | 251 | 201 |
HSL | 159° | 94.63% | 70.78% |
HSB/HSV | 159° | 56.18% | 98.43% |
CMYK | 56.18% | 0.00% | 19.92% |
1.57% |
HEX | 6E | FB | C9 |
Decimal | 110 | 251 | 201 |
Binary | 1101110 | 11111011 | 11001001 |
Octal | 156 | 373 | 311 |
Examples of css and html codes for elements with #6EFBC9 color. Also use rgb(110,251,201) instead hex code.
.myTextColor { color: #6EFBC9; }
<p style="color:#6EFBC9">This sample text font color is #6EFBC9.</p>
This text font color is #6EFBC9.
.myBgColor { background-color: #6EFBC9; }
<div style="background-color:#6EFBC9">Inner text</div>
This div background color is #6EFBC9.
.myBorderColor { border: 1px solid #6EFBC9; }
<div style="border:3px solid #6EFBC9">Div</div>
This div border color is #6EFBC9.
.myOpacity80 { color: #6EFBC9; opacity: 0.8; }
<p style="color:#6EFBC9;opacity:0.8;">80%</p>
Text with #6EFBC9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EFBC9;}
<p style="text-shadow: 3px 3px 1px #6EFBC9">Text here.</p>
This text has shadow with #6EFBC9 color.
.textShadow {text-shadow: 3px 3px 1px #6EFBC9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EFBC9, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EFBC9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EFBC9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EFBC9, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EFBC9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EFBC9; -webkit-box-shadow: 1px 1px 3px 2px #6EFBC9; box-shadow: 1px 1px 3px 2px #6EFBC9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EFBC9; -webkit-box-shadow: 1px 1px 3px 2px #6EFBC9; box-shadow:1px 1px 3px 2px #6EFBC9;">
Div content here</div>
This text has color #6EFBC9 on black background.
This text has color #6EFBC9 on white background.
This text has black color on #6EFBC9 background.
This text has white color on #6EFBC9 background.