HEX: #E1C01D
RGB: (225,192,29)
#E1C01D contains mainly red and green colors. Web safe color of #E1C01D is #CCCC33 (or #CC3).
#E1C01D color RGB value is (225,192,29).
RGB: (225,192,29) (88%,75%,11%)
R 225 of 255 = 88%
G 192 of 255 = 75%
B 29 of 255 = 11%
R + G + B ~ 58%. #E1C01D is middle color (not dark and not light).
R + G + B =
225 + 192 + 29 = 446 (100%)
R 225 of 446 ~ 50.45%
G 192 of 446 ~ 43.05%
B 29 of 446 ~ 6.5%
#E1C01D color CMYK value is (0,15,87,12).
CMYK: (0,15,87,12) C0M15Y87K12 (0%,15%,87%,12%) (0.00/0.15/0.87/0.12)
E1 | C0 | 1D | |
---|---|---|---|
RGB | 225 | 192 | 29 |
HSL | 50° | 77.17% | 49.80% |
HSB/HSV | 50° | 87.11% | 88.24% |
CMYK | 0.00% | 14.67% | 87.11% |
11.76% |
HEX | E1 | C0 | 1D |
Decimal | 225 | 192 | 29 |
Binary | 11100001 | 11000000 | 11101 |
Octal | 341 | 300 | 35 |
Examples of css and html codes for elements with #E1C01D color. Also use rgb(225,192,29) instead hex code.
.myTextColor { color: #E1C01D; }
<p style="color:#E1C01D">This sample text font color is #E1C01D.</p>
This text font color is #E1C01D.
.myBgColor { background-color: #E1C01D; }
<div style="background-color:#E1C01D">Inner text</div>
This div background color is #E1C01D.
.myBorderColor { border: 1px solid #E1C01D; }
<div style="border:3px solid #E1C01D">Div</div>
This div border color is #E1C01D.
.myOpacity80 { color: #E1C01D; opacity: 0.8; }
<p style="color:#E1C01D;opacity:0.8;">80%</p>
Text with #E1C01D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1C01D;}
<p style="text-shadow: 3px 3px 1px #E1C01D">Text here.</p>
This text has shadow with #E1C01D color.
.textShadow {text-shadow: 3px 3px 1px #E1C01D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1C01D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1C01D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1C01D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1C01D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1C01D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1C01D; -webkit-box-shadow: 1px 1px 3px 2px #E1C01D; box-shadow: 1px 1px 3px 2px #E1C01D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1C01D; -webkit-box-shadow: 1px 1px 3px 2px #E1C01D; box-shadow:1px 1px 3px 2px #E1C01D;">
Div content here</div>
This text has color #E1C01D on black background.
This text has color #E1C01D on white background.
This text has black color on #E1C01D background.
This text has white color on #E1C01D background.