HEX: #BB6BAE
RGB: (187,107,174)
#BB6BAE contains mainly red and blue colors. Web safe color of #BB6BAE is #CC6699 (or #C69).
#BB6BAE color RGB value is (187,107,174).
RGB: (187,107,174) (73%,42%,68%)
R 187 of 255 = 73%
G 107 of 255 = 42%
B 174 of 255 = 68%
R + G + B ~ 61%. #BB6BAE is quite light color.
R + G + B =
187 + 107 + 174 = 468 (100%)
R 187 of 468 ~ 39.96%
G 107 of 468 ~ 22.86%
B 174 of 468 ~ 37.18%
#BB6BAE color CMYK value is (0,43,7,27).
CMYK: (0,43,7,27) C0M43Y7K27 (0%,43%,7%,27%) (0.00/0.43/0.07/0.27)
BB | 6B | AE | |
---|---|---|---|
RGB | 187 | 107 | 174 |
HSL | 310° | 37.04% | 57.65% |
HSB/HSV | 310° | 42.78% | 73.33% |
CMYK | 0.00% | 42.78% | 6.95% |
26.67% |
HEX | BB | 6B | AE |
Decimal | 187 | 107 | 174 |
Binary | 10111011 | 1101011 | 10101110 |
Octal | 273 | 153 | 256 |
Examples of css and html codes for elements with #BB6BAE color. Also use rgb(187,107,174) instead hex code.
.myTextColor { color: #BB6BAE; }
<p style="color:#BB6BAE">This sample text font color is #BB6BAE.</p>
This text font color is #BB6BAE.
.myBgColor { background-color: #BB6BAE; }
<div style="background-color:#BB6BAE">Inner text</div>
This div background color is #BB6BAE.
.myBorderColor { border: 1px solid #BB6BAE; }
<div style="border:3px solid #BB6BAE">Div</div>
This div border color is #BB6BAE.
.myOpacity80 { color: #BB6BAE; opacity: 0.8; }
<p style="color:#BB6BAE;opacity:0.8;">80%</p>
Text with #BB6BAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB6BAE;}
<p style="text-shadow: 3px 3px 1px #BB6BAE">Text here.</p>
This text has shadow with #BB6BAE color.
.textShadow {text-shadow: 3px 3px 1px #BB6BAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB6BAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB6BAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB6BAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB6BAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB6BAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB6BAE; -webkit-box-shadow: 1px 1px 3px 2px #BB6BAE; box-shadow: 1px 1px 3px 2px #BB6BAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB6BAE; -webkit-box-shadow: 1px 1px 3px 2px #BB6BAE; box-shadow:1px 1px 3px 2px #BB6BAE;">
Div content here</div>
This text has color #BB6BAE on black background.
This text has color #BB6BAE on white background.
This text has black color on #BB6BAE background.
This text has white color on #BB6BAE background.