HEX: #A59FC6
RGB: (165,159,198)
#A59FC6 contains red, green and blue colors in about the same proportion. Web safe color of #A59FC6 is #9999CC (or #99C).
#A59FC6 color RGB value is (165,159,198).
RGB: (165,159,198) (65%,62%,78%)
R 165 of 255 = 65%
G 159 of 255 = 62%
B 198 of 255 = 78%
R + G + B ~ 68%. #A59FC6 is quite light color.
R + G + B =
165 + 159 + 198 = 522 (100%)
R 165 of 522 ~ 31.61%
G 159 of 522 ~ 30.46%
B 198 of 522 ~ 37.93%
#A59FC6 color CMYK value is (17,20,0,22).
CMYK: (17,20,0,22) C17M20Y0K22 (17%,20%,0%,22%) (0.17/0.20/0.00/0.22)
A5 | 9F | C6 | |
---|---|---|---|
RGB | 165 | 159 | 198 |
HSL | 249° | 25.49% | 70.00% |
HSB/HSV | 249° | 19.70% | 77.65% |
CMYK | 16.67% | 19.70% | 0.00% |
22.35% |
HEX | A5 | 9F | C6 |
Decimal | 165 | 159 | 198 |
Binary | 10100101 | 10011111 | 11000110 |
Octal | 245 | 237 | 306 |
Examples of css and html codes for elements with #A59FC6 color. Also use rgb(165,159,198) instead hex code.
.myTextColor { color: #A59FC6; }
<p style="color:#A59FC6">This sample text font color is #A59FC6.</p>
This text font color is #A59FC6.
.myBgColor { background-color: #A59FC6; }
<div style="background-color:#A59FC6">Inner text</div>
This div background color is #A59FC6.
.myBorderColor { border: 1px solid #A59FC6; }
<div style="border:3px solid #A59FC6">Div</div>
This div border color is #A59FC6.
.myOpacity80 { color: #A59FC6; opacity: 0.8; }
<p style="color:#A59FC6;opacity:0.8;">80%</p>
Text with #A59FC6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59FC6;}
<p style="text-shadow: 3px 3px 1px #A59FC6">Text here.</p>
This text has shadow with #A59FC6 color.
.textShadow {text-shadow: 3px 3px 1px #A59FC6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59FC6, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59FC6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59FC6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59FC6, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59FC6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59FC6; -webkit-box-shadow: 1px 1px 3px 2px #A59FC6; box-shadow: 1px 1px 3px 2px #A59FC6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59FC6; -webkit-box-shadow: 1px 1px 3px 2px #A59FC6; box-shadow:1px 1px 3px 2px #A59FC6;">
Div content here</div>
This text has color #A59FC6 on black background.
This text has color #A59FC6 on white background.
This text has black color on #A59FC6 background.
This text has white color on #A59FC6 background.