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