HEX: #B988CB
RGB: (185,136,203)
#B988CB contains mainly red and blue colors. Web safe color of #B988CB is #CC99CC (or #C9C).
#B988CB color RGB value is (185,136,203).
RGB: (185,136,203) (73%,53%,80%)
R 185 of 255 = 73%
G 136 of 255 = 53%
B 203 of 255 = 80%
R + G + B ~ 69%. #B988CB is quite light color.
R + G + B =
185 + 136 + 203 = 524 (100%)
R 185 of 524 ~ 35.31%
G 136 of 524 ~ 25.95%
B 203 of 524 ~ 38.74%
#B988CB color CMYK value is (9,33,0,20).
CMYK: (9,33,0,20) C9M33Y0K20 (9%,33%,0%,20%) (0.09/0.33/0.00/0.20)
B9 | 88 | CB | |
---|---|---|---|
RGB | 185 | 136 | 203 |
HSL | 284° | 39.18% | 66.47% |
HSB/HSV | 284° | 33.00% | 79.61% |
CMYK | 8.87% | 33.00% | 0.00% |
20.39% |
HEX | B9 | 88 | CB |
Decimal | 185 | 136 | 203 |
Binary | 10111001 | 10001000 | 11001011 |
Octal | 271 | 210 | 313 |
Examples of css and html codes for elements with #B988CB color. Also use rgb(185,136,203) instead hex code.
.myTextColor { color: #B988CB; }
<p style="color:#B988CB">This sample text font color is #B988CB.</p>
This text font color is #B988CB.
.myBgColor { background-color: #B988CB; }
<div style="background-color:#B988CB">Inner text</div>
This div background color is #B988CB.
.myBorderColor { border: 1px solid #B988CB; }
<div style="border:3px solid #B988CB">Div</div>
This div border color is #B988CB.
.myOpacity80 { color: #B988CB; opacity: 0.8; }
<p style="color:#B988CB;opacity:0.8;">80%</p>
Text with #B988CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B988CB;}
<p style="text-shadow: 3px 3px 1px #B988CB">Text here.</p>
This text has shadow with #B988CB color.
.textShadow {text-shadow: 3px 3px 1px #B988CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B988CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B988CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B988CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B988CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B988CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B988CB; -webkit-box-shadow: 1px 1px 3px 2px #B988CB; box-shadow: 1px 1px 3px 2px #B988CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B988CB; -webkit-box-shadow: 1px 1px 3px 2px #B988CB; box-shadow:1px 1px 3px 2px #B988CB;">
Div content here</div>
This text has color #B988CB on black background.
This text has color #B988CB on white background.
This text has black color on #B988CB background.
This text has white color on #B988CB background.