HEX: #BE7831
RGB: (190,120,49)
#BE7831 contains mainly red color. Web safe color of #BE7831 is #CC6633 (or #C63).
#BE7831 color RGB value is (190,120,49).
RGB: (190,120,49) (75%,47%,19%)
R 190 of 255 = 75%
G 120 of 255 = 47%
B 49 of 255 = 19%
R + G + B ~ 47%. #BE7831 is middle color (not dark and not light).
R + G + B =
190 + 120 + 49 = 359 (100%)
R 190 of 359 ~ 52.92%
G 120 of 359 ~ 33.43%
B 49 of 359 ~ 13.65%
#BE7831 color CMYK value is (0,37,74,25).
CMYK: (0,37,74,25) C0M37Y74K25 (0%,37%,74%,25%) (0.00/0.37/0.74/0.25)
BE | 78 | 31 | |
---|---|---|---|
RGB | 190 | 120 | 49 |
HSL | 30° | 59.00% | 46.86% |
HSB/HSV | 30° | 74.21% | 74.51% |
CMYK | 0.00% | 36.84% | 74.21% |
25.49% |
HEX | BE | 78 | 31 |
Decimal | 190 | 120 | 49 |
Binary | 10111110 | 1111000 | 110001 |
Octal | 276 | 170 | 61 |
Examples of css and html codes for elements with #BE7831 color. Also use rgb(190,120,49) instead hex code.
.myTextColor { color: #BE7831; }
<p style="color:#BE7831">This sample text font color is #BE7831.</p>
This text font color is #BE7831.
.myBgColor { background-color: #BE7831; }
<div style="background-color:#BE7831">Inner text</div>
This div background color is #BE7831.
.myBorderColor { border: 1px solid #BE7831; }
<div style="border:3px solid #BE7831">Div</div>
This div border color is #BE7831.
.myOpacity80 { color: #BE7831; opacity: 0.8; }
<p style="color:#BE7831;opacity:0.8;">80%</p>
Text with #BE7831 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BE7831;}
<p style="text-shadow: 3px 3px 1px #BE7831">Text here.</p>
This text has shadow with #BE7831 color.
.textShadow {text-shadow: 3px 3px 1px #BE7831, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BE7831, 5px 5px 20px red">Text here.</p>
This text has shadow with #BE7831 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BE7831, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BE7831, Direction=45, Strength=4)">Text</p>
This text has shadow with #BE7831 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BE7831; -webkit-box-shadow: 1px 1px 3px 2px #BE7831; box-shadow: 1px 1px 3px 2px #BE7831; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BE7831; -webkit-box-shadow: 1px 1px 3px 2px #BE7831; box-shadow:1px 1px 3px 2px #BE7831;">
Div content here</div>
This text has color #BE7831 on black background.
This text has color #BE7831 on white background.
This text has black color on #BE7831 background.
This text has white color on #BE7831 background.