HEX: #BE61EF
RGB: (190,97,239)
#BE61EF contains mainly red and blue colors. Web safe color of #BE61EF is #CC66FF (or #C6F).
#BE61EF color RGB value is (190,97,239).
RGB: (190,97,239) (75%,38%,94%)
R 190 of 255 = 75%
G 97 of 255 = 38%
B 239 of 255 = 94%
R + G + B ~ 69%. #BE61EF is quite light color.
R + G + B =
190 + 97 + 239 = 526 (100%)
R 190 of 526 ~ 36.12%
G 97 of 526 ~ 18.44%
B 239 of 526 ~ 45.44%
#BE61EF color CMYK value is (21,59,0,6).
CMYK: (21,59,0,6) C21M59Y0K6 (21%,59%,0%,6%) (0.21/0.59/0.00/0.06)
BE | 61 | EF | |
---|---|---|---|
RGB | 190 | 97 | 239 |
HSL | 279° | 81.61% | 65.88% |
HSB/HSV | 279° | 59.41% | 93.73% |
CMYK | 20.50% | 59.41% | 0.00% |
6.27% |
HEX | BE | 61 | EF |
Decimal | 190 | 97 | 239 |
Binary | 10111110 | 1100001 | 11101111 |
Octal | 276 | 141 | 357 |
Examples of css and html codes for elements with #BE61EF color. Also use rgb(190,97,239) instead hex code.
.myTextColor { color: #BE61EF; }
<p style="color:#BE61EF">This sample text font color is #BE61EF.</p>
This text font color is #BE61EF.
.myBgColor { background-color: #BE61EF; }
<div style="background-color:#BE61EF">Inner text</div>
This div background color is #BE61EF.
.myBorderColor { border: 1px solid #BE61EF; }
<div style="border:3px solid #BE61EF">Div</div>
This div border color is #BE61EF.
.myOpacity80 { color: #BE61EF; opacity: 0.8; }
<p style="color:#BE61EF;opacity:0.8;">80%</p>
Text with #BE61EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE61EF;}
<p style="text-shadow: 3px 3px 1px #BE61EF">Text here.</p>
This text has shadow with #BE61EF color.
.textShadow {text-shadow: 3px 3px 1px #BE61EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE61EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE61EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE61EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE61EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE61EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE61EF; -webkit-box-shadow: 1px 1px 3px 2px #BE61EF; box-shadow: 1px 1px 3px 2px #BE61EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE61EF; -webkit-box-shadow: 1px 1px 3px 2px #BE61EF; box-shadow:1px 1px 3px 2px #BE61EF;">
Div content here</div>
This text has color #BE61EF on black background.
This text has color #BE61EF on white background.
This text has black color on #BE61EF background.
This text has white color on #BE61EF background.