HEX: #A4B1BD
RGB: (164,177,189)
#A4B1BD contains red, green and blue colors in about the same proportion. Web safe color of #A4B1BD is #9999CC (or #99C).
#A4B1BD color RGB value is (164,177,189).
RGB: (164,177,189) (64%,69%,74%)
R 164 of 255 = 64%
G 177 of 255 = 69%
B 189 of 255 = 74%
R + G + B ~ 69%. #A4B1BD is quite light color.
R + G + B =
164 + 177 + 189 = 530 (100%)
R 164 of 530 ~ 30.94%
G 177 of 530 ~ 33.4%
B 189 of 530 ~ 35.66%
#A4B1BD color CMYK value is (13,6,0,26).
CMYK: (13,6,0,26) C13M6Y0K26 (13%,6%,0%,26%) (0.13/0.06/0.00/0.26)
A4 | B1 | BD | |
---|---|---|---|
RGB | 164 | 177 | 189 |
HSL | 209° | 15.92% | 69.22% |
HSB/HSV | 209° | 13.23% | 74.12% |
CMYK | 13.23% | 6.35% | 0.00% |
25.88% |
HEX | A4 | B1 | BD |
Decimal | 164 | 177 | 189 |
Binary | 10100100 | 10110001 | 10111101 |
Octal | 244 | 261 | 275 |
Examples of css and html codes for elements with #A4B1BD color. Also use rgb(164,177,189) instead hex code.
.myTextColor { color: #A4B1BD; }
<p style="color:#A4B1BD">This sample text font color is #A4B1BD.</p>
This text font color is #A4B1BD.
.myBgColor { background-color: #A4B1BD; }
<div style="background-color:#A4B1BD">Inner text</div>
This div background color is #A4B1BD.
.myBorderColor { border: 1px solid #A4B1BD; }
<div style="border:3px solid #A4B1BD">Div</div>
This div border color is #A4B1BD.
.myOpacity80 { color: #A4B1BD; opacity: 0.8; }
<p style="color:#A4B1BD;opacity:0.8;">80%</p>
Text with #A4B1BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4B1BD;}
<p style="text-shadow: 3px 3px 1px #A4B1BD">Text here.</p>
This text has shadow with #A4B1BD color.
.textShadow {text-shadow: 3px 3px 1px #A4B1BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4B1BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4B1BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4B1BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4B1BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4B1BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4B1BD; -webkit-box-shadow: 1px 1px 3px 2px #A4B1BD; box-shadow: 1px 1px 3px 2px #A4B1BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4B1BD; -webkit-box-shadow: 1px 1px 3px 2px #A4B1BD; box-shadow:1px 1px 3px 2px #A4B1BD;">
Div content here</div>
This text has color #A4B1BD on black background.
This text has color #A4B1BD on white background.
This text has black color on #A4B1BD background.
This text has white color on #A4B1BD background.