HEX: #BE4863
RGB: (190,72,99)
#BE4863 contains mainly red color. Web safe color of #BE4863 is #CC3366 (or #C36).
#BE4863 color RGB value is (190,72,99).
RGB: (190,72,99) (75%,28%,39%)
R 190 of 255 = 75%
G 72 of 255 = 28%
B 99 of 255 = 39%
R + G + B ~ 47%. #BE4863 is middle color (not dark and not light).
R + G + B =
190 + 72 + 99 = 361 (100%)
R 190 of 361 ~ 52.63%
G 72 of 361 ~ 19.94%
B 99 of 361 ~ 27.42%
#BE4863 color CMYK value is (0,62,48,25).
CMYK: (0,62,48,25) C0M62Y48K25 (0%,62%,48%,25%) (0.00/0.62/0.48/0.25)
BE | 48 | 63 | |
---|---|---|---|
RGB | 190 | 72 | 99 |
HSL | 346° | 47.58% | 51.37% |
HSB/HSV | 346° | 62.11% | 74.51% |
CMYK | 0.00% | 62.11% | 47.89% |
25.49% |
HEX | BE | 48 | 63 |
Decimal | 190 | 72 | 99 |
Binary | 10111110 | 1001000 | 1100011 |
Octal | 276 | 110 | 143 |
Examples of css and html codes for elements with #BE4863 color. Also use rgb(190,72,99) instead hex code.
.myTextColor { color: #BE4863; }
<p style="color:#BE4863">This sample text font color is #BE4863.</p>
This text font color is #BE4863.
.myBgColor { background-color: #BE4863; }
<div style="background-color:#BE4863">Inner text</div>
This div background color is #BE4863.
.myBorderColor { border: 1px solid #BE4863; }
<div style="border:3px solid #BE4863">Div</div>
This div border color is #BE4863.
.myOpacity80 { color: #BE4863; opacity: 0.8; }
<p style="color:#BE4863;opacity:0.8;">80%</p>
Text with #BE4863 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE4863;}
<p style="text-shadow: 3px 3px 1px #BE4863">Text here.</p>
This text has shadow with #BE4863 color.
.textShadow {text-shadow: 3px 3px 1px #BE4863, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE4863, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE4863 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE4863, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE4863, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE4863 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE4863; -webkit-box-shadow: 1px 1px 3px 2px #BE4863; box-shadow: 1px 1px 3px 2px #BE4863; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE4863; -webkit-box-shadow: 1px 1px 3px 2px #BE4863; box-shadow:1px 1px 3px 2px #BE4863;">
Div content here</div>
This text has color #BE4863 on black background.
This text has color #BE4863 on white background.
This text has black color on #BE4863 background.
This text has white color on #BE4863 background.