HEX: #BC93DF
RGB: (188,147,223)
#BC93DF contains mainly red and blue colors. Web safe color of #BC93DF is #CC99CC (or #C9C).
#BC93DF color RGB value is (188,147,223).
RGB: (188,147,223) (74%,58%,87%)
R 188 of 255 = 74%
G 147 of 255 = 58%
B 223 of 255 = 87%
R + G + B ~ 73%. #BC93DF is quite light color.
R + G + B =
188 + 147 + 223 = 558 (100%)
R 188 of 558 ~ 33.69%
G 147 of 558 ~ 26.34%
B 223 of 558 ~ 39.96%
#BC93DF color CMYK value is (16,34,0,13).
CMYK: (16,34,0,13) C16M34Y0K13 (16%,34%,0%,13%) (0.16/0.34/0.00/0.13)
BC | 93 | DF | |
---|---|---|---|
RGB | 188 | 147 | 223 |
HSL | 272° | 54.29% | 72.55% |
HSB/HSV | 272° | 34.08% | 87.45% |
CMYK | 15.70% | 34.08% | 0.00% |
12.55% |
HEX | BC | 93 | DF |
Decimal | 188 | 147 | 223 |
Binary | 10111100 | 10010011 | 11011111 |
Octal | 274 | 223 | 337 |
Examples of css and html codes for elements with #BC93DF color. Also use rgb(188,147,223) instead hex code.
.myTextColor { color: #BC93DF; }
<p style="color:#BC93DF">This sample text font color is #BC93DF.</p>
This text font color is #BC93DF.
.myBgColor { background-color: #BC93DF; }
<div style="background-color:#BC93DF">Inner text</div>
This div background color is #BC93DF.
.myBorderColor { border: 1px solid #BC93DF; }
<div style="border:3px solid #BC93DF">Div</div>
This div border color is #BC93DF.
.myOpacity80 { color: #BC93DF; opacity: 0.8; }
<p style="color:#BC93DF;opacity:0.8;">80%</p>
Text with #BC93DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC93DF;}
<p style="text-shadow: 3px 3px 1px #BC93DF">Text here.</p>
This text has shadow with #BC93DF color.
.textShadow {text-shadow: 3px 3px 1px #BC93DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC93DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC93DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC93DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC93DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC93DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC93DF; -webkit-box-shadow: 1px 1px 3px 2px #BC93DF; box-shadow: 1px 1px 3px 2px #BC93DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC93DF; -webkit-box-shadow: 1px 1px 3px 2px #BC93DF; box-shadow:1px 1px 3px 2px #BC93DF;">
Div content here</div>
This text has color #BC93DF on black background.
This text has color #BC93DF on white background.
This text has black color on #BC93DF background.
This text has white color on #BC93DF background.