HEX: #BE5990
RGB: (190,89,144)
#BE5990 contains mainly red and blue colors. Web safe color of #BE5990 is #CC6699 (or #C69).
#BE5990 color RGB value is (190,89,144).
RGB: (190,89,144) (75%,35%,56%)
R 190 of 255 = 75%
G 89 of 255 = 35%
B 144 of 255 = 56%
R + G + B ~ 55%. #BE5990 is middle color (not dark and not light).
R + G + B =
190 + 89 + 144 = 423 (100%)
R 190 of 423 ~ 44.92%
G 89 of 423 ~ 21.04%
B 144 of 423 ~ 34.04%
#BE5990 color CMYK value is (0,53,24,25).
CMYK: (0,53,24,25) C0M53Y24K25 (0%,53%,24%,25%) (0.00/0.53/0.24/0.25)
BE | 59 | 90 | |
---|---|---|---|
RGB | 190 | 89 | 144 |
HSL | 327° | 43.72% | 54.71% |
HSB/HSV | 327° | 53.16% | 74.51% |
CMYK | 0.00% | 53.16% | 24.21% |
25.49% |
HEX | BE | 59 | 90 |
Decimal | 190 | 89 | 144 |
Binary | 10111110 | 1011001 | 10010000 |
Octal | 276 | 131 | 220 |
Examples of css and html codes for elements with #BE5990 color. Also use rgb(190,89,144) instead hex code.
.myTextColor { color: #BE5990; }
<p style="color:#BE5990">This sample text font color is #BE5990.</p>
This text font color is #BE5990.
.myBgColor { background-color: #BE5990; }
<div style="background-color:#BE5990">Inner text</div>
This div background color is #BE5990.
.myBorderColor { border: 1px solid #BE5990; }
<div style="border:3px solid #BE5990">Div</div>
This div border color is #BE5990.
.myOpacity80 { color: #BE5990; opacity: 0.8; }
<p style="color:#BE5990;opacity:0.8;">80%</p>
Text with #BE5990 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE5990;}
<p style="text-shadow: 3px 3px 1px #BE5990">Text here.</p>
This text has shadow with #BE5990 color.
.textShadow {text-shadow: 3px 3px 1px #BE5990, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE5990, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE5990 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE5990, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE5990, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE5990 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE5990; -webkit-box-shadow: 1px 1px 3px 2px #BE5990; box-shadow: 1px 1px 3px 2px #BE5990; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE5990; -webkit-box-shadow: 1px 1px 3px 2px #BE5990; box-shadow:1px 1px 3px 2px #BE5990;">
Div content here</div>
This text has color #BE5990 on black background.
This text has color #BE5990 on white background.
This text has black color on #BE5990 background.
This text has white color on #BE5990 background.