HEX: #A6E9DB
RGB: (166,233,219)
#A6E9DB contains mainly green and blue colors. Web safe color of #A6E9DB is #99FFCC (or #9FC).
#A6E9DB color RGB value is (166,233,219).
RGB: (166,233,219) (65%,91%,86%)
R 166 of 255 = 65%
G 233 of 255 = 91%
B 219 of 255 = 86%
R + G + B ~ 81%. #A6E9DB is quite light color.
R + G + B =
166 + 233 + 219 = 618 (100%)
R 166 of 618 ~ 26.86%
G 233 of 618 ~ 37.7%
B 219 of 618 ~ 35.44%
#A6E9DB color CMYK value is (29,0,6,9).
CMYK: (29,0,6,9) C29M0Y6K9 (29%,0%,6%,9%) (0.29/0.00/0.06/0.09)
A6 | E9 | DB | |
---|---|---|---|
RGB | 166 | 233 | 219 |
HSL | 167° | 60.36% | 78.24% |
HSB/HSV | 167° | 28.76% | 91.37% |
CMYK | 28.76% | 0.00% | 6.01% |
8.63% |
HEX | A6 | E9 | DB |
Decimal | 166 | 233 | 219 |
Binary | 10100110 | 11101001 | 11011011 |
Octal | 246 | 351 | 333 |
Examples of css and html codes for elements with #A6E9DB color. Also use rgb(166,233,219) instead hex code.
.myTextColor { color: #A6E9DB; }
<p style="color:#A6E9DB">This sample text font color is #A6E9DB.</p>
This text font color is #A6E9DB.
.myBgColor { background-color: #A6E9DB; }
<div style="background-color:#A6E9DB">Inner text</div>
This div background color is #A6E9DB.
.myBorderColor { border: 1px solid #A6E9DB; }
<div style="border:3px solid #A6E9DB">Div</div>
This div border color is #A6E9DB.
.myOpacity80 { color: #A6E9DB; opacity: 0.8; }
<p style="color:#A6E9DB;opacity:0.8;">80%</p>
Text with #A6E9DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6E9DB;}
<p style="text-shadow: 3px 3px 1px #A6E9DB">Text here.</p>
This text has shadow with #A6E9DB color.
.textShadow {text-shadow: 3px 3px 1px #A6E9DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6E9DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6E9DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6E9DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6E9DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6E9DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6E9DB; -webkit-box-shadow: 1px 1px 3px 2px #A6E9DB; box-shadow: 1px 1px 3px 2px #A6E9DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6E9DB; -webkit-box-shadow: 1px 1px 3px 2px #A6E9DB; box-shadow:1px 1px 3px 2px #A6E9DB;">
Div content here</div>
This text has color #A6E9DB on black background.
This text has color #A6E9DB on white background.
This text has black color on #A6E9DB background.
This text has white color on #A6E9DB background.