HEX: #A096BB
RGB: (160,150,187)
#A096BB contains red, green and blue colors in about the same proportion. Web safe color of #A096BB is #9999CC (or #99C).
#A096BB color RGB value is (160,150,187).
RGB: (160,150,187) (63%,59%,73%)
R 160 of 255 = 63%
G 150 of 255 = 59%
B 187 of 255 = 73%
R + G + B ~ 65%. #A096BB is quite light color.
R + G + B =
160 + 150 + 187 = 497 (100%)
R 160 of 497 ~ 32.19%
G 150 of 497 ~ 30.18%
B 187 of 497 ~ 37.63%
#A096BB color CMYK value is (14,20,0,27).
CMYK: (14,20,0,27) C14M20Y0K27 (14%,20%,0%,27%) (0.14/0.20/0.00/0.27)
A0 | 96 | BB | |
---|---|---|---|
RGB | 160 | 150 | 187 |
HSL | 256° | 21.39% | 66.08% |
HSB/HSV | 256° | 19.79% | 73.33% |
CMYK | 14.44% | 19.79% | 0.00% |
26.67% |
HEX | A0 | 96 | BB |
Decimal | 160 | 150 | 187 |
Binary | 10100000 | 10010110 | 10111011 |
Octal | 240 | 226 | 273 |
Examples of css and html codes for elements with #A096BB color. Also use rgb(160,150,187) instead hex code.
.myTextColor { color: #A096BB; }
<p style="color:#A096BB">This sample text font color is #A096BB.</p>
This text font color is #A096BB.
.myBgColor { background-color: #A096BB; }
<div style="background-color:#A096BB">Inner text</div>
This div background color is #A096BB.
.myBorderColor { border: 1px solid #A096BB; }
<div style="border:3px solid #A096BB">Div</div>
This div border color is #A096BB.
.myOpacity80 { color: #A096BB; opacity: 0.8; }
<p style="color:#A096BB;opacity:0.8;">80%</p>
Text with #A096BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A096BB;}
<p style="text-shadow: 3px 3px 1px #A096BB">Text here.</p>
This text has shadow with #A096BB color.
.textShadow {text-shadow: 3px 3px 1px #A096BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A096BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A096BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A096BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A096BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A096BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A096BB; -webkit-box-shadow: 1px 1px 3px 2px #A096BB; box-shadow: 1px 1px 3px 2px #A096BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A096BB; -webkit-box-shadow: 1px 1px 3px 2px #A096BB; box-shadow:1px 1px 3px 2px #A096BB;">
Div content here</div>
This text has color #A096BB on black background.
This text has color #A096BB on white background.
This text has black color on #A096BB background.
This text has white color on #A096BB background.