HEX: #F4817D
RGB: (244,129,125)
#F4817D contains mainly red color. Web safe color of #F4817D is #FF9966 (or #F96).
#F4817D color RGB value is (244,129,125).
RGB: (244,129,125) (96%,51%,49%)
R 244 of 255 = 96%
G 129 of 255 = 51%
B 125 of 255 = 49%
R + G + B ~ 65%. #F4817D is quite light color.
R + G + B =
244 + 129 + 125 = 498 (100%)
R 244 of 498 ~ 49%
G 129 of 498 ~ 25.9%
B 125 of 498 ~ 25.1%
#F4817D color CMYK value is (0,47,49,4).
CMYK: (0,47,49,4) C0M47Y49K4 (0%,47%,49%,4%) (0.00/0.47/0.49/0.04)
F4 | 81 | 7D | |
---|---|---|---|
RGB | 244 | 129 | 125 |
HSL | 2° | 84.40% | 72.35% |
HSB/HSV | 2° | 48.77% | 95.69% |
CMYK | 0.00% | 47.13% | 48.77% |
4.31% |
HEX | F4 | 81 | 7D |
Decimal | 244 | 129 | 125 |
Binary | 11110100 | 10000001 | 1111101 |
Octal | 364 | 201 | 175 |
Examples of css and html codes for elements with #F4817D color. Also use rgb(244,129,125) instead hex code.
.myTextColor { color: #F4817D; }
<p style="color:#F4817D">This sample text font color is #F4817D.</p>
This text font color is #F4817D.
.myBgColor { background-color: #F4817D; }
<div style="background-color:#F4817D">Inner text</div>
This div background color is #F4817D.
.myBorderColor { border: 1px solid #F4817D; }
<div style="border:3px solid #F4817D">Div</div>
This div border color is #F4817D.
.myOpacity80 { color: #F4817D; opacity: 0.8; }
<p style="color:#F4817D;opacity:0.8;">80%</p>
Text with #F4817D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4817D;}
<p style="text-shadow: 3px 3px 1px #F4817D">Text here.</p>
This text has shadow with #F4817D color.
.textShadow {text-shadow: 3px 3px 1px #F4817D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4817D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4817D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4817D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4817D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4817D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4817D; -webkit-box-shadow: 1px 1px 3px 2px #F4817D; box-shadow: 1px 1px 3px 2px #F4817D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4817D; -webkit-box-shadow: 1px 1px 3px 2px #F4817D; box-shadow:1px 1px 3px 2px #F4817D;">
Div content here</div>
This text has color #F4817D on black background.
This text has color #F4817D on white background.
This text has black color on #F4817D background.
This text has white color on #F4817D background.