HEX: #BC6184
RGB: (188,97,132)
#BC6184 contains mainly red and blue colors. Web safe color of #BC6184 is #CC6699 (or #C69).
#BC6184 color RGB value is (188,97,132).
RGB: (188,97,132) (74%,38%,52%)
R 188 of 255 = 74%
G 97 of 255 = 38%
B 132 of 255 = 52%
R + G + B ~ 55%. #BC6184 is middle color (not dark and not light).
R + G + B =
188 + 97 + 132 = 417 (100%)
R 188 of 417 ~ 45.08%
G 97 of 417 ~ 23.26%
B 132 of 417 ~ 31.65%
#BC6184 color CMYK value is (0,48,30,26).
CMYK: (0,48,30,26) C0M48Y30K26 (0%,48%,30%,26%) (0.00/0.48/0.30/0.26)
BC | 61 | 84 | |
---|---|---|---|
RGB | 188 | 97 | 132 |
HSL | 337° | 40.44% | 55.88% |
HSB/HSV | 337° | 48.40% | 73.73% |
CMYK | 0.00% | 48.40% | 29.79% |
26.27% |
HEX | BC | 61 | 84 |
Decimal | 188 | 97 | 132 |
Binary | 10111100 | 1100001 | 10000100 |
Octal | 274 | 141 | 204 |
Examples of css and html codes for elements with #BC6184 color. Also use rgb(188,97,132) instead hex code.
.myTextColor { color: #BC6184; }
<p style="color:#BC6184">This sample text font color is #BC6184.</p>
This text font color is #BC6184.
.myBgColor { background-color: #BC6184; }
<div style="background-color:#BC6184">Inner text</div>
This div background color is #BC6184.
.myBorderColor { border: 1px solid #BC6184; }
<div style="border:3px solid #BC6184">Div</div>
This div border color is #BC6184.
.myOpacity80 { color: #BC6184; opacity: 0.8; }
<p style="color:#BC6184;opacity:0.8;">80%</p>
Text with #BC6184 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC6184;}
<p style="text-shadow: 3px 3px 1px #BC6184">Text here.</p>
This text has shadow with #BC6184 color.
.textShadow {text-shadow: 3px 3px 1px #BC6184, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC6184, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC6184 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC6184, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC6184, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC6184 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC6184; -webkit-box-shadow: 1px 1px 3px 2px #BC6184; box-shadow: 1px 1px 3px 2px #BC6184; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC6184; -webkit-box-shadow: 1px 1px 3px 2px #BC6184; box-shadow:1px 1px 3px 2px #BC6184;">
Div content here</div>
This text has color #BC6184 on black background.
This text has color #BC6184 on white background.
This text has black color on #BC6184 background.
This text has white color on #BC6184 background.