HEX: #A6EEE9
RGB: (166,238,233)
#A6EEE9 contains mainly green and blue colors. Web safe color of #A6EEE9 is #99FFFF (or #9FF).
#A6EEE9 color RGB value is (166,238,233).
RGB: (166,238,233) (65%,93%,91%)
R 166 of 255 = 65%
G 238 of 255 = 93%
B 233 of 255 = 91%
R + G + B ~ 83%. #A6EEE9 is quite light color.
R + G + B =
166 + 238 + 233 = 637 (100%)
R 166 of 637 ~ 26.06%
G 238 of 637 ~ 37.36%
B 233 of 637 ~ 36.58%
#A6EEE9 color CMYK value is (30,0,2,7).
CMYK: (30,0,2,7) C30M0Y2K7 (30%,0%,2%,7%) (0.30/0.00/0.02/0.07)
A6 | EE | E9 | |
---|---|---|---|
RGB | 166 | 238 | 233 |
HSL | 176° | 67.92% | 79.22% |
HSB/HSV | 176° | 30.25% | 93.33% |
CMYK | 30.25% | 0.00% | 2.10% |
6.67% |
HEX | A6 | EE | E9 |
Decimal | 166 | 238 | 233 |
Binary | 10100110 | 11101110 | 11101001 |
Octal | 246 | 356 | 351 |
Examples of css and html codes for elements with #A6EEE9 color. Also use rgb(166,238,233) instead hex code.
.myTextColor { color: #A6EEE9; }
<p style="color:#A6EEE9">This sample text font color is #A6EEE9.</p>
This text font color is #A6EEE9.
.myBgColor { background-color: #A6EEE9; }
<div style="background-color:#A6EEE9">Inner text</div>
This div background color is #A6EEE9.
.myBorderColor { border: 1px solid #A6EEE9; }
<div style="border:3px solid #A6EEE9">Div</div>
This div border color is #A6EEE9.
.myOpacity80 { color: #A6EEE9; opacity: 0.8; }
<p style="color:#A6EEE9;opacity:0.8;">80%</p>
Text with #A6EEE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6EEE9;}
<p style="text-shadow: 3px 3px 1px #A6EEE9">Text here.</p>
This text has shadow with #A6EEE9 color.
.textShadow {text-shadow: 3px 3px 1px #A6EEE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6EEE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6EEE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6EEE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6EEE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6EEE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6EEE9; -webkit-box-shadow: 1px 1px 3px 2px #A6EEE9; box-shadow: 1px 1px 3px 2px #A6EEE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6EEE9; -webkit-box-shadow: 1px 1px 3px 2px #A6EEE9; box-shadow:1px 1px 3px 2px #A6EEE9;">
Div content here</div>
This text has color #A6EEE9 on black background.
This text has color #A6EEE9 on white background.
This text has black color on #A6EEE9 background.
This text has white color on #A6EEE9 background.