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