HEX: #A6E3DE
RGB: (166,227,222)
#A6E3DE contains mainly green and blue colors. Web safe color of #A6E3DE is #99CCCC (or #9CC).
#A6E3DE color RGB value is (166,227,222).
RGB: (166,227,222) (65%,89%,87%)
R 166 of 255 = 65%
G 227 of 255 = 89%
B 222 of 255 = 87%
R + G + B ~ 80%. #A6E3DE is quite light color.
R + G + B =
166 + 227 + 222 = 615 (100%)
R 166 of 615 ~ 26.99%
G 227 of 615 ~ 36.91%
B 222 of 615 ~ 36.1%
#A6E3DE color CMYK value is (27,0,2,11).
CMYK: (27,0,2,11) C27M0Y2K11 (27%,0%,2%,11%) (0.27/0.00/0.02/0.11)
A6 | E3 | DE | |
---|---|---|---|
RGB | 166 | 227 | 222 |
HSL | 175° | 52.14% | 77.06% |
HSB/HSV | 175° | 26.87% | 89.02% |
CMYK | 26.87% | 0.00% | 2.20% |
10.98% |
HEX | A6 | E3 | DE |
Decimal | 166 | 227 | 222 |
Binary | 10100110 | 11100011 | 11011110 |
Octal | 246 | 343 | 336 |
Examples of css and html codes for elements with #A6E3DE color. Also use rgb(166,227,222) instead hex code.
.myTextColor { color: #A6E3DE; }
<p style="color:#A6E3DE">This sample text font color is #A6E3DE.</p>
This text font color is #A6E3DE.
.myBgColor { background-color: #A6E3DE; }
<div style="background-color:#A6E3DE">Inner text</div>
This div background color is #A6E3DE.
.myBorderColor { border: 1px solid #A6E3DE; }
<div style="border:3px solid #A6E3DE">Div</div>
This div border color is #A6E3DE.
.myOpacity80 { color: #A6E3DE; opacity: 0.8; }
<p style="color:#A6E3DE;opacity:0.8;">80%</p>
Text with #A6E3DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6E3DE;}
<p style="text-shadow: 3px 3px 1px #A6E3DE">Text here.</p>
This text has shadow with #A6E3DE color.
.textShadow {text-shadow: 3px 3px 1px #A6E3DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6E3DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6E3DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6E3DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6E3DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6E3DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6E3DE; -webkit-box-shadow: 1px 1px 3px 2px #A6E3DE; box-shadow: 1px 1px 3px 2px #A6E3DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6E3DE; -webkit-box-shadow: 1px 1px 3px 2px #A6E3DE; box-shadow:1px 1px 3px 2px #A6E3DE;">
Div content here</div>
This text has color #A6E3DE on black background.
This text has color #A6E3DE on white background.
This text has black color on #A6E3DE background.
This text has white color on #A6E3DE background.