HEX: #A495BE
RGB: (164,149,190)
#A495BE contains red, green and blue colors in about the same proportion. Web safe color of #A495BE is #9999CC (or #99C).
#A495BE color RGB value is (164,149,190).
RGB: (164,149,190) (64%,58%,75%)
R 164 of 255 = 64%
G 149 of 255 = 58%
B 190 of 255 = 75%
R + G + B ~ 66%. #A495BE is quite light color.
R + G + B =
164 + 149 + 190 = 503 (100%)
R 164 of 503 ~ 32.6%
G 149 of 503 ~ 29.62%
B 190 of 503 ~ 37.77%
#A495BE color CMYK value is (14,22,0,25).
CMYK: (14,22,0,25) C14M22Y0K25 (14%,22%,0%,25%) (0.14/0.22/0.00/0.25)
A4 | 95 | BE | |
---|---|---|---|
RGB | 164 | 149 | 190 |
HSL | 262° | 23.98% | 66.47% |
HSB/HSV | 262° | 21.58% | 74.51% |
CMYK | 13.68% | 21.58% | 0.00% |
25.49% |
HEX | A4 | 95 | BE |
Decimal | 164 | 149 | 190 |
Binary | 10100100 | 10010101 | 10111110 |
Octal | 244 | 225 | 276 |
Examples of css and html codes for elements with #A495BE color. Also use rgb(164,149,190) instead hex code.
.myTextColor { color: #A495BE; }
<p style="color:#A495BE">This sample text font color is #A495BE.</p>
This text font color is #A495BE.
.myBgColor { background-color: #A495BE; }
<div style="background-color:#A495BE">Inner text</div>
This div background color is #A495BE.
.myBorderColor { border: 1px solid #A495BE; }
<div style="border:3px solid #A495BE">Div</div>
This div border color is #A495BE.
.myOpacity80 { color: #A495BE; opacity: 0.8; }
<p style="color:#A495BE;opacity:0.8;">80%</p>
Text with #A495BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A495BE;}
<p style="text-shadow: 3px 3px 1px #A495BE">Text here.</p>
This text has shadow with #A495BE color.
.textShadow {text-shadow: 3px 3px 1px #A495BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A495BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A495BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A495BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A495BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A495BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A495BE; -webkit-box-shadow: 1px 1px 3px 2px #A495BE; box-shadow: 1px 1px 3px 2px #A495BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A495BE; -webkit-box-shadow: 1px 1px 3px 2px #A495BE; box-shadow:1px 1px 3px 2px #A495BE;">
Div content here</div>
This text has color #A495BE on black background.
This text has color #A495BE on white background.
This text has black color on #A495BE background.
This text has white color on #A495BE background.