HEX: #BEB15B
RGB: (190,177,91)
#BEB15B contains mainly red and green colors. Web safe color of #BEB15B is #CC9966 (or #C96).
#BEB15B color RGB value is (190,177,91).
RGB: (190,177,91) (75%,69%,36%)
R 190 of 255 = 75%
G 177 of 255 = 69%
B 91 of 255 = 36%
R + G + B ~ 60%. #BEB15B is middle color (not dark and not light).
R + G + B =
190 + 177 + 91 = 458 (100%)
R 190 of 458 ~ 41.48%
G 177 of 458 ~ 38.65%
B 91 of 458 ~ 19.87%
#BEB15B color CMYK value is (0,7,52,25).
CMYK: (0,7,52,25) C0M7Y52K25 (0%,7%,52%,25%) (0.00/0.07/0.52/0.25)
BE | B1 | 5B | |
---|---|---|---|
RGB | 190 | 177 | 91 |
HSL | 52° | 43.23% | 55.10% |
HSB/HSV | 52° | 52.11% | 74.51% |
CMYK | 0.00% | 6.84% | 52.11% |
25.49% |
HEX | BE | B1 | 5B |
Decimal | 190 | 177 | 91 |
Binary | 10111110 | 10110001 | 1011011 |
Octal | 276 | 261 | 133 |
Examples of css and html codes for elements with #BEB15B color. Also use rgb(190,177,91) instead hex code.
.myTextColor { color: #BEB15B; }
<p style="color:#BEB15B">This sample text font color is #BEB15B.</p>
This text font color is #BEB15B.
.myBgColor { background-color: #BEB15B; }
<div style="background-color:#BEB15B">Inner text</div>
This div background color is #BEB15B.
.myBorderColor { border: 1px solid #BEB15B; }
<div style="border:3px solid #BEB15B">Div</div>
This div border color is #BEB15B.
.myOpacity80 { color: #BEB15B; opacity: 0.8; }
<p style="color:#BEB15B;opacity:0.8;">80%</p>
Text with #BEB15B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEB15B;}
<p style="text-shadow: 3px 3px 1px #BEB15B">Text here.</p>
This text has shadow with #BEB15B color.
.textShadow {text-shadow: 3px 3px 1px #BEB15B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEB15B, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEB15B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEB15B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEB15B, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEB15B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEB15B; -webkit-box-shadow: 1px 1px 3px 2px #BEB15B; box-shadow: 1px 1px 3px 2px #BEB15B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEB15B; -webkit-box-shadow: 1px 1px 3px 2px #BEB15B; box-shadow:1px 1px 3px 2px #BEB15B;">
Div content here</div>
This text has color #BEB15B on black background.
This text has color #BEB15B on white background.
This text has black color on #BEB15B background.
This text has white color on #BEB15B background.