HEX: #BB90DF
RGB: (187,144,223)
#BB90DF contains mainly red and blue colors. Web safe color of #BB90DF is #CC99CC (or #C9C).
#BB90DF color RGB value is (187,144,223).
RGB: (187,144,223) (73%,56%,87%)
R 187 of 255 = 73%
G 144 of 255 = 56%
B 223 of 255 = 87%
R + G + B ~ 72%. #BB90DF is quite light color.
R + G + B =
187 + 144 + 223 = 554 (100%)
R 187 of 554 ~ 33.75%
G 144 of 554 ~ 25.99%
B 223 of 554 ~ 40.25%
#BB90DF color CMYK value is (16,35,0,13).
CMYK: (16,35,0,13) C16M35Y0K13 (16%,35%,0%,13%) (0.16/0.35/0.00/0.13)
BB | 90 | DF | |
---|---|---|---|
RGB | 187 | 144 | 223 |
HSL | 273° | 55.24% | 71.96% |
HSB/HSV | 273° | 35.43% | 87.45% |
CMYK | 16.14% | 35.43% | 0.00% |
12.55% |
HEX | BB | 90 | DF |
Decimal | 187 | 144 | 223 |
Binary | 10111011 | 10010000 | 11011111 |
Octal | 273 | 220 | 337 |
Examples of css and html codes for elements with #BB90DF color. Also use rgb(187,144,223) instead hex code.
.myTextColor { color: #BB90DF; }
<p style="color:#BB90DF">This sample text font color is #BB90DF.</p>
This text font color is #BB90DF.
.myBgColor { background-color: #BB90DF; }
<div style="background-color:#BB90DF">Inner text</div>
This div background color is #BB90DF.
.myBorderColor { border: 1px solid #BB90DF; }
<div style="border:3px solid #BB90DF">Div</div>
This div border color is #BB90DF.
.myOpacity80 { color: #BB90DF; opacity: 0.8; }
<p style="color:#BB90DF;opacity:0.8;">80%</p>
Text with #BB90DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB90DF;}
<p style="text-shadow: 3px 3px 1px #BB90DF">Text here.</p>
This text has shadow with #BB90DF color.
.textShadow {text-shadow: 3px 3px 1px #BB90DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB90DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB90DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB90DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB90DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB90DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB90DF; -webkit-box-shadow: 1px 1px 3px 2px #BB90DF; box-shadow: 1px 1px 3px 2px #BB90DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB90DF; -webkit-box-shadow: 1px 1px 3px 2px #BB90DF; box-shadow:1px 1px 3px 2px #BB90DF;">
Div content here</div>
This text has color #BB90DF on black background.
This text has color #BB90DF on white background.
This text has black color on #BB90DF background.
This text has white color on #BB90DF background.