HEX: #A6ABCF
RGB: (166,171,207)
#A6ABCF contains red, green and blue colors in about the same proportion. Web safe color of #A6ABCF is #9999CC (or #99C).
#A6ABCF color RGB value is (166,171,207).
RGB: (166,171,207) (65%,67%,81%)
R 166 of 255 = 65%
G 171 of 255 = 67%
B 207 of 255 = 81%
R + G + B ~ 71%. #A6ABCF is quite light color.
R + G + B =
166 + 171 + 207 = 544 (100%)
R 166 of 544 ~ 30.51%
G 171 of 544 ~ 31.43%
B 207 of 544 ~ 38.05%
#A6ABCF color CMYK value is (20,17,0,19).
CMYK: (20,17,0,19) C20M17Y0K19 (20%,17%,0%,19%) (0.20/0.17/0.00/0.19)
A6 | AB | CF | |
---|---|---|---|
RGB | 166 | 171 | 207 |
HSL | 233° | 29.93% | 73.14% |
HSB/HSV | 233° | 19.81% | 81.18% |
CMYK | 19.81% | 17.39% | 0.00% |
18.82% |
HEX | A6 | AB | CF |
Decimal | 166 | 171 | 207 |
Binary | 10100110 | 10101011 | 11001111 |
Octal | 246 | 253 | 317 |
Examples of css and html codes for elements with #A6ABCF color. Also use rgb(166,171,207) instead hex code.
.myTextColor { color: #A6ABCF; }
<p style="color:#A6ABCF">This sample text font color is #A6ABCF.</p>
This text font color is #A6ABCF.
.myBgColor { background-color: #A6ABCF; }
<div style="background-color:#A6ABCF">Inner text</div>
This div background color is #A6ABCF.
.myBorderColor { border: 1px solid #A6ABCF; }
<div style="border:3px solid #A6ABCF">Div</div>
This div border color is #A6ABCF.
.myOpacity80 { color: #A6ABCF; opacity: 0.8; }
<p style="color:#A6ABCF;opacity:0.8;">80%</p>
Text with #A6ABCF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6ABCF;}
<p style="text-shadow: 3px 3px 1px #A6ABCF">Text here.</p>
This text has shadow with #A6ABCF color.
.textShadow {text-shadow: 3px 3px 1px #A6ABCF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6ABCF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6ABCF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6ABCF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6ABCF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6ABCF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6ABCF; -webkit-box-shadow: 1px 1px 3px 2px #A6ABCF; box-shadow: 1px 1px 3px 2px #A6ABCF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6ABCF; -webkit-box-shadow: 1px 1px 3px 2px #A6ABCF; box-shadow:1px 1px 3px 2px #A6ABCF;">
Div content here</div>
This text has color #A6ABCF on black background.
This text has color #A6ABCF on white background.
This text has black color on #A6ABCF background.
This text has white color on #A6ABCF background.