HEX: #F8BEED
RGB: (248,190,237)
#F8BEED contains red, green and blue colors in about the same proportion. Web safe color of #F8BEED is #FFCCFF (or #FCF).
#F8BEED color RGB value is (248,190,237).
RGB: (248,190,237) (97%,75%,93%)
R 248 of 255 = 97%
G 190 of 255 = 75%
B 237 of 255 = 93%
R + G + B ~ 88%. #F8BEED is light color.
R + G + B =
248 + 190 + 237 = 675 (100%)
R 248 of 675 ~ 36.74%
G 190 of 675 ~ 28.15%
B 237 of 675 ~ 35.11%
#F8BEED color CMYK value is (0,23,4,3).
CMYK: (0,23,4,3) C0M23Y4K3 (0%,23%,4%,3%) (0.00/0.23/0.04/0.03)
F8 | BE | ED | |
---|---|---|---|
RGB | 248 | 190 | 237 |
HSL | 311° | 80.56% | 85.88% |
HSB/HSV | 311° | 23.39% | 97.25% |
CMYK | 0.00% | 23.39% | 4.44% |
2.75% |
HEX | F8 | BE | ED |
Decimal | 248 | 190 | 237 |
Binary | 11111000 | 10111110 | 11101101 |
Octal | 370 | 276 | 355 |
Examples of css and html codes for elements with #F8BEED color. Also use rgb(248,190,237) instead hex code.
.myTextColor { color: #F8BEED; }
<p style="color:#F8BEED">This sample text font color is #F8BEED.</p>
This text font color is #F8BEED.
.myBgColor { background-color: #F8BEED; }
<div style="background-color:#F8BEED">Inner text</div>
This div background color is #F8BEED.
.myBorderColor { border: 1px solid #F8BEED; }
<div style="border:3px solid #F8BEED">Div</div>
This div border color is #F8BEED.
.myOpacity80 { color: #F8BEED; opacity: 0.8; }
<p style="color:#F8BEED;opacity:0.8;">80%</p>
Text with #F8BEED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F8BEED;}
<p style="text-shadow: 3px 3px 1px #F8BEED">Text here.</p>
This text has shadow with #F8BEED color.
.textShadow {text-shadow: 3px 3px 1px #F8BEED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F8BEED, 5px 5px 20px red">Text here.</p>
This text has shadow with #F8BEED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F8BEED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F8BEED, Direction=45, Strength=4)">Text</p>
This text has shadow with #F8BEED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F8BEED; -webkit-box-shadow: 1px 1px 3px 2px #F8BEED; box-shadow: 1px 1px 3px 2px #F8BEED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F8BEED; -webkit-box-shadow: 1px 1px 3px 2px #F8BEED; box-shadow:1px 1px 3px 2px #F8BEED;">
Div content here</div>
This text has color #F8BEED on black background.
This text has color #F8BEED on white background.
This text has black color on #F8BEED background.
This text has white color on #F8BEED background.