HEX: #BE8846
RGB: (190,136,70)
#BE8846 contains mainly red and green colors. Web safe color of #BE8846 is #CC9933 (or #C93).
#BE8846 color RGB value is (190,136,70).
RGB: (190,136,70) (75%,53%,27%)
R 190 of 255 = 75%
G 136 of 255 = 53%
B 70 of 255 = 27%
R + G + B ~ 52%. #BE8846 is middle color (not dark and not light).
R + G + B =
190 + 136 + 70 = 396 (100%)
R 190 of 396 ~ 47.98%
G 136 of 396 ~ 34.34%
B 70 of 396 ~ 17.68%
#BE8846 color CMYK value is (0,28,63,25).
CMYK: (0,28,63,25) C0M28Y63K25 (0%,28%,63%,25%) (0.00/0.28/0.63/0.25)
BE | 88 | 46 | |
---|---|---|---|
RGB | 190 | 136 | 70 |
HSL | 33° | 48.00% | 50.98% |
HSB/HSV | 33° | 63.16% | 74.51% |
CMYK | 0.00% | 28.42% | 63.16% |
25.49% |
HEX | BE | 88 | 46 |
Decimal | 190 | 136 | 70 |
Binary | 10111110 | 10001000 | 1000110 |
Octal | 276 | 210 | 106 |
Examples of css and html codes for elements with #BE8846 color. Also use rgb(190,136,70) instead hex code.
.myTextColor { color: #BE8846; }
<p style="color:#BE8846">This sample text font color is #BE8846.</p>
This text font color is #BE8846.
.myBgColor { background-color: #BE8846; }
<div style="background-color:#BE8846">Inner text</div>
This div background color is #BE8846.
.myBorderColor { border: 1px solid #BE8846; }
<div style="border:3px solid #BE8846">Div</div>
This div border color is #BE8846.
.myOpacity80 { color: #BE8846; opacity: 0.8; }
<p style="color:#BE8846;opacity:0.8;">80%</p>
Text with #BE8846 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE8846;}
<p style="text-shadow: 3px 3px 1px #BE8846">Text here.</p>
This text has shadow with #BE8846 color.
.textShadow {text-shadow: 3px 3px 1px #BE8846, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE8846, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE8846 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE8846, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE8846, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE8846 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE8846; -webkit-box-shadow: 1px 1px 3px 2px #BE8846; box-shadow: 1px 1px 3px 2px #BE8846; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE8846; -webkit-box-shadow: 1px 1px 3px 2px #BE8846; box-shadow:1px 1px 3px 2px #BE8846;">
Div content here</div>
This text has color #BE8846 on black background.
This text has color #BE8846 on white background.
This text has black color on #BE8846 background.
This text has white color on #BE8846 background.