HEX: #BC7BE4
RGB: (188,123,228)
#BC7BE4 contains mainly red and blue colors. Web safe color of #BC7BE4 is #CC66CC (or #C6C).
#BC7BE4 color RGB value is (188,123,228).
RGB: (188,123,228) (74%,48%,89%)
R 188 of 255 = 74%
G 123 of 255 = 48%
B 228 of 255 = 89%
R + G + B ~ 70%. #BC7BE4 is quite light color.
R + G + B =
188 + 123 + 228 = 539 (100%)
R 188 of 539 ~ 34.88%
G 123 of 539 ~ 22.82%
B 228 of 539 ~ 42.3%
#BC7BE4 color CMYK value is (18,46,0,11).
CMYK: (18,46,0,11) C18M46Y0K11 (18%,46%,0%,11%) (0.18/0.46/0.00/0.11)
BC | 7B | E4 | |
---|---|---|---|
RGB | 188 | 123 | 228 |
HSL | 277° | 66.04% | 68.82% |
HSB/HSV | 277° | 46.05% | 89.41% |
CMYK | 17.54% | 46.05% | 0.00% |
10.59% |
HEX | BC | 7B | E4 |
Decimal | 188 | 123 | 228 |
Binary | 10111100 | 1111011 | 11100100 |
Octal | 274 | 173 | 344 |
Examples of css and html codes for elements with #BC7BE4 color. Also use rgb(188,123,228) instead hex code.
.myTextColor { color: #BC7BE4; }
<p style="color:#BC7BE4">This sample text font color is #BC7BE4.</p>
This text font color is #BC7BE4.
.myBgColor { background-color: #BC7BE4; }
<div style="background-color:#BC7BE4">Inner text</div>
This div background color is #BC7BE4.
.myBorderColor { border: 1px solid #BC7BE4; }
<div style="border:3px solid #BC7BE4">Div</div>
This div border color is #BC7BE4.
.myOpacity80 { color: #BC7BE4; opacity: 0.8; }
<p style="color:#BC7BE4;opacity:0.8;">80%</p>
Text with #BC7BE4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC7BE4;}
<p style="text-shadow: 3px 3px 1px #BC7BE4">Text here.</p>
This text has shadow with #BC7BE4 color.
.textShadow {text-shadow: 3px 3px 1px #BC7BE4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC7BE4, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC7BE4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC7BE4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC7BE4, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC7BE4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC7BE4; -webkit-box-shadow: 1px 1px 3px 2px #BC7BE4; box-shadow: 1px 1px 3px 2px #BC7BE4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC7BE4; -webkit-box-shadow: 1px 1px 3px 2px #BC7BE4; box-shadow:1px 1px 3px 2px #BC7BE4;">
Div content here</div>
This text has color #BC7BE4 on black background.
This text has color #BC7BE4 on white background.
This text has black color on #BC7BE4 background.
This text has white color on #BC7BE4 background.