HEX: #EF643F
RGB: (239,100,63)
#EF643F contains mainly red color. Web safe color of #EF643F is #FF6633 (or #F63).
#EF643F color RGB value is (239,100,63).
RGB: (239,100,63) (94%,39%,25%)
R 239 of 255 = 94%
G 100 of 255 = 39%
B 63 of 255 = 25%
R + G + B ~ 53%. #EF643F is middle color (not dark and not light).
R + G + B =
239 + 100 + 63 = 402 (100%)
R 239 of 402 ~ 59.45%
G 100 of 402 ~ 24.88%
B 63 of 402 ~ 15.67%
#EF643F color CMYK value is (0,58,74,6).
CMYK: (0,58,74,6) C0M58Y74K6 (0%,58%,74%,6%) (0.00/0.58/0.74/0.06)
EF | 64 | 3F | |
---|---|---|---|
RGB | 239 | 100 | 63 |
HSL | 13° | 84.62% | 59.22% |
HSB/HSV | 13° | 73.64% | 93.73% |
CMYK | 0.00% | 58.16% | 73.64% |
6.27% |
HEX | EF | 64 | 3F |
Decimal | 239 | 100 | 63 |
Binary | 11101111 | 1100100 | 111111 |
Octal | 357 | 144 | 77 |
Examples of css and html codes for elements with #EF643F color. Also use rgb(239,100,63) instead hex code.
.myTextColor { color: #EF643F; }
<p style="color:#EF643F">This sample text font color is #EF643F.</p>
This text font color is #EF643F.
.myBgColor { background-color: #EF643F; }
<div style="background-color:#EF643F">Inner text</div>
This div background color is #EF643F.
.myBorderColor { border: 1px solid #EF643F; }
<div style="border:3px solid #EF643F">Div</div>
This div border color is #EF643F.
.myOpacity80 { color: #EF643F; opacity: 0.8; }
<p style="color:#EF643F;opacity:0.8;">80%</p>
Text with #EF643F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF643F;}
<p style="text-shadow: 3px 3px 1px #EF643F">Text here.</p>
This text has shadow with #EF643F color.
.textShadow {text-shadow: 3px 3px 1px #EF643F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF643F, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF643F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF643F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF643F, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF643F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF643F; -webkit-box-shadow: 1px 1px 3px 2px #EF643F; box-shadow: 1px 1px 3px 2px #EF643F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF643F; -webkit-box-shadow: 1px 1px 3px 2px #EF643F; box-shadow:1px 1px 3px 2px #EF643F;">
Div content here</div>
This text has color #EF643F on black background.
This text has color #EF643F on white background.
This text has black color on #EF643F background.
This text has white color on #EF643F background.