HEX: #B48FCE
RGB: (180,143,206)
#B48FCE contains mainly red and blue colors. Web safe color of #B48FCE is #CC99CC (or #C9C).
#B48FCE color RGB value is (180,143,206).
RGB: (180,143,206) (71%,56%,81%)
R 180 of 255 = 71%
G 143 of 255 = 56%
B 206 of 255 = 81%
R + G + B ~ 69%. #B48FCE is quite light color.
R + G + B =
180 + 143 + 206 = 529 (100%)
R 180 of 529 ~ 34.03%
G 143 of 529 ~ 27.03%
B 206 of 529 ~ 38.94%
#B48FCE color CMYK value is (13,31,0,19).
CMYK: (13,31,0,19) C13M31Y0K19 (13%,31%,0%,19%) (0.13/0.31/0.00/0.19)
B4 | 8F | CE | |
---|---|---|---|
RGB | 180 | 143 | 206 |
HSL | 275° | 39.13% | 68.43% |
HSB/HSV | 275° | 30.58% | 80.78% |
CMYK | 12.62% | 30.58% | 0.00% |
19.22% |
HEX | B4 | 8F | CE |
Decimal | 180 | 143 | 206 |
Binary | 10110100 | 10001111 | 11001110 |
Octal | 264 | 217 | 316 |
Examples of css and html codes for elements with #B48FCE color. Also use rgb(180,143,206) instead hex code.
.myTextColor { color: #B48FCE; }
<p style="color:#B48FCE">This sample text font color is #B48FCE.</p>
This text font color is #B48FCE.
.myBgColor { background-color: #B48FCE; }
<div style="background-color:#B48FCE">Inner text</div>
This div background color is #B48FCE.
.myBorderColor { border: 1px solid #B48FCE; }
<div style="border:3px solid #B48FCE">Div</div>
This div border color is #B48FCE.
.myOpacity80 { color: #B48FCE; opacity: 0.8; }
<p style="color:#B48FCE;opacity:0.8;">80%</p>
Text with #B48FCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B48FCE;}
<p style="text-shadow: 3px 3px 1px #B48FCE">Text here.</p>
This text has shadow with #B48FCE color.
.textShadow {text-shadow: 3px 3px 1px #B48FCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B48FCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B48FCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B48FCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B48FCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B48FCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B48FCE; -webkit-box-shadow: 1px 1px 3px 2px #B48FCE; box-shadow: 1px 1px 3px 2px #B48FCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B48FCE; -webkit-box-shadow: 1px 1px 3px 2px #B48FCE; box-shadow:1px 1px 3px 2px #B48FCE;">
Div content here</div>
This text has color #B48FCE on black background.
This text has color #B48FCE on white background.
This text has black color on #B48FCE background.
This text has white color on #B48FCE background.