HEX: #F65A5F
RGB: (246,90,95)
#F65A5F contains mainly red color. Web safe color of #F65A5F is #FF6666 (or #F66).
#F65A5F color RGB value is (246,90,95).
RGB: (246,90,95) (96%,35%,37%)
R 246 of 255 = 96%
G 90 of 255 = 35%
B 95 of 255 = 37%
R + G + B ~ 56%. #F65A5F is middle color (not dark and not light).
R + G + B =
246 + 90 + 95 = 431 (100%)
R 246 of 431 ~ 57.08%
G 90 of 431 ~ 20.88%
B 95 of 431 ~ 22.04%
#F65A5F color CMYK value is (0,63,61,4).
CMYK: (0,63,61,4) C0M63Y61K4 (0%,63%,61%,4%) (0.00/0.63/0.61/0.04)
F6 | 5A | 5F | |
---|---|---|---|
RGB | 246 | 90 | 95 |
HSL | 358° | 89.66% | 65.88% |
HSB/HSV | 358° | 63.41% | 96.47% |
CMYK | 0.00% | 63.41% | 61.38% |
3.53% |
HEX | F6 | 5A | 5F |
Decimal | 246 | 90 | 95 |
Binary | 11110110 | 1011010 | 1011111 |
Octal | 366 | 132 | 137 |
Examples of css and html codes for elements with #F65A5F color. Also use rgb(246,90,95) instead hex code.
.myTextColor { color: #F65A5F; }
<p style="color:#F65A5F">This sample text font color is #F65A5F.</p>
This text font color is #F65A5F.
.myBgColor { background-color: #F65A5F; }
<div style="background-color:#F65A5F">Inner text</div>
This div background color is #F65A5F.
.myBorderColor { border: 1px solid #F65A5F; }
<div style="border:3px solid #F65A5F">Div</div>
This div border color is #F65A5F.
.myOpacity80 { color: #F65A5F; opacity: 0.8; }
<p style="color:#F65A5F;opacity:0.8;">80%</p>
Text with #F65A5F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F65A5F;}
<p style="text-shadow: 3px 3px 1px #F65A5F">Text here.</p>
This text has shadow with #F65A5F color.
.textShadow {text-shadow: 3px 3px 1px #F65A5F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F65A5F, 5px 5px 20px red">Text here.</p>
This text has shadow with #F65A5F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F65A5F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F65A5F, Direction=45, Strength=4)">Text</p>
This text has shadow with #F65A5F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F65A5F; -webkit-box-shadow: 1px 1px 3px 2px #F65A5F; box-shadow: 1px 1px 3px 2px #F65A5F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F65A5F; -webkit-box-shadow: 1px 1px 3px 2px #F65A5F; box-shadow:1px 1px 3px 2px #F65A5F;">
Div content here</div>
This text has color #F65A5F on black background.
This text has color #F65A5F on white background.
This text has black color on #F65A5F background.
This text has white color on #F65A5F background.