HEX: #BE9EFA
RGB: (190,158,250)
#BE9EFA contains mainly blue color. Web safe color of #BE9EFA is #CC99FF (or #C9F).
#BE9EFA color RGB value is (190,158,250).
RGB: (190,158,250) (75%,62%,98%)
R 190 of 255 = 75%
G 158 of 255 = 62%
B 250 of 255 = 98%
R + G + B ~ 78%. #BE9EFA is quite light color.
R + G + B =
190 + 158 + 250 = 598 (100%)
R 190 of 598 ~ 31.77%
G 158 of 598 ~ 26.42%
B 250 of 598 ~ 41.81%
#BE9EFA color CMYK value is (24,37,0,2).
CMYK: (24,37,0,2) C24M37Y0K2 (24%,37%,0%,2%) (0.24/0.37/0.00/0.02)
BE | 9E | FA | |
---|---|---|---|
RGB | 190 | 158 | 250 |
HSL | 261° | 90.20% | 80.00% |
HSB/HSV | 261° | 36.80% | 98.04% |
CMYK | 24.00% | 36.80% | 0.00% |
1.96% |
HEX | BE | 9E | FA |
Decimal | 190 | 158 | 250 |
Binary | 10111110 | 10011110 | 11111010 |
Octal | 276 | 236 | 372 |
Examples of css and html codes for elements with #BE9EFA color. Also use rgb(190,158,250) instead hex code.
.myTextColor { color: #BE9EFA; }
<p style="color:#BE9EFA">This sample text font color is #BE9EFA.</p>
This text font color is #BE9EFA.
.myBgColor { background-color: #BE9EFA; }
<div style="background-color:#BE9EFA">Inner text</div>
This div background color is #BE9EFA.
.myBorderColor { border: 1px solid #BE9EFA; }
<div style="border:3px solid #BE9EFA">Div</div>
This div border color is #BE9EFA.
.myOpacity80 { color: #BE9EFA; opacity: 0.8; }
<p style="color:#BE9EFA;opacity:0.8;">80%</p>
Text with #BE9EFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE9EFA;}
<p style="text-shadow: 3px 3px 1px #BE9EFA">Text here.</p>
This text has shadow with #BE9EFA color.
.textShadow {text-shadow: 3px 3px 1px #BE9EFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE9EFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE9EFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE9EFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE9EFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE9EFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE9EFA; -webkit-box-shadow: 1px 1px 3px 2px #BE9EFA; box-shadow: 1px 1px 3px 2px #BE9EFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE9EFA; -webkit-box-shadow: 1px 1px 3px 2px #BE9EFA; box-shadow:1px 1px 3px 2px #BE9EFA;">
Div content here</div>
This text has color #BE9EFA on black background.
This text has color #BE9EFA on white background.
This text has black color on #BE9EFA background.
This text has white color on #BE9EFA background.