HEX: #F9EDEB
RGB: (249,237,235)
#F9EDEB contains red, green and blue colors in about the same proportion. #F9EDEB ‘ nin web güvenlik rengi #FFFFFF (ya da #FFF) dir.
#F9EDEB color RGB value is (249,237,235).
RGB: (249,237,235) (98%,93%,92%)
R 249 of 255 = 98%
G 237 of 255 = 93%
B 235 of 255 = 92%
R + G + B ~ 94%. #F9EDEB is light color.
R + G + B =
249 + 237 + 235 = 721 (100%)
R 249 of 721 ~ 34.54%
G 237 of 721 ~ 32.87%
B 235 of 721 ~ 32.59%
#F9EDEB rengi CMYK tonu (0,5,6,2).
CMYK: (0,5,6,2) C0M5Y6K2 (0%,5%,6%,2%) (0.00/0.05/0.06/0.02)
F9 | ED | EB | |
---|---|---|---|
RGB | 249 | 237 | 235 |
HSL | 9° | 53.85% | 94.90% |
HSB/HSV | 9° | 5.62% | 97.65% |
CMYK | 0.00% | 4.82% | 5.62% |
2.35% |
HEX | F9 | ED | EB |
Decimal | 249 | 237 | 235 |
Binary | 11111001 | 11101101 | 11101011 |
Octal | 371 | 355 | 353 |
Examples of css and html codes for elements with #F9EDEB color. Also use rgb(249,237,235) instead hex code.
.myTextColor { color: #F9EDEB; }
<p style="color:#F9EDEB">This sample text font color is #F9EDEB.</p>
This text font color is #F9EDEB.
.myBgColor { background-color: #F9EDEB; }
<div style="background-color:#F9EDEB">Inner text</div>
This div background color is #F9EDEB.
.myBorderColor { border: 1px solid #F9EDEB; }
<div style="border:3px solid #F9EDEB">Div</div>
This div border color is #F9EDEB.
.myOpacity80 { color: #F9EDEB; opacity: 0.8; }
<p style="color:#F9EDEB;opacity:0.8;">80%</p>
Text with #F9EDEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9EDEB;}
<p style="text-shadow: 3px 3px 1px #F9EDEB">Text here.</p>
This text has shadow with #F9EDEB color.
.textShadow {text-shadow: 3px 3px 1px #F9EDEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9EDEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9EDEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9EDEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9EDEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9EDEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9EDEB; -webkit-box-shadow: 1px 1px 3px 2px #F9EDEB; box-shadow: 1px 1px 3px 2px #F9EDEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9EDEB; -webkit-box-shadow: 1px 1px 3px 2px #F9EDEB; box-shadow:1px 1px 3px 2px #F9EDEB;">
Div content here</div>
This text has color #F9EDEB on black background.
This text has color #F9EDEB on white background.
This text has black color on #F9EDEB background.
This text has white color on #F9EDEB background.