HEX: #BE9259
RGB: (190,146,89)
#BE9259 contains mainly red and green colors. Web safe color of #BE9259 is #CC9966 (or #C96).
#BE9259 color RGB value is (190,146,89).
RGB: (190,146,89) (75%,57%,35%)
R 190 of 255 = 75%
G 146 of 255 = 57%
B 89 of 255 = 35%
R + G + B ~ 56%. #BE9259 is middle color (not dark and not light).
R + G + B =
190 + 146 + 89 = 425 (100%)
R 190 of 425 ~ 44.71%
G 146 of 425 ~ 34.35%
B 89 of 425 ~ 20.94%
#BE9259 color CMYK value is (0,23,53,25).
CMYK: (0,23,53,25) C0M23Y53K25 (0%,23%,53%,25%) (0.00/0.23/0.53/0.25)
BE | 92 | 59 | |
---|---|---|---|
RGB | 190 | 146 | 89 |
HSL | 34° | 43.72% | 54.71% |
HSB/HSV | 34° | 53.16% | 74.51% |
CMYK | 0.00% | 23.16% | 53.16% |
25.49% |
HEX | BE | 92 | 59 |
Decimal | 190 | 146 | 89 |
Binary | 10111110 | 10010010 | 1011001 |
Octal | 276 | 222 | 131 |
Examples of css and html codes for elements with #BE9259 color. Also use rgb(190,146,89) instead hex code.
.myTextColor { color: #BE9259; }
<p style="color:#BE9259">This sample text font color is #BE9259.</p>
This text font color is #BE9259.
.myBgColor { background-color: #BE9259; }
<div style="background-color:#BE9259">Inner text</div>
This div background color is #BE9259.
.myBorderColor { border: 1px solid #BE9259; }
<div style="border:3px solid #BE9259">Div</div>
This div border color is #BE9259.
.myOpacity80 { color: #BE9259; opacity: 0.8; }
<p style="color:#BE9259;opacity:0.8;">80%</p>
Text with #BE9259 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE9259;}
<p style="text-shadow: 3px 3px 1px #BE9259">Text here.</p>
This text has shadow with #BE9259 color.
.textShadow {text-shadow: 3px 3px 1px #BE9259, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE9259, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE9259 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE9259, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE9259, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE9259 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE9259; -webkit-box-shadow: 1px 1px 3px 2px #BE9259; box-shadow: 1px 1px 3px 2px #BE9259; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE9259; -webkit-box-shadow: 1px 1px 3px 2px #BE9259; box-shadow:1px 1px 3px 2px #BE9259;">
Div content here</div>
This text has color #BE9259 on black background.
This text has color #BE9259 on white background.
This text has black color on #BE9259 background.
This text has white color on #BE9259 background.