HEX: #B464AB
RGB: (180,100,171)
#B464AB contains mainly red and blue colors. Web safe color of #B464AB is #CC6699 (or #C69).
#B464AB color RGB value is (180,100,171).
RGB: (180,100,171) (71%,39%,67%)
R 180 of 255 = 71%
G 100 of 255 = 39%
B 171 of 255 = 67%
R + G + B ~ 59%. #B464AB is middle color (not dark and not light).
R + G + B =
180 + 100 + 171 = 451 (100%)
R 180 of 451 ~ 39.91%
G 100 of 451 ~ 22.17%
B 171 of 451 ~ 37.92%
#B464AB color CMYK value is (0,44,5,29).
CMYK: (0,44,5,29) C0M44Y5K29 (0%,44%,5%,29%) (0.00/0.44/0.05/0.29)
B4 | 64 | AB | |
---|---|---|---|
RGB | 180 | 100 | 171 |
HSL | 307° | 34.78% | 54.90% |
HSB/HSV | 307° | 44.44% | 70.59% |
CMYK | 0.00% | 44.44% | 5.00% |
29.41% |
HEX | B4 | 64 | AB |
Decimal | 180 | 100 | 171 |
Binary | 10110100 | 1100100 | 10101011 |
Octal | 264 | 144 | 253 |
Examples of css and html codes for elements with #B464AB color. Also use rgb(180,100,171) instead hex code.
.myTextColor { color: #B464AB; }
<p style="color:#B464AB">This sample text font color is #B464AB.</p>
This text font color is #B464AB.
.myBgColor { background-color: #B464AB; }
<div style="background-color:#B464AB">Inner text</div>
This div background color is #B464AB.
.myBorderColor { border: 1px solid #B464AB; }
<div style="border:3px solid #B464AB">Div</div>
This div border color is #B464AB.
.myOpacity80 { color: #B464AB; opacity: 0.8; }
<p style="color:#B464AB;opacity:0.8;">80%</p>
Text with #B464AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B464AB;}
<p style="text-shadow: 3px 3px 1px #B464AB">Text here.</p>
This text has shadow with #B464AB color.
.textShadow {text-shadow: 3px 3px 1px #B464AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B464AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B464AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B464AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B464AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B464AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B464AB; -webkit-box-shadow: 1px 1px 3px 2px #B464AB; box-shadow: 1px 1px 3px 2px #B464AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B464AB; -webkit-box-shadow: 1px 1px 3px 2px #B464AB; box-shadow:1px 1px 3px 2px #B464AB;">
Div content here</div>
This text has color #B464AB on black background.
This text has color #B464AB on white background.
This text has black color on #B464AB background.
This text has white color on #B464AB background.