HEX: #B000F0
RGB: (176,0,240)
#B000F0 contains mainly blue color. Web safe color of #B000F0 is #9900FF (or #90F).
#B000F0 color RGB value is (176,0,240).
RGB: (176,0,240) (69%,0%,94%)
R 176 of 255 = 69%
G 0 of 255 = 0%
B 240 of 255 = 94%
R + G + B ~ 54%. #B000F0 is middle color (not dark and not light).
R + G + B =
176 + 0 + 240 = 416 (100%)
R 176 of 416 ~ 42.31%
G 0 of 416 ~ 0%
B 240 of 416 ~ 57.69%
#B000F0 color CMYK value is (27,100,0,6).
CMYK: (27,100,0,6) C27M100Y0K6 (27%,100%,0%,6%) (0.27/1.00/0.00/0.06)
B0 | 00 | F0 | |
---|---|---|---|
RGB | 176 | 0 | 240 |
HSL | 284° | 100.00% | 47.06% |
HSB/HSV | 284° | 100.00% | 94.12% |
CMYK | 26.67% | 100.00% | 0.00% |
5.88% |
HEX | B0 | 00 | F0 |
Decimal | 176 | 0 | 240 |
Binary | 10110000 | 0 | 11110000 |
Octal | 260 | 0 | 360 |
Examples of css and html codes for elements with #B000F0 color. Also use rgb(176,0,240) instead hex code.
.myTextColor { color: #B000F0; }
<p style="color:#B000F0">This sample text font color is #B000F0.</p>
This text font color is #B000F0.
.myBgColor { background-color: #B000F0; }
<div style="background-color:#B000F0">Inner text</div>
This div background color is #B000F0.
.myBorderColor { border: 1px solid #B000F0; }
<div style="border:3px solid #B000F0">Div</div>
This div border color is #B000F0.
.myOpacity80 { color: #B000F0; opacity: 0.8; }
<p style="color:#B000F0;opacity:0.8;">80%</p>
Text with #B000F0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B000F0;}
<p style="text-shadow: 3px 3px 1px #B000F0">Text here.</p>
This text has shadow with #B000F0 color.
.textShadow {text-shadow: 3px 3px 1px #B000F0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B000F0, 5px 5px 20px red">Text here.</p>
This text has shadow with #B000F0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B000F0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B000F0, Direction=45, Strength=4)">Text</p>
This text has shadow with #B000F0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B000F0; -webkit-box-shadow: 1px 1px 3px 2px #B000F0; box-shadow: 1px 1px 3px 2px #B000F0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B000F0; -webkit-box-shadow: 1px 1px 3px 2px #B000F0; box-shadow:1px 1px 3px 2px #B000F0;">
Div content here</div>
This text has color #B000F0 on black background.
This text has color #B000F0 on white background.
This text has black color on #B000F0 background.
This text has white color on #B000F0 background.