HEX: #BEA55E
RGB: (190,165,94)
#BEA55E contains mainly red and green colors. Web safe color of #BEA55E is #CC9966 (or #C96).
#BEA55E color RGB value is (190,165,94).
RGB: (190,165,94) (75%,65%,37%)
R 190 of 255 = 75%
G 165 of 255 = 65%
B 94 of 255 = 37%
R + G + B ~ 59%. #BEA55E is middle color (not dark and not light).
R + G + B =
190 + 165 + 94 = 449 (100%)
R 190 of 449 ~ 42.32%
G 165 of 449 ~ 36.75%
B 94 of 449 ~ 20.94%
#BEA55E color CMYK value is (0,13,51,25).
CMYK: (0,13,51,25) C0M13Y51K25 (0%,13%,51%,25%) (0.00/0.13/0.51/0.25)
BE | A5 | 5E | |
---|---|---|---|
RGB | 190 | 165 | 94 |
HSL | 44° | 42.48% | 55.69% |
HSB/HSV | 44° | 50.53% | 74.51% |
CMYK | 0.00% | 13.16% | 50.53% |
25.49% |
HEX | BE | A5 | 5E |
Decimal | 190 | 165 | 94 |
Binary | 10111110 | 10100101 | 1011110 |
Octal | 276 | 245 | 136 |
Examples of css and html codes for elements with #BEA55E color. Also use rgb(190,165,94) instead hex code.
.myTextColor { color: #BEA55E; }
<p style="color:#BEA55E">This sample text font color is #BEA55E.</p>
This text font color is #BEA55E.
.myBgColor { background-color: #BEA55E; }
<div style="background-color:#BEA55E">Inner text</div>
This div background color is #BEA55E.
.myBorderColor { border: 1px solid #BEA55E; }
<div style="border:3px solid #BEA55E">Div</div>
This div border color is #BEA55E.
.myOpacity80 { color: #BEA55E; opacity: 0.8; }
<p style="color:#BEA55E;opacity:0.8;">80%</p>
Text with #BEA55E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEA55E;}
<p style="text-shadow: 3px 3px 1px #BEA55E">Text here.</p>
This text has shadow with #BEA55E color.
.textShadow {text-shadow: 3px 3px 1px #BEA55E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEA55E, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEA55E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEA55E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEA55E, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEA55E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEA55E; -webkit-box-shadow: 1px 1px 3px 2px #BEA55E; box-shadow: 1px 1px 3px 2px #BEA55E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEA55E; -webkit-box-shadow: 1px 1px 3px 2px #BEA55E; box-shadow:1px 1px 3px 2px #BEA55E;">
Div content here</div>
This text has color #BEA55E on black background.
This text has color #BEA55E on white background.
This text has black color on #BEA55E background.
This text has white color on #BEA55E background.