HEX: #BE820A
RGB: (190,130,10)
#BE820A contains mainly red color. Web safe color of #BE820A is #CC9900 (or #C90).
#BE820A color RGB value is (190,130,10).
RGB: (190,130,10) (75%,51%,4%)
R 190 of 255 = 75%
G 130 of 255 = 51%
B 10 of 255 = 4%
R + G + B ~ 43%. #BE820A is middle color (not dark and not light).
R + G + B =
190 + 130 + 10 = 330 (100%)
R 190 of 330 ~ 57.58%
G 130 of 330 ~ 39.39%
B 10 of 330 ~ 3.03%
#BE820A 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 | 0A | |
---|---|---|---|
RGB | 190 | 130 | 10 |
HSL | 40° | 90.00% | 39.22% |
HSB/HSV | 40° | 94.74% | 74.51% |
CMYK | 0.00% | 31.58% | 94.74% |
25.49% |
HEX | BE | 82 | 0A |
Decimal | 190 | 130 | 10 |
Binary | 10111110 | 10000010 | 1010 |
Octal | 276 | 202 | 12 |
Examples of css and html codes for elements with #BE820A color. Also use rgb(190,130,10) instead hex code.
.myTextColor { color: #BE820A; }
<p style="color:#BE820A">This sample text font color is #BE820A.</p>
This text font color is #BE820A.
.myBgColor { background-color: #BE820A; }
<div style="background-color:#BE820A">Inner text</div>
This div background color is #BE820A.
.myBorderColor { border: 1px solid #BE820A; }
<div style="border:3px solid #BE820A">Div</div>
This div border color is #BE820A.
.myOpacity80 { color: #BE820A; opacity: 0.8; }
<p style="color:#BE820A;opacity:0.8;">80%</p>
Text with #BE820A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE820A;}
<p style="text-shadow: 3px 3px 1px #BE820A">Text here.</p>
This text has shadow with #BE820A color.
.textShadow {text-shadow: 3px 3px 1px #BE820A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE820A, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE820A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE820A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE820A, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE820A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE820A; -webkit-box-shadow: 1px 1px 3px 2px #BE820A; box-shadow: 1px 1px 3px 2px #BE820A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE820A; -webkit-box-shadow: 1px 1px 3px 2px #BE820A; box-shadow:1px 1px 3px 2px #BE820A;">
Div content here</div>
This text has color #BE820A on black background.
This text has color #BE820A on white background.
This text has black color on #BE820A background.
This text has white color on #BE820A background.