HEX: #F3EBCC
RGB: (243,235,204)
#F3EBCC contains red, green and blue colors in about the same proportion. Web safe color of #F3EBCC is #FFFFCC (or #FFC).
#F3EBCC color RGB value is (243,235,204).
RGB: (243,235,204) (95%,92%,80%)
R 243 of 255 = 95%
G 235 of 255 = 92%
B 204 of 255 = 80%
R + G + B ~ 89%. #F3EBCC is light color.
R + G + B =
243 + 235 + 204 = 682 (100%)
R 243 of 682 ~ 35.63%
G 235 of 682 ~ 34.46%
B 204 of 682 ~ 29.91%
#F3EBCC color CMYK value is (0,3,16,5).
CMYK: (0,3,16,5) C0M3Y16K5 (0%,3%,16%,5%) (0.00/0.03/0.16/0.05)
F3 | EB | CC | |
---|---|---|---|
RGB | 243 | 235 | 204 |
HSL | 48° | 61.90% | 87.65% |
HSB/HSV | 48° | 16.05% | 95.29% |
CMYK | 0.00% | 3.29% | 16.05% |
4.71% |
HEX | F3 | EB | CC |
Decimal | 243 | 235 | 204 |
Binary | 11110011 | 11101011 | 11001100 |
Octal | 363 | 353 | 314 |
Examples of css and html codes for elements with #F3EBCC color. Also use rgb(243,235,204) instead hex code.
.myTextColor { color: #F3EBCC; }
<p style="color:#F3EBCC">This sample text font color is #F3EBCC.</p>
This text font color is #F3EBCC.
.myBgColor { background-color: #F3EBCC; }
<div style="background-color:#F3EBCC">Inner text</div>
This div background color is #F3EBCC.
.myBorderColor { border: 1px solid #F3EBCC; }
<div style="border:3px solid #F3EBCC">Div</div>
This div border color is #F3EBCC.
.myOpacity80 { color: #F3EBCC; opacity: 0.8; }
<p style="color:#F3EBCC;opacity:0.8;">80%</p>
Text with #F3EBCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3EBCC;}
<p style="text-shadow: 3px 3px 1px #F3EBCC">Text here.</p>
This text has shadow with #F3EBCC color.
.textShadow {text-shadow: 3px 3px 1px #F3EBCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3EBCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3EBCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3EBCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3EBCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3EBCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3EBCC; -webkit-box-shadow: 1px 1px 3px 2px #F3EBCC; box-shadow: 1px 1px 3px 2px #F3EBCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3EBCC; -webkit-box-shadow: 1px 1px 3px 2px #F3EBCC; box-shadow:1px 1px 3px 2px #F3EBCC;">
Div content here</div>
This text has color #F3EBCC on black background.
This text has color #F3EBCC on white background.
This text has black color on #F3EBCC background.
This text has white color on #F3EBCC background.