HEX: #F3B34C
RGB: (243,179,76)
#F3B34C contains mainly red color. Web safe color of #F3B34C is #FF9933 (or #F93).
#F3B34C color RGB value is (243,179,76).
RGB: (243,179,76) (95%,70%,30%)
R 243 of 255 = 95%
G 179 of 255 = 70%
B 76 of 255 = 30%
R + G + B ~ 65%. #F3B34C is quite light color.
R + G + B =
243 + 179 + 76 = 498 (100%)
R 243 of 498 ~ 48.8%
G 179 of 498 ~ 35.94%
B 76 of 498 ~ 15.26%
#F3B34C color CMYK value is (0,26,69,5).
CMYK: (0,26,69,5) C0M26Y69K5 (0%,26%,69%,5%) (0.00/0.26/0.69/0.05)
F3 | B3 | 4C | |
---|---|---|---|
RGB | 243 | 179 | 76 |
HSL | 37° | 87.43% | 62.55% |
HSB/HSV | 37° | 68.72% | 95.29% |
CMYK | 0.00% | 26.34% | 68.72% |
4.71% |
HEX | F3 | B3 | 4C |
Decimal | 243 | 179 | 76 |
Binary | 11110011 | 10110011 | 1001100 |
Octal | 363 | 263 | 114 |
Examples of css and html codes for elements with #F3B34C color. Also use rgb(243,179,76) instead hex code.
.myTextColor { color: #F3B34C; }
<p style="color:#F3B34C">This sample text font color is #F3B34C.</p>
This text font color is #F3B34C.
.myBgColor { background-color: #F3B34C; }
<div style="background-color:#F3B34C">Inner text</div>
This div background color is #F3B34C.
.myBorderColor { border: 1px solid #F3B34C; }
<div style="border:3px solid #F3B34C">Div</div>
This div border color is #F3B34C.
.myOpacity80 { color: #F3B34C; opacity: 0.8; }
<p style="color:#F3B34C;opacity:0.8;">80%</p>
Text with #F3B34C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3B34C;}
<p style="text-shadow: 3px 3px 1px #F3B34C">Text here.</p>
This text has shadow with #F3B34C color.
.textShadow {text-shadow: 3px 3px 1px #F3B34C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3B34C, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3B34C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3B34C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3B34C, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3B34C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3B34C; -webkit-box-shadow: 1px 1px 3px 2px #F3B34C; box-shadow: 1px 1px 3px 2px #F3B34C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3B34C; -webkit-box-shadow: 1px 1px 3px 2px #F3B34C; box-shadow:1px 1px 3px 2px #F3B34C;">
Div content here</div>
This text has color #F3B34C on black background.
This text has color #F3B34C on white background.
This text has black color on #F3B34C background.
This text has white color on #F3B34C background.