HEX: #A64BDD
RGB: (166,75,221)
#A64BDD contains mainly red and blue colors. Web safe color of #A64BDD is #9933CC (or #93C).
#A64BDD color RGB value is (166,75,221).
RGB: (166,75,221) (65%,29%,87%)
R 166 of 255 = 65%
G 75 of 255 = 29%
B 221 of 255 = 87%
R + G + B ~ 60%. #A64BDD is middle color (not dark and not light).
R + G + B =
166 + 75 + 221 = 462 (100%)
R 166 of 462 ~ 35.93%
G 75 of 462 ~ 16.23%
B 221 of 462 ~ 47.84%
#A64BDD color CMYK value is (25,66,0,13).
CMYK: (25,66,0,13) C25M66Y0K13 (25%,66%,0%,13%) (0.25/0.66/0.00/0.13)
A6 | 4B | DD | |
---|---|---|---|
RGB | 166 | 75 | 221 |
HSL | 277° | 68.22% | 58.04% |
HSB/HSV | 277° | 66.06% | 86.67% |
CMYK | 24.89% | 66.06% | 0.00% |
13.33% |
HEX | A6 | 4B | DD |
Decimal | 166 | 75 | 221 |
Binary | 10100110 | 1001011 | 11011101 |
Octal | 246 | 113 | 335 |
Examples of css and html codes for elements with #A64BDD color. Also use rgb(166,75,221) instead hex code.
.myTextColor { color: #A64BDD; }
<p style="color:#A64BDD">This sample text font color is #A64BDD.</p>
This text font color is #A64BDD.
.myBgColor { background-color: #A64BDD; }
<div style="background-color:#A64BDD">Inner text</div>
This div background color is #A64BDD.
.myBorderColor { border: 1px solid #A64BDD; }
<div style="border:3px solid #A64BDD">Div</div>
This div border color is #A64BDD.
.myOpacity80 { color: #A64BDD; opacity: 0.8; }
<p style="color:#A64BDD;opacity:0.8;">80%</p>
Text with #A64BDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A64BDD;}
<p style="text-shadow: 3px 3px 1px #A64BDD">Text here.</p>
This text has shadow with #A64BDD color.
.textShadow {text-shadow: 3px 3px 1px #A64BDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A64BDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A64BDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A64BDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A64BDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A64BDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A64BDD; -webkit-box-shadow: 1px 1px 3px 2px #A64BDD; box-shadow: 1px 1px 3px 2px #A64BDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A64BDD; -webkit-box-shadow: 1px 1px 3px 2px #A64BDD; box-shadow:1px 1px 3px 2px #A64BDD;">
Div content here</div>
This text has color #A64BDD on black background.
This text has color #A64BDD on white background.
This text has black color on #A64BDD background.
This text has white color on #A64BDD background.