HEX: #FEB43A
RGB: (254,180,58)
#FEB43A contains mainly red color. Web safe color of #FEB43A is #FFCC33 (or #FC3).
#FEB43A color RGB value is (254,180,58).
RGB: (254,180,58) (100%,71%,23%)
R 254 of 255 = 100%
G 180 of 255 = 71%
B 58 of 255 = 23%
R + G + B ~ 65%. #FEB43A is quite light color.
R + G + B =
254 + 180 + 58 = 492 (100%)
R 254 of 492 ~ 51.63%
G 180 of 492 ~ 36.59%
B 58 of 492 ~ 11.79%
#FEB43A color CMYK value is (0,29,77,0).
CMYK: (0,29,77,0) C0M29Y77K0 (0%,29%,77%,0%) (0.00/0.29/0.77/0.00)
FE | B4 | 3A | |
---|---|---|---|
RGB | 254 | 180 | 58 |
HSL | 37° | 98.99% | 61.18% |
HSB/HSV | 37° | 77.17% | 99.61% |
CMYK | 0.00% | 29.13% | 77.17% |
0.39% |
HEX | FE | B4 | 3A |
Decimal | 254 | 180 | 58 |
Binary | 11111110 | 10110100 | 111010 |
Octal | 376 | 264 | 72 |
Examples of css and html codes for elements with #FEB43A color. Also use rgb(254,180,58) instead hex code.
.myTextColor { color: #FEB43A; }
<p style="color:#FEB43A">This sample text font color is #FEB43A.</p>
This text font color is #FEB43A.
.myBgColor { background-color: #FEB43A; }
<div style="background-color:#FEB43A">Inner text</div>
This div background color is #FEB43A.
.myBorderColor { border: 1px solid #FEB43A; }
<div style="border:3px solid #FEB43A">Div</div>
This div border color is #FEB43A.
.myOpacity80 { color: #FEB43A; opacity: 0.8; }
<p style="color:#FEB43A;opacity:0.8;">80%</p>
Text with #FEB43A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEB43A;}
<p style="text-shadow: 3px 3px 1px #FEB43A">Text here.</p>
This text has shadow with #FEB43A color.
.textShadow {text-shadow: 3px 3px 1px #FEB43A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEB43A, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEB43A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEB43A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEB43A, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEB43A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEB43A; -webkit-box-shadow: 1px 1px 3px 2px #FEB43A; box-shadow: 1px 1px 3px 2px #FEB43A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEB43A; -webkit-box-shadow: 1px 1px 3px 2px #FEB43A; box-shadow:1px 1px 3px 2px #FEB43A;">
Div content here</div>
This text has color #FEB43A on black background.
This text has color #FEB43A on white background.
This text has black color on #FEB43A background.
This text has white color on #FEB43A background.