HEX: #BE4CAE
RGB: (190,76,174)
#BE4CAE contains mainly red and blue colors. Web safe color of #BE4CAE is #CC3399 (or #C39).
#BE4CAE color RGB value is (190,76,174).
RGB: (190,76,174) (75%,30%,68%)
R 190 of 255 = 75%
G 76 of 255 = 30%
B 174 of 255 = 68%
R + G + B ~ 58%. #BE4CAE is middle color (not dark and not light).
R + G + B =
190 + 76 + 174 = 440 (100%)
R 190 of 440 ~ 43.18%
G 76 of 440 ~ 17.27%
B 174 of 440 ~ 39.55%
#BE4CAE color CMYK value is (0,60,8,25).
CMYK: (0,60,8,25) C0M60Y8K25 (0%,60%,8%,25%) (0.00/0.60/0.08/0.25)
BE | 4C | AE | |
---|---|---|---|
RGB | 190 | 76 | 174 |
HSL | 308° | 46.72% | 52.16% |
HSB/HSV | 308° | 60.00% | 74.51% |
CMYK | 0.00% | 60.00% | 8.42% |
25.49% |
HEX | BE | 4C | AE |
Decimal | 190 | 76 | 174 |
Binary | 10111110 | 1001100 | 10101110 |
Octal | 276 | 114 | 256 |
Examples of css and html codes for elements with #BE4CAE color. Also use rgb(190,76,174) instead hex code.
.myTextColor { color: #BE4CAE; }
<p style="color:#BE4CAE">This sample text font color is #BE4CAE.</p>
This text font color is #BE4CAE.
.myBgColor { background-color: #BE4CAE; }
<div style="background-color:#BE4CAE">Inner text</div>
This div background color is #BE4CAE.
.myBorderColor { border: 1px solid #BE4CAE; }
<div style="border:3px solid #BE4CAE">Div</div>
This div border color is #BE4CAE.
.myOpacity80 { color: #BE4CAE; opacity: 0.8; }
<p style="color:#BE4CAE;opacity:0.8;">80%</p>
Text with #BE4CAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE4CAE;}
<p style="text-shadow: 3px 3px 1px #BE4CAE">Text here.</p>
This text has shadow with #BE4CAE color.
.textShadow {text-shadow: 3px 3px 1px #BE4CAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE4CAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE4CAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE4CAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE4CAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE4CAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE4CAE; -webkit-box-shadow: 1px 1px 3px 2px #BE4CAE; box-shadow: 1px 1px 3px 2px #BE4CAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE4CAE; -webkit-box-shadow: 1px 1px 3px 2px #BE4CAE; box-shadow:1px 1px 3px 2px #BE4CAE;">
Div content here</div>
This text has color #BE4CAE on black background.
This text has color #BE4CAE on white background.
This text has black color on #BE4CAE background.
This text has white color on #BE4CAE background.