HEX: #BC7FA7
RGB: (188,127,167)
#BC7FA7 contains mainly red and blue colors. Web safe color of #BC7FA7 is #CC6699 (or #C69).
#BC7FA7 color RGB value is (188,127,167).
RGB: (188,127,167) (74%,50%,65%)
R 188 of 255 = 74%
G 127 of 255 = 50%
B 167 of 255 = 65%
R + G + B ~ 63%. #BC7FA7 is quite light color.
R + G + B =
188 + 127 + 167 = 482 (100%)
R 188 of 482 ~ 39%
G 127 of 482 ~ 26.35%
B 167 of 482 ~ 34.65%
#BC7FA7 color CMYK value is (0,32,11,26).
CMYK: (0,32,11,26) C0M32Y11K26 (0%,32%,11%,26%) (0.00/0.32/0.11/0.26)
BC | 7F | A7 | |
---|---|---|---|
RGB | 188 | 127 | 167 |
HSL | 321° | 31.28% | 61.76% |
HSB/HSV | 321° | 32.45% | 73.73% |
CMYK | 0.00% | 32.45% | 11.17% |
26.27% |
HEX | BC | 7F | A7 |
Decimal | 188 | 127 | 167 |
Binary | 10111100 | 1111111 | 10100111 |
Octal | 274 | 177 | 247 |
Examples of css and html codes for elements with #BC7FA7 color. Also use rgb(188,127,167) instead hex code.
.myTextColor { color: #BC7FA7; }
<p style="color:#BC7FA7">This sample text font color is #BC7FA7.</p>
This text font color is #BC7FA7.
.myBgColor { background-color: #BC7FA7; }
<div style="background-color:#BC7FA7">Inner text</div>
This div background color is #BC7FA7.
.myBorderColor { border: 1px solid #BC7FA7; }
<div style="border:3px solid #BC7FA7">Div</div>
This div border color is #BC7FA7.
.myOpacity80 { color: #BC7FA7; opacity: 0.8; }
<p style="color:#BC7FA7;opacity:0.8;">80%</p>
Text with #BC7FA7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC7FA7;}
<p style="text-shadow: 3px 3px 1px #BC7FA7">Text here.</p>
This text has shadow with #BC7FA7 color.
.textShadow {text-shadow: 3px 3px 1px #BC7FA7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC7FA7, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC7FA7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC7FA7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC7FA7, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC7FA7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC7FA7; -webkit-box-shadow: 1px 1px 3px 2px #BC7FA7; box-shadow: 1px 1px 3px 2px #BC7FA7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC7FA7; -webkit-box-shadow: 1px 1px 3px 2px #BC7FA7; box-shadow:1px 1px 3px 2px #BC7FA7;">
Div content here</div>
This text has color #BC7FA7 on black background.
This text has color #BC7FA7 on white background.
This text has black color on #BC7FA7 background.
This text has white color on #BC7FA7 background.