HEX: #A59BCA
RGB: (165,155,202)
#A59BCA contains red, green and blue colors in about the same proportion. Web safe color of #A59BCA is #9999CC (or #99C).
#A59BCA color RGB value is (165,155,202).
RGB: (165,155,202) (65%,61%,79%)
R 165 of 255 = 65%
G 155 of 255 = 61%
B 202 of 255 = 79%
R + G + B ~ 68%. #A59BCA is quite light color.
R + G + B =
165 + 155 + 202 = 522 (100%)
R 165 of 522 ~ 31.61%
G 155 of 522 ~ 29.69%
B 202 of 522 ~ 38.7%
#A59BCA color CMYK value is (18,23,0,21).
CMYK: (18,23,0,21) C18M23Y0K21 (18%,23%,0%,21%) (0.18/0.23/0.00/0.21)
A5 | 9B | CA | |
---|---|---|---|
RGB | 165 | 155 | 202 |
HSL | 253° | 30.72% | 70.00% |
HSB/HSV | 253° | 23.27% | 79.22% |
CMYK | 18.32% | 23.27% | 0.00% |
20.78% |
HEX | A5 | 9B | CA |
Decimal | 165 | 155 | 202 |
Binary | 10100101 | 10011011 | 11001010 |
Octal | 245 | 233 | 312 |
Examples of css and html codes for elements with #A59BCA color. Also use rgb(165,155,202) instead hex code.
.myTextColor { color: #A59BCA; }
<p style="color:#A59BCA">This sample text font color is #A59BCA.</p>
This text font color is #A59BCA.
.myBgColor { background-color: #A59BCA; }
<div style="background-color:#A59BCA">Inner text</div>
This div background color is #A59BCA.
.myBorderColor { border: 1px solid #A59BCA; }
<div style="border:3px solid #A59BCA">Div</div>
This div border color is #A59BCA.
.myOpacity80 { color: #A59BCA; opacity: 0.8; }
<p style="color:#A59BCA;opacity:0.8;">80%</p>
Text with #A59BCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59BCA;}
<p style="text-shadow: 3px 3px 1px #A59BCA">Text here.</p>
This text has shadow with #A59BCA color.
.textShadow {text-shadow: 3px 3px 1px #A59BCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59BCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59BCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59BCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59BCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59BCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59BCA; -webkit-box-shadow: 1px 1px 3px 2px #A59BCA; box-shadow: 1px 1px 3px 2px #A59BCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59BCA; -webkit-box-shadow: 1px 1px 3px 2px #A59BCA; box-shadow:1px 1px 3px 2px #A59BCA;">
Div content here</div>
This text has color #A59BCA on black background.
This text has color #A59BCA on white background.
This text has black color on #A59BCA background.
This text has white color on #A59BCA background.