HEX: #B48BBF
RGB: (180,139,191)
#B48BBF contains red, green and blue colors in about the same proportion. Web safe color of #B48BBF is #CC99CC (or #C9C).
#B48BBF color RGB value is (180,139,191).
RGB: (180,139,191) (71%,55%,75%)
R 180 of 255 = 71%
G 139 of 255 = 55%
B 191 of 255 = 75%
R + G + B ~ 67%. #B48BBF is quite light color.
R + G + B =
180 + 139 + 191 = 510 (100%)
R 180 of 510 ~ 35.29%
G 139 of 510 ~ 27.25%
B 191 of 510 ~ 37.45%
#B48BBF color CMYK value is (6,27,0,25).
CMYK: (6,27,0,25) C6M27Y0K25 (6%,27%,0%,25%) (0.06/0.27/0.00/0.25)
B4 | 8B | BF | |
---|---|---|---|
RGB | 180 | 139 | 191 |
HSL | 287° | 28.89% | 64.71% |
HSB/HSV | 287° | 27.23% | 74.90% |
CMYK | 5.76% | 27.23% | 0.00% |
25.10% |
HEX | B4 | 8B | BF |
Decimal | 180 | 139 | 191 |
Binary | 10110100 | 10001011 | 10111111 |
Octal | 264 | 213 | 277 |
Examples of css and html codes for elements with #B48BBF color. Also use rgb(180,139,191) instead hex code.
.myTextColor { color: #B48BBF; }
<p style="color:#B48BBF">This sample text font color is #B48BBF.</p>
This text font color is #B48BBF.
.myBgColor { background-color: #B48BBF; }
<div style="background-color:#B48BBF">Inner text</div>
This div background color is #B48BBF.
.myBorderColor { border: 1px solid #B48BBF; }
<div style="border:3px solid #B48BBF">Div</div>
This div border color is #B48BBF.
.myOpacity80 { color: #B48BBF; opacity: 0.8; }
<p style="color:#B48BBF;opacity:0.8;">80%</p>
Text with #B48BBF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B48BBF;}
<p style="text-shadow: 3px 3px 1px #B48BBF">Text here.</p>
This text has shadow with #B48BBF color.
.textShadow {text-shadow: 3px 3px 1px #B48BBF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B48BBF, 5px 5px 20px red">Text here.</p>
This text has shadow with #B48BBF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B48BBF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B48BBF, Direction=45, Strength=4)">Text</p>
This text has shadow with #B48BBF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B48BBF; -webkit-box-shadow: 1px 1px 3px 2px #B48BBF; box-shadow: 1px 1px 3px 2px #B48BBF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B48BBF; -webkit-box-shadow: 1px 1px 3px 2px #B48BBF; box-shadow:1px 1px 3px 2px #B48BBF;">
Div content here</div>
This text has color #B48BBF on black background.
This text has color #B48BBF on white background.
This text has black color on #B48BBF background.
This text has white color on #B48BBF background.