HEX: #B050AC
RGB: (176,80,172)
#B050AC contains mainly red and blue colors. Web safe color of #B050AC is #996699 (or #969).
#B050AC color RGB value is (176,80,172).
RGB: (176,80,172) (69%,31%,67%)
R 176 of 255 = 69%
G 80 of 255 = 31%
B 172 of 255 = 67%
R + G + B ~ 56%. #B050AC is middle color (not dark and not light).
R + G + B =
176 + 80 + 172 = 428 (100%)
R 176 of 428 ~ 41.12%
G 80 of 428 ~ 18.69%
B 172 of 428 ~ 40.19%
#B050AC color CMYK value is (0,55,2,31).
CMYK: (0,55,2,31) C0M55Y2K31 (0%,55%,2%,31%) (0.00/0.55/0.02/0.31)
B0 | 50 | AC | |
---|---|---|---|
RGB | 176 | 80 | 172 |
HSL | 303° | 37.80% | 50.20% |
HSB/HSV | 303° | 54.55% | 69.02% |
CMYK | 0.00% | 54.55% | 2.27% |
30.98% |
HEX | B0 | 50 | AC |
Decimal | 176 | 80 | 172 |
Binary | 10110000 | 1010000 | 10101100 |
Octal | 260 | 120 | 254 |
Examples of css and html codes for elements with #B050AC color. Also use rgb(176,80,172) instead hex code.
.myTextColor { color: #B050AC; }
<p style="color:#B050AC">This sample text font color is #B050AC.</p>
This text font color is #B050AC.
.myBgColor { background-color: #B050AC; }
<div style="background-color:#B050AC">Inner text</div>
This div background color is #B050AC.
.myBorderColor { border: 1px solid #B050AC; }
<div style="border:3px solid #B050AC">Div</div>
This div border color is #B050AC.
.myOpacity80 { color: #B050AC; opacity: 0.8; }
<p style="color:#B050AC;opacity:0.8;">80%</p>
Text with #B050AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B050AC;}
<p style="text-shadow: 3px 3px 1px #B050AC">Text here.</p>
This text has shadow with #B050AC color.
.textShadow {text-shadow: 3px 3px 1px #B050AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B050AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B050AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B050AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B050AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B050AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B050AC; -webkit-box-shadow: 1px 1px 3px 2px #B050AC; box-shadow: 1px 1px 3px 2px #B050AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B050AC; -webkit-box-shadow: 1px 1px 3px 2px #B050AC; box-shadow:1px 1px 3px 2px #B050AC;">
Div content here</div>
This text has color #B050AC on black background.
This text has color #B050AC on white background.
This text has black color on #B050AC background.
This text has white color on #B050AC background.