HEX: #6EBBB4
RGB: (110,187,180)
#6EBBB4 contains mainly green and blue colors. Web safe color of #6EBBB4 is #66CCCC (or #6CC).
#6EBBB4 color RGB value is (110,187,180).
RGB: (110,187,180) (43%,73%,71%)
R 110 of 255 = 43%
G 187 of 255 = 73%
B 180 of 255 = 71%
R + G + B ~ 62%. #6EBBB4 is quite light color.
R + G + B =
110 + 187 + 180 = 477 (100%)
R 110 of 477 ~ 23.06%
G 187 of 477 ~ 39.2%
B 180 of 477 ~ 37.74%
#6EBBB4 color CMYK value is (41,0,4,27).
CMYK: (41,0,4,27) C41M0Y4K27 (41%,0%,4%,27%) (0.41/0.00/0.04/0.27)
6E | BB | B4 | |
---|---|---|---|
RGB | 110 | 187 | 180 |
HSL | 175° | 36.15% | 58.24% |
HSB/HSV | 175° | 41.18% | 73.33% |
CMYK | 41.18% | 0.00% | 3.74% |
26.67% |
HEX | 6E | BB | B4 |
Decimal | 110 | 187 | 180 |
Binary | 1101110 | 10111011 | 10110100 |
Octal | 156 | 273 | 264 |
Examples of css and html codes for elements with #6EBBB4 color. Also use rgb(110,187,180) instead hex code.
.myTextColor { color: #6EBBB4; }
<p style="color:#6EBBB4">This sample text font color is #6EBBB4.</p>
This text font color is #6EBBB4.
.myBgColor { background-color: #6EBBB4; }
<div style="background-color:#6EBBB4">Inner text</div>
This div background color is #6EBBB4.
.myBorderColor { border: 1px solid #6EBBB4; }
<div style="border:3px solid #6EBBB4">Div</div>
This div border color is #6EBBB4.
.myOpacity80 { color: #6EBBB4; opacity: 0.8; }
<p style="color:#6EBBB4;opacity:0.8;">80%</p>
Text with #6EBBB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EBBB4;}
<p style="text-shadow: 3px 3px 1px #6EBBB4">Text here.</p>
This text has shadow with #6EBBB4 color.
.textShadow {text-shadow: 3px 3px 1px #6EBBB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EBBB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EBBB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EBBB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EBBB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EBBB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EBBB4; -webkit-box-shadow: 1px 1px 3px 2px #6EBBB4; box-shadow: 1px 1px 3px 2px #6EBBB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EBBB4; -webkit-box-shadow: 1px 1px 3px 2px #6EBBB4; box-shadow:1px 1px 3px 2px #6EBBB4;">
Div content here</div>
This text has color #6EBBB4 on black background.
This text has color #6EBBB4 on white background.
This text has black color on #6EBBB4 background.
This text has white color on #6EBBB4 background.