HEX: #B081EE
RGB: (176,129,238)
#B081EE contains mainly blue color. Web safe color of #B081EE is #9999FF (or #99F).
#B081EE color RGB value is (176,129,238).
RGB: (176,129,238) (69%,51%,93%)
R 176 of 255 = 69%
G 129 of 255 = 51%
B 238 of 255 = 93%
R + G + B ~ 71%. #B081EE is quite light color.
R + G + B =
176 + 129 + 238 = 543 (100%)
R 176 of 543 ~ 32.41%
G 129 of 543 ~ 23.76%
B 238 of 543 ~ 43.83%
#B081EE color CMYK value is (26,46,0,7).
CMYK: (26,46,0,7) C26M46Y0K7 (26%,46%,0%,7%) (0.26/0.46/0.00/0.07)
B0 | 81 | EE | |
---|---|---|---|
RGB | 176 | 129 | 238 |
HSL | 266° | 76.22% | 71.96% |
HSB/HSV | 266° | 45.80% | 93.33% |
CMYK | 26.05% | 45.80% | 0.00% |
6.67% |
HEX | B0 | 81 | EE |
Decimal | 176 | 129 | 238 |
Binary | 10110000 | 10000001 | 11101110 |
Octal | 260 | 201 | 356 |
Examples of css and html codes for elements with #B081EE color. Also use rgb(176,129,238) instead hex code.
.myTextColor { color: #B081EE; }
<p style="color:#B081EE">This sample text font color is #B081EE.</p>
This text font color is #B081EE.
.myBgColor { background-color: #B081EE; }
<div style="background-color:#B081EE">Inner text</div>
This div background color is #B081EE.
.myBorderColor { border: 1px solid #B081EE; }
<div style="border:3px solid #B081EE">Div</div>
This div border color is #B081EE.
.myOpacity80 { color: #B081EE; opacity: 0.8; }
<p style="color:#B081EE;opacity:0.8;">80%</p>
Text with #B081EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B081EE;}
<p style="text-shadow: 3px 3px 1px #B081EE">Text here.</p>
This text has shadow with #B081EE color.
.textShadow {text-shadow: 3px 3px 1px #B081EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B081EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B081EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B081EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B081EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B081EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B081EE; -webkit-box-shadow: 1px 1px 3px 2px #B081EE; box-shadow: 1px 1px 3px 2px #B081EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B081EE; -webkit-box-shadow: 1px 1px 3px 2px #B081EE; box-shadow:1px 1px 3px 2px #B081EE;">
Div content here</div>
This text has color #B081EE on black background.
This text has color #B081EE on white background.
This text has black color on #B081EE background.
This text has white color on #B081EE background.