HEX: #A5A2BC
RGB: (165,162,188)
#A5A2BC contains red, green and blue colors in about the same proportion. Web safe color of #A5A2BC is #9999CC (or #99C).
#A5A2BC color RGB value is (165,162,188).
RGB: (165,162,188) (65%,64%,74%)
R 165 of 255 = 65%
G 162 of 255 = 64%
B 188 of 255 = 74%
R + G + B ~ 68%. #A5A2BC is quite light color.
R + G + B =
165 + 162 + 188 = 515 (100%)
R 165 of 515 ~ 32.04%
G 162 of 515 ~ 31.46%
B 188 of 515 ~ 36.5%
#A5A2BC color CMYK value is (12,14,0,26).
CMYK: (12,14,0,26) C12M14Y0K26 (12%,14%,0%,26%) (0.12/0.14/0.00/0.26)
A5 | A2 | BC | |
---|---|---|---|
RGB | 165 | 162 | 188 |
HSL | 247° | 16.25% | 68.63% |
HSB/HSV | 247° | 13.83% | 73.73% |
CMYK | 12.23% | 13.83% | 0.00% |
26.27% |
HEX | A5 | A2 | BC |
Decimal | 165 | 162 | 188 |
Binary | 10100101 | 10100010 | 10111100 |
Octal | 245 | 242 | 274 |
Examples of css and html codes for elements with #A5A2BC color. Also use rgb(165,162,188) instead hex code.
.myTextColor { color: #A5A2BC; }
<p style="color:#A5A2BC">This sample text font color is #A5A2BC.</p>
This text font color is #A5A2BC.
.myBgColor { background-color: #A5A2BC; }
<div style="background-color:#A5A2BC">Inner text</div>
This div background color is #A5A2BC.
.myBorderColor { border: 1px solid #A5A2BC; }
<div style="border:3px solid #A5A2BC">Div</div>
This div border color is #A5A2BC.
.myOpacity80 { color: #A5A2BC; opacity: 0.8; }
<p style="color:#A5A2BC;opacity:0.8;">80%</p>
Text with #A5A2BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5A2BC;}
<p style="text-shadow: 3px 3px 1px #A5A2BC">Text here.</p>
This text has shadow with #A5A2BC color.
.textShadow {text-shadow: 3px 3px 1px #A5A2BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5A2BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5A2BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5A2BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5A2BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5A2BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5A2BC; -webkit-box-shadow: 1px 1px 3px 2px #A5A2BC; box-shadow: 1px 1px 3px 2px #A5A2BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5A2BC; -webkit-box-shadow: 1px 1px 3px 2px #A5A2BC; box-shadow:1px 1px 3px 2px #A5A2BC;">
Div content here</div>
This text has color #A5A2BC on black background.
This text has color #A5A2BC on white background.
This text has black color on #A5A2BC background.
This text has white color on #A5A2BC background.