HEX: #E1BE30
RGB: (225,190,48)
#E1BE30 contains mainly red and green colors. Web safe color of #E1BE30 is #CCCC33 (or #CC3).
#E1BE30 color RGB value is (225,190,48).
RGB: (225,190,48) (88%,75%,19%)
R 225 of 255 = 88%
G 190 of 255 = 75%
B 48 of 255 = 19%
R + G + B ~ 61%. #E1BE30 is quite light color.
R + G + B =
225 + 190 + 48 = 463 (100%)
R 225 of 463 ~ 48.6%
G 190 of 463 ~ 41.04%
B 48 of 463 ~ 10.37%
#E1BE30 color CMYK value is (0,16,79,12).
CMYK: (0,16,79,12) C0M16Y79K12 (0%,16%,79%,12%) (0.00/0.16/0.79/0.12)
E1 | BE | 30 | |
---|---|---|---|
RGB | 225 | 190 | 48 |
HSL | 48° | 74.68% | 53.53% |
HSB/HSV | 48° | 78.67% | 88.24% |
CMYK | 0.00% | 15.56% | 78.67% |
11.76% |
HEX | E1 | BE | 30 |
Decimal | 225 | 190 | 48 |
Binary | 11100001 | 10111110 | 110000 |
Octal | 341 | 276 | 60 |
Examples of css and html codes for elements with #E1BE30 color. Also use rgb(225,190,48) instead hex code.
.myTextColor { color: #E1BE30; }
<p style="color:#E1BE30">This sample text font color is #E1BE30.</p>
This text font color is #E1BE30.
.myBgColor { background-color: #E1BE30; }
<div style="background-color:#E1BE30">Inner text</div>
This div background color is #E1BE30.
.myBorderColor { border: 1px solid #E1BE30; }
<div style="border:3px solid #E1BE30">Div</div>
This div border color is #E1BE30.
.myOpacity80 { color: #E1BE30; opacity: 0.8; }
<p style="color:#E1BE30;opacity:0.8;">80%</p>
Text with #E1BE30 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1BE30;}
<p style="text-shadow: 3px 3px 1px #E1BE30">Text here.</p>
This text has shadow with #E1BE30 color.
.textShadow {text-shadow: 3px 3px 1px #E1BE30, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1BE30, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1BE30 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1BE30, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1BE30, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1BE30 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1BE30; -webkit-box-shadow: 1px 1px 3px 2px #E1BE30; box-shadow: 1px 1px 3px 2px #E1BE30; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1BE30; -webkit-box-shadow: 1px 1px 3px 2px #E1BE30; box-shadow:1px 1px 3px 2px #E1BE30;">
Div content here</div>
This text has color #E1BE30 on black background.
This text has color #E1BE30 on white background.
This text has black color on #E1BE30 background.
This text has white color on #E1BE30 background.