HEX: #BE838D
RGB: (190,131,141)
#BE838D contains red, green and blue colors in about the same proportion. Web safe color of #BE838D is #CC9999 (or #C99).
#BE838D color RGB value is (190,131,141).
RGB: (190,131,141) (75%,51%,55%)
R 190 of 255 = 75%
G 131 of 255 = 51%
B 141 of 255 = 55%
R + G + B ~ 60%. #BE838D is middle color (not dark and not light).
R + G + B =
190 + 131 + 141 = 462 (100%)
R 190 of 462 ~ 41.13%
G 131 of 462 ~ 28.35%
B 141 of 462 ~ 30.52%
#BE838D color CMYK value is (0,31,26,25).
CMYK: (0,31,26,25) C0M31Y26K25 (0%,31%,26%,25%) (0.00/0.31/0.26/0.25)
BE | 83 | 8D | |
---|---|---|---|
RGB | 190 | 131 | 141 |
HSL | 350° | 31.22% | 62.94% |
HSB/HSV | 350° | 31.05% | 74.51% |
CMYK | 0.00% | 31.05% | 25.79% |
25.49% |
HEX | BE | 83 | 8D |
Decimal | 190 | 131 | 141 |
Binary | 10111110 | 10000011 | 10001101 |
Octal | 276 | 203 | 215 |
Examples of css and html codes for elements with #BE838D color. Also use rgb(190,131,141) instead hex code.
.myTextColor { color: #BE838D; }
<p style="color:#BE838D">This sample text font color is #BE838D.</p>
This text font color is #BE838D.
.myBgColor { background-color: #BE838D; }
<div style="background-color:#BE838D">Inner text</div>
This div background color is #BE838D.
.myBorderColor { border: 1px solid #BE838D; }
<div style="border:3px solid #BE838D">Div</div>
This div border color is #BE838D.
.myOpacity80 { color: #BE838D; opacity: 0.8; }
<p style="color:#BE838D;opacity:0.8;">80%</p>
Text with #BE838D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE838D;}
<p style="text-shadow: 3px 3px 1px #BE838D">Text here.</p>
This text has shadow with #BE838D color.
.textShadow {text-shadow: 3px 3px 1px #BE838D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE838D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE838D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE838D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE838D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE838D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE838D; -webkit-box-shadow: 1px 1px 3px 2px #BE838D; box-shadow: 1px 1px 3px 2px #BE838D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE838D; -webkit-box-shadow: 1px 1px 3px 2px #BE838D; box-shadow:1px 1px 3px 2px #BE838D;">
Div content here</div>
This text has color #BE838D on black background.
This text has color #BE838D on white background.
This text has black color on #BE838D background.
This text has white color on #BE838D background.