HEX: #EDF5EC
RGB: (237,245,236)
#EDF5EC contains red, green and blue colors in about the same proportion. #EDF5EC ‘ nin web güvenlik rengi #FFFFFF (ya da #FFF) dir.
#EDF5EC color RGB value is (237,245,236).
RGB: (237,245,236) (93%,96%,93%)
R 237 of 255 = 93%
G 245 of 255 = 96%
B 236 of 255 = 93%
R + G + B ~ 94%. #EDF5EC is light color.
R + G + B =
237 + 245 + 236 = 718 (100%)
R 237 of 718 ~ 33.01%
G 245 of 718 ~ 34.12%
B 236 of 718 ~ 32.87%
#EDF5EC rengi CMYK tonu (3,0,4,4).
CMYK: (3,0,4,4) C3M0Y4K4 (3%,0%,4%,4%) (0.03/0.00/0.04/0.04)
ED | F5 | EC | |
---|---|---|---|
RGB | 237 | 245 | 236 |
HSL | 113° | 31.03% | 94.31% |
HSB/HSV | 113° | 3.67% | 96.08% |
CMYK | 3.27% | 0.00% | 3.67% |
3.92% |
HEX | ED | F5 | EC |
Decimal | 237 | 245 | 236 |
Binary | 11101101 | 11110101 | 11101100 |
Octal | 355 | 365 | 354 |
Examples of css and html codes for elements with #EDF5EC color. Also use rgb(237,245,236) instead hex code.
.myTextColor { color: #EDF5EC; }
<p style="color:#EDF5EC">This sample text font color is #EDF5EC.</p>
This text font color is #EDF5EC.
.myBgColor { background-color: #EDF5EC; }
<div style="background-color:#EDF5EC">Inner text</div>
This div background color is #EDF5EC.
.myBorderColor { border: 1px solid #EDF5EC; }
<div style="border:3px solid #EDF5EC">Div</div>
This div border color is #EDF5EC.
.myOpacity80 { color: #EDF5EC; opacity: 0.8; }
<p style="color:#EDF5EC;opacity:0.8;">80%</p>
Text with #EDF5EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF5EC;}
<p style="text-shadow: 3px 3px 1px #EDF5EC">Text here.</p>
This text has shadow with #EDF5EC color.
.textShadow {text-shadow: 3px 3px 1px #EDF5EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF5EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF5EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF5EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF5EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF5EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF5EC; -webkit-box-shadow: 1px 1px 3px 2px #EDF5EC; box-shadow: 1px 1px 3px 2px #EDF5EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF5EC; -webkit-box-shadow: 1px 1px 3px 2px #EDF5EC; box-shadow:1px 1px 3px 2px #EDF5EC;">
Div content here</div>
This text has color #EDF5EC on black background.
This text has color #EDF5EC on white background.
This text has black color on #EDF5EC background.
This text has white color on #EDF5EC background.