HEX: #BEB772
RGB: (190,183,114)
#BEB772 contains mainly red and green colors. Web safe color of #BEB772 is #CCCC66 (or #CC6).
#BEB772 color RGB value is (190,183,114).
RGB: (190,183,114) (75%,72%,45%)
R 190 of 255 = 75%
G 183 of 255 = 72%
B 114 of 255 = 45%
R + G + B ~ 64%. #BEB772 is quite light color.
R + G + B =
190 + 183 + 114 = 487 (100%)
R 190 of 487 ~ 39.01%
G 183 of 487 ~ 37.58%
B 114 of 487 ~ 23.41%
#BEB772 color CMYK value is (0,4,40,25).
CMYK: (0,4,40,25) C0M4Y40K25 (0%,4%,40%,25%) (0.00/0.04/0.40/0.25)
BE | B7 | 72 | |
---|---|---|---|
RGB | 190 | 183 | 114 |
HSL | 54° | 36.89% | 59.61% |
HSB/HSV | 54° | 40.00% | 74.51% |
CMYK | 0.00% | 3.68% | 40.00% |
25.49% |
HEX | BE | B7 | 72 |
Decimal | 190 | 183 | 114 |
Binary | 10111110 | 10110111 | 1110010 |
Octal | 276 | 267 | 162 |
Examples of css and html codes for elements with #BEB772 color. Also use rgb(190,183,114) instead hex code.
.myTextColor { color: #BEB772; }
<p style="color:#BEB772">This sample text font color is #BEB772.</p>
This text font color is #BEB772.
.myBgColor { background-color: #BEB772; }
<div style="background-color:#BEB772">Inner text</div>
This div background color is #BEB772.
.myBorderColor { border: 1px solid #BEB772; }
<div style="border:3px solid #BEB772">Div</div>
This div border color is #BEB772.
.myOpacity80 { color: #BEB772; opacity: 0.8; }
<p style="color:#BEB772;opacity:0.8;">80%</p>
Text with #BEB772 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB772;}
<p style="text-shadow: 3px 3px 1px #BEB772">Text here.</p>
This text has shadow with #BEB772 color.
.textShadow {text-shadow: 3px 3px 1px #BEB772, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB772, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB772 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB772, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB772, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB772 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB772; -webkit-box-shadow: 1px 1px 3px 2px #BEB772; box-shadow: 1px 1px 3px 2px #BEB772; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB772; -webkit-box-shadow: 1px 1px 3px 2px #BEB772; box-shadow:1px 1px 3px 2px #BEB772;">
Div content here</div>
This text has color #BEB772 on black background.
This text has color #BEB772 on white background.
This text has black color on #BEB772 background.
This text has white color on #BEB772 background.