HEX: #A6BADA
RGB: (166,186,218)
#A6BADA contains red, green and blue colors in about the same proportion. Web safe color of #A6BADA is #99CCCC (or #9CC).
#A6BADA color RGB value is (166,186,218).
RGB: (166,186,218) (65%,73%,85%)
R 166 of 255 = 65%
G 186 of 255 = 73%
B 218 of 255 = 85%
R + G + B ~ 74%. #A6BADA is quite light color.
R + G + B =
166 + 186 + 218 = 570 (100%)
R 166 of 570 ~ 29.12%
G 186 of 570 ~ 32.63%
B 218 of 570 ~ 38.25%
#A6BADA color CMYK value is (24,15,0,15).
CMYK: (24,15,0,15) C24M15Y0K15 (24%,15%,0%,15%) (0.24/0.15/0.00/0.15)
A6 | BA | DA | |
---|---|---|---|
RGB | 166 | 186 | 218 |
HSL | 217° | 41.27% | 75.29% |
HSB/HSV | 217° | 23.85% | 85.49% |
CMYK | 23.85% | 14.68% | 0.00% |
14.51% |
HEX | A6 | BA | DA |
Decimal | 166 | 186 | 218 |
Binary | 10100110 | 10111010 | 11011010 |
Octal | 246 | 272 | 332 |
Examples of css and html codes for elements with #A6BADA color. Also use rgb(166,186,218) instead hex code.
.myTextColor { color: #A6BADA; }
<p style="color:#A6BADA">This sample text font color is #A6BADA.</p>
This text font color is #A6BADA.
.myBgColor { background-color: #A6BADA; }
<div style="background-color:#A6BADA">Inner text</div>
This div background color is #A6BADA.
.myBorderColor { border: 1px solid #A6BADA; }
<div style="border:3px solid #A6BADA">Div</div>
This div border color is #A6BADA.
.myOpacity80 { color: #A6BADA; opacity: 0.8; }
<p style="color:#A6BADA;opacity:0.8;">80%</p>
Text with #A6BADA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6BADA;}
<p style="text-shadow: 3px 3px 1px #A6BADA">Text here.</p>
This text has shadow with #A6BADA color.
.textShadow {text-shadow: 3px 3px 1px #A6BADA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6BADA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6BADA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6BADA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6BADA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6BADA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6BADA; -webkit-box-shadow: 1px 1px 3px 2px #A6BADA; box-shadow: 1px 1px 3px 2px #A6BADA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6BADA; -webkit-box-shadow: 1px 1px 3px 2px #A6BADA; box-shadow:1px 1px 3px 2px #A6BADA;">
Div content here</div>
This text has color #A6BADA on black background.
This text has color #A6BADA on white background.
This text has black color on #A6BADA background.
This text has white color on #A6BADA background.