HEX: #B487BE
RGB: (180,135,190)
#B487BE contains red, green and blue colors in about the same proportion. Web safe color of #B487BE is #CC99CC (or #C9C).
#B487BE color RGB value is (180,135,190).
RGB: (180,135,190) (71%,53%,75%)
R 180 of 255 = 71%
G 135 of 255 = 53%
B 190 of 255 = 75%
R + G + B ~ 66%. #B487BE is quite light color.
R + G + B =
180 + 135 + 190 = 505 (100%)
R 180 of 505 ~ 35.64%
G 135 of 505 ~ 26.73%
B 190 of 505 ~ 37.62%
#B487BE color CMYK value is (5,29,0,25).
CMYK: (5,29,0,25) C5M29Y0K25 (5%,29%,0%,25%) (0.05/0.29/0.00/0.25)
B4 | 87 | BE | |
---|---|---|---|
RGB | 180 | 135 | 190 |
HSL | 289° | 29.73% | 63.73% |
HSB/HSV | 289° | 28.95% | 74.51% |
CMYK | 5.26% | 28.95% | 0.00% |
25.49% |
HEX | B4 | 87 | BE |
Decimal | 180 | 135 | 190 |
Binary | 10110100 | 10000111 | 10111110 |
Octal | 264 | 207 | 276 |
Examples of css and html codes for elements with #B487BE color. Also use rgb(180,135,190) instead hex code.
.myTextColor { color: #B487BE; }
<p style="color:#B487BE">This sample text font color is #B487BE.</p>
This text font color is #B487BE.
.myBgColor { background-color: #B487BE; }
<div style="background-color:#B487BE">Inner text</div>
This div background color is #B487BE.
.myBorderColor { border: 1px solid #B487BE; }
<div style="border:3px solid #B487BE">Div</div>
This div border color is #B487BE.
.myOpacity80 { color: #B487BE; opacity: 0.8; }
<p style="color:#B487BE;opacity:0.8;">80%</p>
Text with #B487BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B487BE;}
<p style="text-shadow: 3px 3px 1px #B487BE">Text here.</p>
This text has shadow with #B487BE color.
.textShadow {text-shadow: 3px 3px 1px #B487BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B487BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B487BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B487BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B487BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B487BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B487BE; -webkit-box-shadow: 1px 1px 3px 2px #B487BE; box-shadow: 1px 1px 3px 2px #B487BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B487BE; -webkit-box-shadow: 1px 1px 3px 2px #B487BE; box-shadow:1px 1px 3px 2px #B487BE;">
Div content here</div>
This text has color #B487BE on black background.
This text has color #B487BE on white background.
This text has black color on #B487BE background.
This text has white color on #B487BE background.