HEX: #BC789E
RGB: (188,120,158)
#BC789E contains mainly red and blue colors. Web safe color of #BC789E is #CC6699 (or #C69).
#BC789E color RGB value is (188,120,158).
RGB: (188,120,158) (74%,47%,62%)
R 188 of 255 = 74%
G 120 of 255 = 47%
B 158 of 255 = 62%
R + G + B ~ 61%. #BC789E is quite light color.
R + G + B =
188 + 120 + 158 = 466 (100%)
R 188 of 466 ~ 40.34%
G 120 of 466 ~ 25.75%
B 158 of 466 ~ 33.91%
#BC789E color CMYK value is (0,36,16,26).
CMYK: (0,36,16,26) C0M36Y16K26 (0%,36%,16%,26%) (0.00/0.36/0.16/0.26)
BC | 78 | 9E | |
---|---|---|---|
RGB | 188 | 120 | 158 |
HSL | 326° | 33.66% | 60.39% |
HSB/HSV | 326° | 36.17% | 73.73% |
CMYK | 0.00% | 36.17% | 15.96% |
26.27% |
HEX | BC | 78 | 9E |
Decimal | 188 | 120 | 158 |
Binary | 10111100 | 1111000 | 10011110 |
Octal | 274 | 170 | 236 |
Examples of css and html codes for elements with #BC789E color. Also use rgb(188,120,158) instead hex code.
.myTextColor { color: #BC789E; }
<p style="color:#BC789E">This sample text font color is #BC789E.</p>
This text font color is #BC789E.
.myBgColor { background-color: #BC789E; }
<div style="background-color:#BC789E">Inner text</div>
This div background color is #BC789E.
.myBorderColor { border: 1px solid #BC789E; }
<div style="border:3px solid #BC789E">Div</div>
This div border color is #BC789E.
.myOpacity80 { color: #BC789E; opacity: 0.8; }
<p style="color:#BC789E;opacity:0.8;">80%</p>
Text with #BC789E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC789E;}
<p style="text-shadow: 3px 3px 1px #BC789E">Text here.</p>
This text has shadow with #BC789E color.
.textShadow {text-shadow: 3px 3px 1px #BC789E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC789E, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC789E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC789E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC789E, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC789E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC789E; -webkit-box-shadow: 1px 1px 3px 2px #BC789E; box-shadow: 1px 1px 3px 2px #BC789E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC789E; -webkit-box-shadow: 1px 1px 3px 2px #BC789E; box-shadow:1px 1px 3px 2px #BC789E;">
Div content here</div>
This text has color #BC789E on black background.
This text has color #BC789E on white background.
This text has black color on #BC789E background.
This text has white color on #BC789E background.