HEX: #BB8ABE
RGB: (187,138,190)
#BB8ABE contains red, green and blue colors in about the same proportion. Web safe color of #BB8ABE is #CC99CC (or #C9C).
#BB8ABE color RGB value is (187,138,190).
RGB: (187,138,190) (73%,54%,75%)
R 187 of 255 = 73%
G 138 of 255 = 54%
B 190 of 255 = 75%
R + G + B ~ 67%. #BB8ABE is quite light color.
R + G + B =
187 + 138 + 190 = 515 (100%)
R 187 of 515 ~ 36.31%
G 138 of 515 ~ 26.8%
B 190 of 515 ~ 36.89%
#BB8ABE color CMYK value is (2,27,0,25).
CMYK: (2,27,0,25) C2M27Y0K25 (2%,27%,0%,25%) (0.02/0.27/0.00/0.25)
BB | 8A | BE | |
---|---|---|---|
RGB | 187 | 138 | 190 |
HSL | 297° | 28.57% | 64.31% |
HSB/HSV | 297° | 27.37% | 74.51% |
CMYK | 1.58% | 27.37% | 0.00% |
25.49% |
HEX | BB | 8A | BE |
Decimal | 187 | 138 | 190 |
Binary | 10111011 | 10001010 | 10111110 |
Octal | 273 | 212 | 276 |
Examples of css and html codes for elements with #BB8ABE color. Also use rgb(187,138,190) instead hex code.
.myTextColor { color: #BB8ABE; }
<p style="color:#BB8ABE">This sample text font color is #BB8ABE.</p>
This text font color is #BB8ABE.
.myBgColor { background-color: #BB8ABE; }
<div style="background-color:#BB8ABE">Inner text</div>
This div background color is #BB8ABE.
.myBorderColor { border: 1px solid #BB8ABE; }
<div style="border:3px solid #BB8ABE">Div</div>
This div border color is #BB8ABE.
.myOpacity80 { color: #BB8ABE; opacity: 0.8; }
<p style="color:#BB8ABE;opacity:0.8;">80%</p>
Text with #BB8ABE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB8ABE;}
<p style="text-shadow: 3px 3px 1px #BB8ABE">Text here.</p>
This text has shadow with #BB8ABE color.
.textShadow {text-shadow: 3px 3px 1px #BB8ABE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB8ABE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB8ABE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB8ABE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB8ABE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB8ABE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB8ABE; -webkit-box-shadow: 1px 1px 3px 2px #BB8ABE; box-shadow: 1px 1px 3px 2px #BB8ABE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB8ABE; -webkit-box-shadow: 1px 1px 3px 2px #BB8ABE; box-shadow:1px 1px 3px 2px #BB8ABE;">
Div content here</div>
This text has color #BB8ABE on black background.
This text has color #BB8ABE on white background.
This text has black color on #BB8ABE background.
This text has white color on #BB8ABE background.