HEX: #A59BAB
RGB: (165,155,171)
#A59BAB contains red, green and blue colors in about the same proportion. Web safe color of #A59BAB is #999999 (or #999).
#A59BAB color RGB value is (165,155,171).
RGB: (165,155,171) (65%,61%,67%)
R 165 of 255 = 65%
G 155 of 255 = 61%
B 171 of 255 = 67%
R + G + B ~ 64%. #A59BAB is quite light color.
R + G + B =
165 + 155 + 171 = 491 (100%)
R 165 of 491 ~ 33.6%
G 155 of 491 ~ 31.57%
B 171 of 491 ~ 34.83%
#A59BAB color CMYK value is (4,9,0,33).
CMYK: (4,9,0,33) C4M9Y0K33 (4%,9%,0%,33%) (0.04/0.09/0.00/0.33)
A5 | 9B | AB | |
---|---|---|---|
RGB | 165 | 155 | 171 |
HSL | 278° | 8.70% | 63.92% |
HSB/HSV | 278° | 9.36% | 67.06% |
CMYK | 3.51% | 9.36% | 0.00% |
32.94% |
HEX | A5 | 9B | AB |
Decimal | 165 | 155 | 171 |
Binary | 10100101 | 10011011 | 10101011 |
Octal | 245 | 233 | 253 |
Examples of css and html codes for elements with #A59BAB color. Also use rgb(165,155,171) instead hex code.
.myTextColor { color: #A59BAB; }
<p style="color:#A59BAB">This sample text font color is #A59BAB.</p>
This text font color is #A59BAB.
.myBgColor { background-color: #A59BAB; }
<div style="background-color:#A59BAB">Inner text</div>
This div background color is #A59BAB.
.myBorderColor { border: 1px solid #A59BAB; }
<div style="border:3px solid #A59BAB">Div</div>
This div border color is #A59BAB.
.myOpacity80 { color: #A59BAB; opacity: 0.8; }
<p style="color:#A59BAB;opacity:0.8;">80%</p>
Text with #A59BAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59BAB;}
<p style="text-shadow: 3px 3px 1px #A59BAB">Text here.</p>
This text has shadow with #A59BAB color.
.textShadow {text-shadow: 3px 3px 1px #A59BAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59BAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59BAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59BAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59BAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59BAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59BAB; -webkit-box-shadow: 1px 1px 3px 2px #A59BAB; box-shadow: 1px 1px 3px 2px #A59BAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59BAB; -webkit-box-shadow: 1px 1px 3px 2px #A59BAB; box-shadow:1px 1px 3px 2px #A59BAB;">
Div content here</div>
This text has color #A59BAB on black background.
This text has color #A59BAB on white background.
This text has black color on #A59BAB background.
This text has white color on #A59BAB background.