HEX: #F98595
RGB: (249,133,149)
#F98595 contains mainly red color. Web safe color of #F98595 is #FF9999 (or #F99).
#F98595 color RGB value is (249,133,149).
RGB: (249,133,149) (98%,52%,58%)
R 249 of 255 = 98%
G 133 of 255 = 52%
B 149 of 255 = 58%
R + G + B ~ 69%. #F98595 is quite light color.
R + G + B =
249 + 133 + 149 = 531 (100%)
R 249 of 531 ~ 46.89%
G 133 of 531 ~ 25.05%
B 149 of 531 ~ 28.06%
#F98595 color CMYK value is (0,47,40,2).
CMYK: (0,47,40,2) C0M47Y40K2 (0%,47%,40%,2%) (0.00/0.47/0.40/0.02)
F9 | 85 | 95 | |
---|---|---|---|
RGB | 249 | 133 | 149 |
HSL | 352° | 90.63% | 74.90% |
HSB/HSV | 352° | 46.59% | 97.65% |
CMYK | 0.00% | 46.59% | 40.16% |
2.35% |
HEX | F9 | 85 | 95 |
Decimal | 249 | 133 | 149 |
Binary | 11111001 | 10000101 | 10010101 |
Octal | 371 | 205 | 225 |
Examples of css and html codes for elements with #F98595 color. Also use rgb(249,133,149) instead hex code.
.myTextColor { color: #F98595; }
<p style="color:#F98595">This sample text font color is #F98595.</p>
This text font color is #F98595.
.myBgColor { background-color: #F98595; }
<div style="background-color:#F98595">Inner text</div>
This div background color is #F98595.
.myBorderColor { border: 1px solid #F98595; }
<div style="border:3px solid #F98595">Div</div>
This div border color is #F98595.
.myOpacity80 { color: #F98595; opacity: 0.8; }
<p style="color:#F98595;opacity:0.8;">80%</p>
Text with #F98595 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F98595;}
<p style="text-shadow: 3px 3px 1px #F98595">Text here.</p>
This text has shadow with #F98595 color.
.textShadow {text-shadow: 3px 3px 1px #F98595, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F98595, 5px 5px 20px red">Text here.</p>
This text has shadow with #F98595 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F98595, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F98595, Direction=45, Strength=4)">Text</p>
This text has shadow with #F98595 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F98595; -webkit-box-shadow: 1px 1px 3px 2px #F98595; box-shadow: 1px 1px 3px 2px #F98595; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F98595; -webkit-box-shadow: 1px 1px 3px 2px #F98595; box-shadow:1px 1px 3px 2px #F98595;">
Div content here</div>
This text has color #F98595 on black background.
This text has color #F98595 on white background.
This text has black color on #F98595 background.
This text has white color on #F98595 background.