HEX: #A393DE
RGB: (163,147,222)
#A393DE contains mainly red and blue colors. Web safe color of #A393DE is #9999CC (or #99C).
#A393DE color RGB value is (163,147,222).
RGB: (163,147,222) (64%,58%,87%)
R 163 of 255 = 64%
G 147 of 255 = 58%
B 222 of 255 = 87%
R + G + B ~ 70%. #A393DE is quite light color.
R + G + B =
163 + 147 + 222 = 532 (100%)
R 163 of 532 ~ 30.64%
G 147 of 532 ~ 27.63%
B 222 of 532 ~ 41.73%
#A393DE color CMYK value is (27,34,0,13).
CMYK: (27,34,0,13) C27M34Y0K13 (27%,34%,0%,13%) (0.27/0.34/0.00/0.13)
A3 | 93 | DE | |
---|---|---|---|
RGB | 163 | 147 | 222 |
HSL | 253° | 53.19% | 72.35% |
HSB/HSV | 253° | 33.78% | 87.06% |
CMYK | 26.58% | 33.78% | 0.00% |
12.94% |
HEX | A3 | 93 | DE |
Decimal | 163 | 147 | 222 |
Binary | 10100011 | 10010011 | 11011110 |
Octal | 243 | 223 | 336 |
Examples of css and html codes for elements with #A393DE color. Also use rgb(163,147,222) instead hex code.
.myTextColor { color: #A393DE; }
<p style="color:#A393DE">This sample text font color is #A393DE.</p>
This text font color is #A393DE.
.myBgColor { background-color: #A393DE; }
<div style="background-color:#A393DE">Inner text</div>
This div background color is #A393DE.
.myBorderColor { border: 1px solid #A393DE; }
<div style="border:3px solid #A393DE">Div</div>
This div border color is #A393DE.
.myOpacity80 { color: #A393DE; opacity: 0.8; }
<p style="color:#A393DE;opacity:0.8;">80%</p>
Text with #A393DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A393DE;}
<p style="text-shadow: 3px 3px 1px #A393DE">Text here.</p>
This text has shadow with #A393DE color.
.textShadow {text-shadow: 3px 3px 1px #A393DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A393DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A393DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A393DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A393DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A393DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A393DE; -webkit-box-shadow: 1px 1px 3px 2px #A393DE; box-shadow: 1px 1px 3px 2px #A393DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A393DE; -webkit-box-shadow: 1px 1px 3px 2px #A393DE; box-shadow:1px 1px 3px 2px #A393DE;">
Div content here</div>
This text has color #A393DE on black background.
This text has color #A393DE on white background.
This text has black color on #A393DE background.
This text has white color on #A393DE background.