HEX: #BEABF0
RGB: (190,171,240)
#BEABF0 contains mainly red and blue colors. Web safe color of #BEABF0 is #CC99FF (or #C9F).
#BEABF0 color RGB value is (190,171,240).
RGB: (190,171,240) (75%,67%,94%)
R 190 of 255 = 75%
G 171 of 255 = 67%
B 240 of 255 = 94%
R + G + B ~ 79%. #BEABF0 is quite light color.
R + G + B =
190 + 171 + 240 = 601 (100%)
R 190 of 601 ~ 31.61%
G 171 of 601 ~ 28.45%
B 240 of 601 ~ 39.93%
#BEABF0 color CMYK value is (21,29,0,6).
CMYK: (21,29,0,6) C21M29Y0K6 (21%,29%,0%,6%) (0.21/0.29/0.00/0.06)
BE | AB | F0 | |
---|---|---|---|
RGB | 190 | 171 | 240 |
HSL | 257° | 69.70% | 80.59% |
HSB/HSV | 257° | 28.75% | 94.12% |
CMYK | 20.83% | 28.75% | 0.00% |
5.88% |
HEX | BE | AB | F0 |
Decimal | 190 | 171 | 240 |
Binary | 10111110 | 10101011 | 11110000 |
Octal | 276 | 253 | 360 |
Examples of css and html codes for elements with #BEABF0 color. Also use rgb(190,171,240) instead hex code.
.myTextColor { color: #BEABF0; }
<p style="color:#BEABF0">This sample text font color is #BEABF0.</p>
This text font color is #BEABF0.
.myBgColor { background-color: #BEABF0; }
<div style="background-color:#BEABF0">Inner text</div>
This div background color is #BEABF0.
.myBorderColor { border: 1px solid #BEABF0; }
<div style="border:3px solid #BEABF0">Div</div>
This div border color is #BEABF0.
.myOpacity80 { color: #BEABF0; opacity: 0.8; }
<p style="color:#BEABF0;opacity:0.8;">80%</p>
Text with #BEABF0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEABF0;}
<p style="text-shadow: 3px 3px 1px #BEABF0">Text here.</p>
This text has shadow with #BEABF0 color.
.textShadow {text-shadow: 3px 3px 1px #BEABF0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEABF0, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEABF0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEABF0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEABF0, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEABF0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEABF0; -webkit-box-shadow: 1px 1px 3px 2px #BEABF0; box-shadow: 1px 1px 3px 2px #BEABF0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEABF0; -webkit-box-shadow: 1px 1px 3px 2px #BEABF0; box-shadow:1px 1px 3px 2px #BEABF0;">
Div content here</div>
This text has color #BEABF0 on black background.
This text has color #BEABF0 on white background.
This text has black color on #BEABF0 background.
This text has white color on #BEABF0 background.