HEX: #BE5DEB
RGB: (190,93,235)
#BE5DEB contains mainly red and blue colors. Web safe color of #BE5DEB is #CC66FF (or #C6F).
#BE5DEB color RGB value is (190,93,235).
RGB: (190,93,235) (75%,36%,92%)
R 190 of 255 = 75%
G 93 of 255 = 36%
B 235 of 255 = 92%
R + G + B ~ 68%. #BE5DEB is quite light color.
R + G + B =
190 + 93 + 235 = 518 (100%)
R 190 of 518 ~ 36.68%
G 93 of 518 ~ 17.95%
B 235 of 518 ~ 45.37%
#BE5DEB color CMYK value is (19,60,0,8).
CMYK: (19,60,0,8) C19M60Y0K8 (19%,60%,0%,8%) (0.19/0.60/0.00/0.08)
BE | 5D | EB | |
---|---|---|---|
RGB | 190 | 93 | 235 |
HSL | 281° | 78.02% | 64.31% |
HSB/HSV | 281° | 60.43% | 92.16% |
CMYK | 19.15% | 60.43% | 0.00% |
7.84% |
HEX | BE | 5D | EB |
Decimal | 190 | 93 | 235 |
Binary | 10111110 | 1011101 | 11101011 |
Octal | 276 | 135 | 353 |
Examples of css and html codes for elements with #BE5DEB color. Also use rgb(190,93,235) instead hex code.
.myTextColor { color: #BE5DEB; }
<p style="color:#BE5DEB">This sample text font color is #BE5DEB.</p>
This text font color is #BE5DEB.
.myBgColor { background-color: #BE5DEB; }
<div style="background-color:#BE5DEB">Inner text</div>
This div background color is #BE5DEB.
.myBorderColor { border: 1px solid #BE5DEB; }
<div style="border:3px solid #BE5DEB">Div</div>
This div border color is #BE5DEB.
.myOpacity80 { color: #BE5DEB; opacity: 0.8; }
<p style="color:#BE5DEB;opacity:0.8;">80%</p>
Text with #BE5DEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE5DEB;}
<p style="text-shadow: 3px 3px 1px #BE5DEB">Text here.</p>
This text has shadow with #BE5DEB color.
.textShadow {text-shadow: 3px 3px 1px #BE5DEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE5DEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE5DEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE5DEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE5DEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE5DEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE5DEB; -webkit-box-shadow: 1px 1px 3px 2px #BE5DEB; box-shadow: 1px 1px 3px 2px #BE5DEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE5DEB; -webkit-box-shadow: 1px 1px 3px 2px #BE5DEB; box-shadow:1px 1px 3px 2px #BE5DEB;">
Div content here</div>
This text has color #BE5DEB on black background.
This text has color #BE5DEB on white background.
This text has black color on #BE5DEB background.
This text has white color on #BE5DEB background.