HEX: #BB009A
RGB: (187,0,154)
#BB009A contains only red and blue colors. Web safe color of #BB009A is #CC0099 (or #C09).
#BB009A color RGB value is (187,0,154).
RGB: (187,0,154) (73%,0%,60%)
R 187 of 255 = 73%
G 0 of 255 = 0%
B 154 of 255 = 60%
R + G + B ~ 44%. #BB009A is middle color (not dark and not light).
R + G + B =
187 + 0 + 154 = 341 (100%)
R 187 of 341 ~ 54.84%
G 0 of 341 ~ 0%
B 154 of 341 ~ 45.16%
#BB009A color CMYK value is (0,100,18,27).
CMYK: (0,100,18,27) C0M100Y18K27 (0%,100%,18%,27%) (0.00/1.00/0.18/0.27)
BB | 00 | 9A | |
---|---|---|---|
RGB | 187 | 0 | 154 |
HSL | 311° | 100.00% | 36.67% |
HSB/HSV | 311° | 100.00% | 73.33% |
CMYK | 0.00% | 100.00% | 17.65% |
26.67% |
HEX | BB | 00 | 9A |
Decimal | 187 | 0 | 154 |
Binary | 10111011 | 0 | 10011010 |
Octal | 273 | 0 | 232 |
Examples of css and html codes for elements with #BB009A color. Also use rgb(187,0,154) instead hex code.
.myTextColor { color: #BB009A; }
<p style="color:#BB009A">This sample text font color is #BB009A.</p>
This text font color is #BB009A.
.myBgColor { background-color: #BB009A; }
<div style="background-color:#BB009A">Inner text</div>
This div background color is #BB009A.
.myBorderColor { border: 1px solid #BB009A; }
<div style="border:3px solid #BB009A">Div</div>
This div border color is #BB009A.
.myOpacity80 { color: #BB009A; opacity: 0.8; }
<p style="color:#BB009A;opacity:0.8;">80%</p>
Text with #BB009A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB009A;}
<p style="text-shadow: 3px 3px 1px #BB009A">Text here.</p>
This text has shadow with #BB009A color.
.textShadow {text-shadow: 3px 3px 1px #BB009A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB009A, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB009A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB009A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB009A, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB009A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB009A; -webkit-box-shadow: 1px 1px 3px 2px #BB009A; box-shadow: 1px 1px 3px 2px #BB009A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB009A; -webkit-box-shadow: 1px 1px 3px 2px #BB009A; box-shadow:1px 1px 3px 2px #BB009A;">
Div content here</div>
This text has color #BB009A on black background.
This text has color #BB009A on white background.
This text has black color on #BB009A background.
This text has white color on #BB009A background.