HEX: #BC7299
RGB: (188,114,153)
#BC7299 contains mainly red and blue colors. Web safe color of #BC7299 is #CC6699 (or #C69).
#BC7299 color RGB value is (188,114,153).
RGB: (188,114,153) (74%,45%,60%)
R 188 of 255 = 74%
G 114 of 255 = 45%
B 153 of 255 = 60%
R + G + B ~ 60%. #BC7299 is middle color (not dark and not light).
R + G + B =
188 + 114 + 153 = 455 (100%)
R 188 of 455 ~ 41.32%
G 114 of 455 ~ 25.05%
B 153 of 455 ~ 33.63%
#BC7299 color CMYK value is (0,39,19,26).
CMYK: (0,39,19,26) C0M39Y19K26 (0%,39%,19%,26%) (0.00/0.39/0.19/0.26)
BC | 72 | 99 | |
---|---|---|---|
RGB | 188 | 114 | 153 |
HSL | 328° | 35.58% | 59.22% |
HSB/HSV | 328° | 39.36% | 73.73% |
CMYK | 0.00% | 39.36% | 18.62% |
26.27% |
HEX | BC | 72 | 99 |
Decimal | 188 | 114 | 153 |
Binary | 10111100 | 1110010 | 10011001 |
Octal | 274 | 162 | 231 |
Examples of css and html codes for elements with #BC7299 color. Also use rgb(188,114,153) instead hex code.
.myTextColor { color: #BC7299; }
<p style="color:#BC7299">This sample text font color is #BC7299.</p>
This text font color is #BC7299.
.myBgColor { background-color: #BC7299; }
<div style="background-color:#BC7299">Inner text</div>
This div background color is #BC7299.
.myBorderColor { border: 1px solid #BC7299; }
<div style="border:3px solid #BC7299">Div</div>
This div border color is #BC7299.
.myOpacity80 { color: #BC7299; opacity: 0.8; }
<p style="color:#BC7299;opacity:0.8;">80%</p>
Text with #BC7299 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC7299;}
<p style="text-shadow: 3px 3px 1px #BC7299">Text here.</p>
This text has shadow with #BC7299 color.
.textShadow {text-shadow: 3px 3px 1px #BC7299, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC7299, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC7299 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC7299, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC7299, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC7299 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC7299; -webkit-box-shadow: 1px 1px 3px 2px #BC7299; box-shadow: 1px 1px 3px 2px #BC7299; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC7299; -webkit-box-shadow: 1px 1px 3px 2px #BC7299; box-shadow:1px 1px 3px 2px #BC7299;">
Div content here</div>
This text has color #BC7299 on black background.
This text has color #BC7299 on white background.
This text has black color on #BC7299 background.
This text has white color on #BC7299 background.