HEX: #BC3FAE
RGB: (188,63,174)
#BC3FAE contains mainly red and blue colors. Web safe color of #BC3FAE is #CC3399 (or #C39).
#BC3FAE color RGB value is (188,63,174).
RGB: (188,63,174) (74%,25%,68%)
R 188 of 255 = 74%
G 63 of 255 = 25%
B 174 of 255 = 68%
R + G + B ~ 56%. #BC3FAE is middle color (not dark and not light).
R + G + B =
188 + 63 + 174 = 425 (100%)
R 188 of 425 ~ 44.24%
G 63 of 425 ~ 14.82%
B 174 of 425 ~ 40.94%
#BC3FAE color CMYK value is (0,66,7,26).
CMYK: (0,66,7,26) C0M66Y7K26 (0%,66%,7%,26%) (0.00/0.66/0.07/0.26)
BC | 3F | AE | |
---|---|---|---|
RGB | 188 | 63 | 174 |
HSL | 307° | 49.80% | 49.22% |
HSB/HSV | 307° | 66.49% | 73.73% |
CMYK | 0.00% | 66.49% | 7.45% |
26.27% |
HEX | BC | 3F | AE |
Decimal | 188 | 63 | 174 |
Binary | 10111100 | 111111 | 10101110 |
Octal | 274 | 77 | 256 |
Examples of css and html codes for elements with #BC3FAE color. Also use rgb(188,63,174) instead hex code.
.myTextColor { color: #BC3FAE; }
<p style="color:#BC3FAE">This sample text font color is #BC3FAE.</p>
This text font color is #BC3FAE.
.myBgColor { background-color: #BC3FAE; }
<div style="background-color:#BC3FAE">Inner text</div>
This div background color is #BC3FAE.
.myBorderColor { border: 1px solid #BC3FAE; }
<div style="border:3px solid #BC3FAE">Div</div>
This div border color is #BC3FAE.
.myOpacity80 { color: #BC3FAE; opacity: 0.8; }
<p style="color:#BC3FAE;opacity:0.8;">80%</p>
Text with #BC3FAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC3FAE;}
<p style="text-shadow: 3px 3px 1px #BC3FAE">Text here.</p>
This text has shadow with #BC3FAE color.
.textShadow {text-shadow: 3px 3px 1px #BC3FAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC3FAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC3FAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC3FAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC3FAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC3FAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC3FAE; -webkit-box-shadow: 1px 1px 3px 2px #BC3FAE; box-shadow: 1px 1px 3px 2px #BC3FAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC3FAE; -webkit-box-shadow: 1px 1px 3px 2px #BC3FAE; box-shadow:1px 1px 3px 2px #BC3FAE;">
Div content here</div>
This text has color #BC3FAE on black background.
This text has color #BC3FAE on white background.
This text has black color on #BC3FAE background.
This text has white color on #BC3FAE background.