HEX: #EBF0CE
RGB: (235,240,206)
#EBF0CE contains red, green and blue colors in about the same proportion. Web safe color of #EBF0CE is #FFFFCC (or #FFC).
#EBF0CE color RGB value is (235,240,206).
RGB: (235,240,206) (92%,94%,81%)
R 235 of 255 = 92%
G 240 of 255 = 94%
B 206 of 255 = 81%
R + G + B ~ 89%. #EBF0CE is light color.
R + G + B =
235 + 240 + 206 = 681 (100%)
R 235 of 681 ~ 34.51%
G 240 of 681 ~ 35.24%
B 206 of 681 ~ 30.25%
#EBF0CE color CMYK value is (2,0,14,6).
CMYK: (2,0,14,6) C2M0Y14K6 (2%,0%,14%,6%) (0.02/0.00/0.14/0.06)
EB | F0 | CE | |
---|---|---|---|
RGB | 235 | 240 | 206 |
HSL | 69° | 53.13% | 87.45% |
HSB/HSV | 69° | 14.17% | 94.12% |
CMYK | 2.08% | 0.00% | 14.17% |
5.88% |
HEX | EB | F0 | CE |
Decimal | 235 | 240 | 206 |
Binary | 11101011 | 11110000 | 11001110 |
Octal | 353 | 360 | 316 |
Examples of css and html codes for elements with #EBF0CE color. Also use rgb(235,240,206) instead hex code.
.myTextColor { color: #EBF0CE; }
<p style="color:#EBF0CE">This sample text font color is #EBF0CE.</p>
This text font color is #EBF0CE.
.myBgColor { background-color: #EBF0CE; }
<div style="background-color:#EBF0CE">Inner text</div>
This div background color is #EBF0CE.
.myBorderColor { border: 1px solid #EBF0CE; }
<div style="border:3px solid #EBF0CE">Div</div>
This div border color is #EBF0CE.
.myOpacity80 { color: #EBF0CE; opacity: 0.8; }
<p style="color:#EBF0CE;opacity:0.8;">80%</p>
Text with #EBF0CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBF0CE;}
<p style="text-shadow: 3px 3px 1px #EBF0CE">Text here.</p>
This text has shadow with #EBF0CE color.
.textShadow {text-shadow: 3px 3px 1px #EBF0CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBF0CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBF0CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBF0CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBF0CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBF0CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBF0CE; -webkit-box-shadow: 1px 1px 3px 2px #EBF0CE; box-shadow: 1px 1px 3px 2px #EBF0CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBF0CE; -webkit-box-shadow: 1px 1px 3px 2px #EBF0CE; box-shadow:1px 1px 3px 2px #EBF0CE;">
Div content here</div>
This text has color #EBF0CE on black background.
This text has color #EBF0CE on white background.
This text has black color on #EBF0CE background.
This text has white color on #EBF0CE background.