HEX: #BC3E7D
RGB: (188,62,125)
#BC3E7D contains mainly red color. Web safe color of #BC3E7D is #CC3366 (or #C36).
#BC3E7D color RGB value is (188,62,125).
RGB: (188,62,125) (74%,24%,49%)
R 188 of 255 = 74%
G 62 of 255 = 24%
B 125 of 255 = 49%
R + G + B ~ 49%. #BC3E7D is middle color (not dark and not light).
R + G + B =
188 + 62 + 125 = 375 (100%)
R 188 of 375 ~ 50.13%
G 62 of 375 ~ 16.53%
B 125 of 375 ~ 33.33%
#BC3E7D color CMYK value is (0,67,34,26).
CMYK: (0,67,34,26) C0M67Y34K26 (0%,67%,34%,26%) (0.00/0.67/0.34/0.26)
BC | 3E | 7D | |
---|---|---|---|
RGB | 188 | 62 | 125 |
HSL | 330° | 50.40% | 49.02% |
HSB/HSV | 330° | 67.02% | 73.73% |
CMYK | 0.00% | 67.02% | 33.51% |
26.27% |
HEX | BC | 3E | 7D |
Decimal | 188 | 62 | 125 |
Binary | 10111100 | 111110 | 1111101 |
Octal | 274 | 76 | 175 |
Examples of css and html codes for elements with #BC3E7D color. Also use rgb(188,62,125) instead hex code.
.myTextColor { color: #BC3E7D; }
<p style="color:#BC3E7D">This sample text font color is #BC3E7D.</p>
This text font color is #BC3E7D.
.myBgColor { background-color: #BC3E7D; }
<div style="background-color:#BC3E7D">Inner text</div>
This div background color is #BC3E7D.
.myBorderColor { border: 1px solid #BC3E7D; }
<div style="border:3px solid #BC3E7D">Div</div>
This div border color is #BC3E7D.
.myOpacity80 { color: #BC3E7D; opacity: 0.8; }
<p style="color:#BC3E7D;opacity:0.8;">80%</p>
Text with #BC3E7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC3E7D;}
<p style="text-shadow: 3px 3px 1px #BC3E7D">Text here.</p>
This text has shadow with #BC3E7D color.
.textShadow {text-shadow: 3px 3px 1px #BC3E7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC3E7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC3E7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC3E7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC3E7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC3E7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC3E7D; -webkit-box-shadow: 1px 1px 3px 2px #BC3E7D; box-shadow: 1px 1px 3px 2px #BC3E7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC3E7D; -webkit-box-shadow: 1px 1px 3px 2px #BC3E7D; box-shadow:1px 1px 3px 2px #BC3E7D;">
Div content here</div>
This text has color #BC3E7D on black background.
This text has color #BC3E7D on white background.
This text has black color on #BC3E7D background.
This text has white color on #BC3E7D background.