HEX: #BE738C
RGB: (190,115,140)
#BE738C contains mainly red and blue colors. Web safe color of #BE738C is #CC6699 (or #C69).
#BE738C color RGB value is (190,115,140).
RGB: (190,115,140) (75%,45%,55%)
R 190 of 255 = 75%
G 115 of 255 = 45%
B 140 of 255 = 55%
R + G + B ~ 58%. #BE738C is middle color (not dark and not light).
R + G + B =
190 + 115 + 140 = 445 (100%)
R 190 of 445 ~ 42.7%
G 115 of 445 ~ 25.84%
B 140 of 445 ~ 31.46%
#BE738C color CMYK value is (0,39,26,25).
CMYK: (0,39,26,25) C0M39Y26K25 (0%,39%,26%,25%) (0.00/0.39/0.26/0.25)
BE | 73 | 8C | |
---|---|---|---|
RGB | 190 | 115 | 140 |
HSL | 340° | 36.59% | 59.80% |
HSB/HSV | 340° | 39.47% | 74.51% |
CMYK | 0.00% | 39.47% | 26.32% |
25.49% |
HEX | BE | 73 | 8C |
Decimal | 190 | 115 | 140 |
Binary | 10111110 | 1110011 | 10001100 |
Octal | 276 | 163 | 214 |
Examples of css and html codes for elements with #BE738C color. Also use rgb(190,115,140) instead hex code.
.myTextColor { color: #BE738C; }
<p style="color:#BE738C">This sample text font color is #BE738C.</p>
This text font color is #BE738C.
.myBgColor { background-color: #BE738C; }
<div style="background-color:#BE738C">Inner text</div>
This div background color is #BE738C.
.myBorderColor { border: 1px solid #BE738C; }
<div style="border:3px solid #BE738C">Div</div>
This div border color is #BE738C.
.myOpacity80 { color: #BE738C; opacity: 0.8; }
<p style="color:#BE738C;opacity:0.8;">80%</p>
Text with #BE738C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE738C;}
<p style="text-shadow: 3px 3px 1px #BE738C">Text here.</p>
This text has shadow with #BE738C color.
.textShadow {text-shadow: 3px 3px 1px #BE738C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE738C, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE738C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE738C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE738C, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE738C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE738C; -webkit-box-shadow: 1px 1px 3px 2px #BE738C; box-shadow: 1px 1px 3px 2px #BE738C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE738C; -webkit-box-shadow: 1px 1px 3px 2px #BE738C; box-shadow:1px 1px 3px 2px #BE738C;">
Div content here</div>
This text has color #BE738C on black background.
This text has color #BE738C on white background.
This text has black color on #BE738C background.
This text has white color on #BE738C background.