HEX: #B495AB
RGB: (180,149,171)
#B495AB contains red, green and blue colors in about the same proportion. Web safe color of #B495AB is #CC9999 (or #C99).
#B495AB color RGB value is (180,149,171).
RGB: (180,149,171) (71%,58%,67%)
R 180 of 255 = 71%
G 149 of 255 = 58%
B 171 of 255 = 67%
R + G + B ~ 65%. #B495AB is quite light color.
R + G + B =
180 + 149 + 171 = 500 (100%)
R 180 of 500 ~ 36%
G 149 of 500 ~ 29.8%
B 171 of 500 ~ 34.2%
#B495AB color CMYK value is (0,17,5,29).
CMYK: (0,17,5,29) C0M17Y5K29 (0%,17%,5%,29%) (0.00/0.17/0.05/0.29)
B4 | 95 | AB | |
---|---|---|---|
RGB | 180 | 149 | 171 |
HSL | 317° | 17.13% | 64.51% |
HSB/HSV | 317° | 17.22% | 70.59% |
CMYK | 0.00% | 17.22% | 5.00% |
29.41% |
HEX | B4 | 95 | AB |
Decimal | 180 | 149 | 171 |
Binary | 10110100 | 10010101 | 10101011 |
Octal | 264 | 225 | 253 |
Examples of css and html codes for elements with #B495AB color. Also use rgb(180,149,171) instead hex code.
.myTextColor { color: #B495AB; }
<p style="color:#B495AB">This sample text font color is #B495AB.</p>
This text font color is #B495AB.
.myBgColor { background-color: #B495AB; }
<div style="background-color:#B495AB">Inner text</div>
This div background color is #B495AB.
.myBorderColor { border: 1px solid #B495AB; }
<div style="border:3px solid #B495AB">Div</div>
This div border color is #B495AB.
.myOpacity80 { color: #B495AB; opacity: 0.8; }
<p style="color:#B495AB;opacity:0.8;">80%</p>
Text with #B495AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B495AB;}
<p style="text-shadow: 3px 3px 1px #B495AB">Text here.</p>
This text has shadow with #B495AB color.
.textShadow {text-shadow: 3px 3px 1px #B495AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B495AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B495AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B495AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B495AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B495AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B495AB; -webkit-box-shadow: 1px 1px 3px 2px #B495AB; box-shadow: 1px 1px 3px 2px #B495AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B495AB; -webkit-box-shadow: 1px 1px 3px 2px #B495AB; box-shadow:1px 1px 3px 2px #B495AB;">
Div content here</div>
This text has color #B495AB on black background.
This text has color #B495AB on white background.
This text has black color on #B495AB background.
This text has white color on #B495AB background.