HEX: #BC7BCC
RGB: (188,123,204)
#BC7BCC contains mainly red and blue colors. Web safe color of #BC7BCC is #CC66CC (or #C6C).
#BC7BCC color RGB value is (188,123,204).
RGB: (188,123,204) (74%,48%,80%)
R 188 of 255 = 74%
G 123 of 255 = 48%
B 204 of 255 = 80%
R + G + B ~ 67%. #BC7BCC is quite light color.
R + G + B =
188 + 123 + 204 = 515 (100%)
R 188 of 515 ~ 36.5%
G 123 of 515 ~ 23.88%
B 204 of 515 ~ 39.61%
#BC7BCC color CMYK value is (8,40,0,20).
CMYK: (8,40,0,20) C8M40Y0K20 (8%,40%,0%,20%) (0.08/0.40/0.00/0.20)
BC | 7B | CC | |
---|---|---|---|
RGB | 188 | 123 | 204 |
HSL | 288° | 44.26% | 64.12% |
HSB/HSV | 288° | 39.71% | 80.00% |
CMYK | 7.84% | 39.71% | 0.00% |
20.00% |
HEX | BC | 7B | CC |
Decimal | 188 | 123 | 204 |
Binary | 10111100 | 1111011 | 11001100 |
Octal | 274 | 173 | 314 |
Examples of css and html codes for elements with #BC7BCC color. Also use rgb(188,123,204) instead hex code.
.myTextColor { color: #BC7BCC; }
<p style="color:#BC7BCC">This sample text font color is #BC7BCC.</p>
This text font color is #BC7BCC.
.myBgColor { background-color: #BC7BCC; }
<div style="background-color:#BC7BCC">Inner text</div>
This div background color is #BC7BCC.
.myBorderColor { border: 1px solid #BC7BCC; }
<div style="border:3px solid #BC7BCC">Div</div>
This div border color is #BC7BCC.
.myOpacity80 { color: #BC7BCC; opacity: 0.8; }
<p style="color:#BC7BCC;opacity:0.8;">80%</p>
Text with #BC7BCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC7BCC;}
<p style="text-shadow: 3px 3px 1px #BC7BCC">Text here.</p>
This text has shadow with #BC7BCC color.
.textShadow {text-shadow: 3px 3px 1px #BC7BCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC7BCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC7BCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC7BCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC7BCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC7BCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC7BCC; -webkit-box-shadow: 1px 1px 3px 2px #BC7BCC; box-shadow: 1px 1px 3px 2px #BC7BCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC7BCC; -webkit-box-shadow: 1px 1px 3px 2px #BC7BCC; box-shadow:1px 1px 3px 2px #BC7BCC;">
Div content here</div>
This text has color #BC7BCC on black background.
This text has color #BC7BCC on white background.
This text has black color on #BC7BCC background.
This text has white color on #BC7BCC background.