HEX: #A6F9DE
RGB: (166,249,222)
#A6F9DE contains mainly green and blue colors. Web safe color of #A6F9DE is #99FFCC (or #9FC).
#A6F9DE color RGB value is (166,249,222).
RGB: (166,249,222) (65%,98%,87%)
R 166 of 255 = 65%
G 249 of 255 = 98%
B 222 of 255 = 87%
R + G + B ~ 83%. #A6F9DE is quite light color.
R + G + B =
166 + 249 + 222 = 637 (100%)
R 166 of 637 ~ 26.06%
G 249 of 637 ~ 39.09%
B 222 of 637 ~ 34.85%
#A6F9DE color CMYK value is (33,0,11,2).
CMYK: (33,0,11,2) C33M0Y11K2 (33%,0%,11%,2%) (0.33/0.00/0.11/0.02)
A6 | F9 | DE | |
---|---|---|---|
RGB | 166 | 249 | 222 |
HSL | 160° | 87.37% | 81.37% |
HSB/HSV | 160° | 33.33% | 97.65% |
CMYK | 33.33% | 0.00% | 10.84% |
2.35% |
HEX | A6 | F9 | DE |
Decimal | 166 | 249 | 222 |
Binary | 10100110 | 11111001 | 11011110 |
Octal | 246 | 371 | 336 |
Examples of css and html codes for elements with #A6F9DE color. Also use rgb(166,249,222) instead hex code.
.myTextColor { color: #A6F9DE; }
<p style="color:#A6F9DE">This sample text font color is #A6F9DE.</p>
This text font color is #A6F9DE.
.myBgColor { background-color: #A6F9DE; }
<div style="background-color:#A6F9DE">Inner text</div>
This div background color is #A6F9DE.
.myBorderColor { border: 1px solid #A6F9DE; }
<div style="border:3px solid #A6F9DE">Div</div>
This div border color is #A6F9DE.
.myOpacity80 { color: #A6F9DE; opacity: 0.8; }
<p style="color:#A6F9DE;opacity:0.8;">80%</p>
Text with #A6F9DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6F9DE;}
<p style="text-shadow: 3px 3px 1px #A6F9DE">Text here.</p>
This text has shadow with #A6F9DE color.
.textShadow {text-shadow: 3px 3px 1px #A6F9DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6F9DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6F9DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6F9DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6F9DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6F9DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6F9DE; -webkit-box-shadow: 1px 1px 3px 2px #A6F9DE; box-shadow: 1px 1px 3px 2px #A6F9DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6F9DE; -webkit-box-shadow: 1px 1px 3px 2px #A6F9DE; box-shadow:1px 1px 3px 2px #A6F9DE;">
Div content here</div>
This text has color #A6F9DE on black background.
This text has color #A6F9DE on white background.
This text has black color on #A6F9DE background.
This text has white color on #A6F9DE background.