HEX: #BE8E7D
RGB: (190,142,125)
#BE8E7D contains mainly red and green colors. Web safe color of #BE8E7D is #CC9966 (or #C96).
#BE8E7D color RGB value is (190,142,125).
RGB: (190,142,125) (75%,56%,49%)
R 190 of 255 = 75%
G 142 of 255 = 56%
B 125 of 255 = 49%
R + G + B ~ 60%. #BE8E7D is middle color (not dark and not light).
R + G + B =
190 + 142 + 125 = 457 (100%)
R 190 of 457 ~ 41.58%
G 142 of 457 ~ 31.07%
B 125 of 457 ~ 27.35%
#BE8E7D color CMYK value is (0,25,34,25).
CMYK: (0,25,34,25) C0M25Y34K25 (0%,25%,34%,25%) (0.00/0.25/0.34/0.25)
BE | 8E | 7D | |
---|---|---|---|
RGB | 190 | 142 | 125 |
HSL | 16° | 33.33% | 61.76% |
HSB/HSV | 16° | 34.21% | 74.51% |
CMYK | 0.00% | 25.26% | 34.21% |
25.49% |
HEX | BE | 8E | 7D |
Decimal | 190 | 142 | 125 |
Binary | 10111110 | 10001110 | 1111101 |
Octal | 276 | 216 | 175 |
Examples of css and html codes for elements with #BE8E7D color. Also use rgb(190,142,125) instead hex code.
.myTextColor { color: #BE8E7D; }
<p style="color:#BE8E7D">This sample text font color is #BE8E7D.</p>
This text font color is #BE8E7D.
.myBgColor { background-color: #BE8E7D; }
<div style="background-color:#BE8E7D">Inner text</div>
This div background color is #BE8E7D.
.myBorderColor { border: 1px solid #BE8E7D; }
<div style="border:3px solid #BE8E7D">Div</div>
This div border color is #BE8E7D.
.myOpacity80 { color: #BE8E7D; opacity: 0.8; }
<p style="color:#BE8E7D;opacity:0.8;">80%</p>
Text with #BE8E7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE8E7D;}
<p style="text-shadow: 3px 3px 1px #BE8E7D">Text here.</p>
This text has shadow with #BE8E7D color.
.textShadow {text-shadow: 3px 3px 1px #BE8E7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE8E7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE8E7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE8E7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE8E7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE8E7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE8E7D; -webkit-box-shadow: 1px 1px 3px 2px #BE8E7D; box-shadow: 1px 1px 3px 2px #BE8E7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE8E7D; -webkit-box-shadow: 1px 1px 3px 2px #BE8E7D; box-shadow:1px 1px 3px 2px #BE8E7D;">
Div content here</div>
This text has color #BE8E7D on black background.
This text has color #BE8E7D on white background.
This text has black color on #BE8E7D background.
This text has white color on #BE8E7D background.