HEX: #A393BC
RGB: (163,147,188)
#A393BC contains red, green and blue colors in about the same proportion. Web safe color of #A393BC is #9999CC (or #99C).
#A393BC color RGB value is (163,147,188).
RGB: (163,147,188) (64%,58%,74%)
R 163 of 255 = 64%
G 147 of 255 = 58%
B 188 of 255 = 74%
R + G + B ~ 65%. #A393BC is quite light color.
R + G + B =
163 + 147 + 188 = 498 (100%)
R 163 of 498 ~ 32.73%
G 147 of 498 ~ 29.52%
B 188 of 498 ~ 37.75%
#A393BC color CMYK value is (13,22,0,26).
CMYK: (13,22,0,26) C13M22Y0K26 (13%,22%,0%,26%) (0.13/0.22/0.00/0.26)
A3 | 93 | BC | |
---|---|---|---|
RGB | 163 | 147 | 188 |
HSL | 263° | 23.43% | 65.69% |
HSB/HSV | 263° | 21.81% | 73.73% |
CMYK | 13.30% | 21.81% | 0.00% |
26.27% |
HEX | A3 | 93 | BC |
Decimal | 163 | 147 | 188 |
Binary | 10100011 | 10010011 | 10111100 |
Octal | 243 | 223 | 274 |
Examples of css and html codes for elements with #A393BC color. Also use rgb(163,147,188) instead hex code.
.myTextColor { color: #A393BC; }
<p style="color:#A393BC">This sample text font color is #A393BC.</p>
This text font color is #A393BC.
.myBgColor { background-color: #A393BC; }
<div style="background-color:#A393BC">Inner text</div>
This div background color is #A393BC.
.myBorderColor { border: 1px solid #A393BC; }
<div style="border:3px solid #A393BC">Div</div>
This div border color is #A393BC.
.myOpacity80 { color: #A393BC; opacity: 0.8; }
<p style="color:#A393BC;opacity:0.8;">80%</p>
Text with #A393BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A393BC;}
<p style="text-shadow: 3px 3px 1px #A393BC">Text here.</p>
This text has shadow with #A393BC color.
.textShadow {text-shadow: 3px 3px 1px #A393BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A393BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A393BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A393BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A393BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A393BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A393BC; -webkit-box-shadow: 1px 1px 3px 2px #A393BC; box-shadow: 1px 1px 3px 2px #A393BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A393BC; -webkit-box-shadow: 1px 1px 3px 2px #A393BC; box-shadow:1px 1px 3px 2px #A393BC;">
Div content here</div>
This text has color #A393BC on black background.
This text has color #A393BC on white background.
This text has black color on #A393BC background.
This text has white color on #A393BC background.