HEX: #EBF0CA
RGB: (235,240,202)
#EBF0CA contains red, green and blue colors in about the same proportion. Web safe color of #EBF0CA is #FFFFCC (or #FFC).
#EBF0CA color RGB value is (235,240,202).
RGB: (235,240,202) (92%,94%,79%)
R 235 of 255 = 92%
G 240 of 255 = 94%
B 202 of 255 = 79%
R + G + B ~ 88%. #EBF0CA is light color.
R + G + B =
235 + 240 + 202 = 677 (100%)
R 235 of 677 ~ 34.71%
G 240 of 677 ~ 35.45%
B 202 of 677 ~ 29.84%
#EBF0CA color CMYK value is (2,0,16,6).
CMYK: (2,0,16,6) C2M0Y16K6 (2%,0%,16%,6%) (0.02/0.00/0.16/0.06)
EB | F0 | CA | |
---|---|---|---|
RGB | 235 | 240 | 202 |
HSL | 68° | 55.88% | 86.67% |
HSB/HSV | 68° | 15.83% | 94.12% |
CMYK | 2.08% | 0.00% | 15.83% |
5.88% |
HEX | EB | F0 | CA |
Decimal | 235 | 240 | 202 |
Binary | 11101011 | 11110000 | 11001010 |
Octal | 353 | 360 | 312 |
Examples of css and html codes for elements with #EBF0CA color. Also use rgb(235,240,202) instead hex code.
.myTextColor { color: #EBF0CA; }
<p style="color:#EBF0CA">This sample text font color is #EBF0CA.</p>
This text font color is #EBF0CA.
.myBgColor { background-color: #EBF0CA; }
<div style="background-color:#EBF0CA">Inner text</div>
This div background color is #EBF0CA.
.myBorderColor { border: 1px solid #EBF0CA; }
<div style="border:3px solid #EBF0CA">Div</div>
This div border color is #EBF0CA.
.myOpacity80 { color: #EBF0CA; opacity: 0.8; }
<p style="color:#EBF0CA;opacity:0.8;">80%</p>
Text with #EBF0CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBF0CA;}
<p style="text-shadow: 3px 3px 1px #EBF0CA">Text here.</p>
This text has shadow with #EBF0CA color.
.textShadow {text-shadow: 3px 3px 1px #EBF0CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBF0CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBF0CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBF0CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBF0CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBF0CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBF0CA; -webkit-box-shadow: 1px 1px 3px 2px #EBF0CA; box-shadow: 1px 1px 3px 2px #EBF0CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBF0CA; -webkit-box-shadow: 1px 1px 3px 2px #EBF0CA; box-shadow:1px 1px 3px 2px #EBF0CA;">
Div content here</div>
This text has color #EBF0CA on black background.
This text has color #EBF0CA on white background.
This text has black color on #EBF0CA background.
This text has white color on #EBF0CA background.