HEX: #A6EADE
RGB: (166,234,222)
#A6EADE contains mainly green and blue colors. Web safe color of #A6EADE is #99FFCC (or #9FC).
#A6EADE color RGB value is (166,234,222).
RGB: (166,234,222) (65%,92%,87%)
R 166 of 255 = 65%
G 234 of 255 = 92%
B 222 of 255 = 87%
R + G + B ~ 81%. #A6EADE is quite light color.
R + G + B =
166 + 234 + 222 = 622 (100%)
R 166 of 622 ~ 26.69%
G 234 of 622 ~ 37.62%
B 222 of 622 ~ 35.69%
#A6EADE color CMYK value is (29,0,5,8).
CMYK: (29,0,5,8) C29M0Y5K8 (29%,0%,5%,8%) (0.29/0.00/0.05/0.08)
A6 | EA | DE | |
---|---|---|---|
RGB | 166 | 234 | 222 |
HSL | 169° | 61.82% | 78.43% |
HSB/HSV | 169° | 29.06% | 91.76% |
CMYK | 29.06% | 0.00% | 5.13% |
8.24% |
HEX | A6 | EA | DE |
Decimal | 166 | 234 | 222 |
Binary | 10100110 | 11101010 | 11011110 |
Octal | 246 | 352 | 336 |
Examples of css and html codes for elements with #A6EADE color. Also use rgb(166,234,222) instead hex code.
.myTextColor { color: #A6EADE; }
<p style="color:#A6EADE">This sample text font color is #A6EADE.</p>
This text font color is #A6EADE.
.myBgColor { background-color: #A6EADE; }
<div style="background-color:#A6EADE">Inner text</div>
This div background color is #A6EADE.
.myBorderColor { border: 1px solid #A6EADE; }
<div style="border:3px solid #A6EADE">Div</div>
This div border color is #A6EADE.
.myOpacity80 { color: #A6EADE; opacity: 0.8; }
<p style="color:#A6EADE;opacity:0.8;">80%</p>
Text with #A6EADE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6EADE;}
<p style="text-shadow: 3px 3px 1px #A6EADE">Text here.</p>
This text has shadow with #A6EADE color.
.textShadow {text-shadow: 3px 3px 1px #A6EADE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6EADE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6EADE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6EADE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6EADE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6EADE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6EADE; -webkit-box-shadow: 1px 1px 3px 2px #A6EADE; box-shadow: 1px 1px 3px 2px #A6EADE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6EADE; -webkit-box-shadow: 1px 1px 3px 2px #A6EADE; box-shadow:1px 1px 3px 2px #A6EADE;">
Div content here</div>
This text has color #A6EADE on black background.
This text has color #A6EADE on white background.
This text has black color on #A6EADE background.
This text has white color on #A6EADE background.