HEX: #BE8209
RGB: (190,130,9)
#BE8209 contains mainly red color. Web safe color of #BE8209 is #CC9900 (or #C90).
#BE8209 color RGB value is (190,130,9).
RGB: (190,130,9) (75%,51%,4%)
R 190 of 255 = 75%
G 130 of 255 = 51%
B 9 of 255 = 4%
R + G + B ~ 43%. #BE8209 is middle color (not dark and not light).
R + G + B =
190 + 130 + 9 = 329 (100%)
R 190 of 329 ~ 57.75%
G 130 of 329 ~ 39.51%
B 9 of 329 ~ 2.74%
#BE8209 color CMYK value is (0,32,95,25).
CMYK: (0,32,95,25) C0M32Y95K25 (0%,32%,95%,25%) (0.00/0.32/0.95/0.25)
BE | 82 | 09 | |
---|---|---|---|
RGB | 190 | 130 | 9 |
HSL | 40° | 90.95% | 39.02% |
HSB/HSV | 40° | 95.26% | 74.51% |
CMYK | 0.00% | 31.58% | 95.26% |
25.49% |
HEX | BE | 82 | 09 |
Decimal | 190 | 130 | 9 |
Binary | 10111110 | 10000010 | 1001 |
Octal | 276 | 202 | 11 |
Examples of css and html codes for elements with #BE8209 color. Also use rgb(190,130,9) instead hex code.
.myTextColor { color: #BE8209; }
<p style="color:#BE8209">This sample text font color is #BE8209.</p>
This text font color is #BE8209.
.myBgColor { background-color: #BE8209; }
<div style="background-color:#BE8209">Inner text</div>
This div background color is #BE8209.
.myBorderColor { border: 1px solid #BE8209; }
<div style="border:3px solid #BE8209">Div</div>
This div border color is #BE8209.
.myOpacity80 { color: #BE8209; opacity: 0.8; }
<p style="color:#BE8209;opacity:0.8;">80%</p>
Text with #BE8209 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE8209;}
<p style="text-shadow: 3px 3px 1px #BE8209">Text here.</p>
This text has shadow with #BE8209 color.
.textShadow {text-shadow: 3px 3px 1px #BE8209, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE8209, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE8209 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE8209, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE8209, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE8209 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE8209; -webkit-box-shadow: 1px 1px 3px 2px #BE8209; box-shadow: 1px 1px 3px 2px #BE8209; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE8209; -webkit-box-shadow: 1px 1px 3px 2px #BE8209; box-shadow:1px 1px 3px 2px #BE8209;">
Div content here</div>
This text has color #BE8209 on black background.
This text has color #BE8209 on white background.
This text has black color on #BE8209 background.
This text has white color on #BE8209 background.