HEX: #B481EE
RGB: (180,129,238)
#B481EE contains mainly red and blue colors. Web safe color of #B481EE is #CC99FF (or #C9F).
#B481EE color RGB value is (180,129,238).
RGB: (180,129,238) (71%,51%,93%)
R 180 of 255 = 71%
G 129 of 255 = 51%
B 238 of 255 = 93%
R + G + B ~ 72%. #B481EE is quite light color.
R + G + B =
180 + 129 + 238 = 547 (100%)
R 180 of 547 ~ 32.91%
G 129 of 547 ~ 23.58%
B 238 of 547 ~ 43.51%
#B481EE color CMYK value is (24,46,0,7).
CMYK: (24,46,0,7) C24M46Y0K7 (24%,46%,0%,7%) (0.24/0.46/0.00/0.07)
B4 | 81 | EE | |
---|---|---|---|
RGB | 180 | 129 | 238 |
HSL | 268° | 76.22% | 71.96% |
HSB/HSV | 268° | 45.80% | 93.33% |
CMYK | 24.37% | 45.80% | 0.00% |
6.67% |
HEX | B4 | 81 | EE |
Decimal | 180 | 129 | 238 |
Binary | 10110100 | 10000001 | 11101110 |
Octal | 264 | 201 | 356 |
Examples of css and html codes for elements with #B481EE color. Also use rgb(180,129,238) instead hex code.
.myTextColor { color: #B481EE; }
<p style="color:#B481EE">This sample text font color is #B481EE.</p>
This text font color is #B481EE.
.myBgColor { background-color: #B481EE; }
<div style="background-color:#B481EE">Inner text</div>
This div background color is #B481EE.
.myBorderColor { border: 1px solid #B481EE; }
<div style="border:3px solid #B481EE">Div</div>
This div border color is #B481EE.
.myOpacity80 { color: #B481EE; opacity: 0.8; }
<p style="color:#B481EE;opacity:0.8;">80%</p>
Text with #B481EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B481EE;}
<p style="text-shadow: 3px 3px 1px #B481EE">Text here.</p>
This text has shadow with #B481EE color.
.textShadow {text-shadow: 3px 3px 1px #B481EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B481EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B481EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B481EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B481EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B481EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B481EE; -webkit-box-shadow: 1px 1px 3px 2px #B481EE; box-shadow: 1px 1px 3px 2px #B481EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B481EE; -webkit-box-shadow: 1px 1px 3px 2px #B481EE; box-shadow:1px 1px 3px 2px #B481EE;">
Div content here</div>
This text has color #B481EE on black background.
This text has color #B481EE on white background.
This text has black color on #B481EE background.
This text has white color on #B481EE background.