HEX: #FD633F
RGB: (253,99,63)
#FD633F contains mainly red color. Web safe color of #FD633F is #FF6633 (or #F63).
#FD633F color RGB value is (253,99,63).
RGB: (253,99,63) (99%,39%,25%)
R 253 of 255 = 99%
G 99 of 255 = 39%
B 63 of 255 = 25%
R + G + B ~ 54%. #FD633F is middle color (not dark and not light).
R + G + B =
253 + 99 + 63 = 415 (100%)
R 253 of 415 ~ 60.96%
G 99 of 415 ~ 23.86%
B 63 of 415 ~ 15.18%
#FD633F color CMYK value is (0,61,75,1).
CMYK: (0,61,75,1) C0M61Y75K1 (0%,61%,75%,1%) (0.00/0.61/0.75/0.01)
FD | 63 | 3F | |
---|---|---|---|
RGB | 253 | 99 | 63 |
HSL | 11° | 97.94% | 61.96% |
HSB/HSV | 11° | 75.10% | 99.22% |
CMYK | 0.00% | 60.87% | 75.10% |
0.78% |
HEX | FD | 63 | 3F |
Decimal | 253 | 99 | 63 |
Binary | 11111101 | 1100011 | 111111 |
Octal | 375 | 143 | 77 |
Examples of css and html codes for elements with #FD633F color. Also use rgb(253,99,63) instead hex code.
.myTextColor { color: #FD633F; }
<p style="color:#FD633F">This sample text font color is #FD633F.</p>
This text font color is #FD633F.
.myBgColor { background-color: #FD633F; }
<div style="background-color:#FD633F">Inner text</div>
This div background color is #FD633F.
.myBorderColor { border: 1px solid #FD633F; }
<div style="border:3px solid #FD633F">Div</div>
This div border color is #FD633F.
.myOpacity80 { color: #FD633F; opacity: 0.8; }
<p style="color:#FD633F;opacity:0.8;">80%</p>
Text with #FD633F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FD633F;}
<p style="text-shadow: 3px 3px 1px #FD633F">Text here.</p>
This text has shadow with #FD633F color.
.textShadow {text-shadow: 3px 3px 1px #FD633F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FD633F, 5px 5px 20px red">Text here.</p>
This text has shadow with #FD633F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FD633F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FD633F, Direction=45, Strength=4)">Text</p>
This text has shadow with #FD633F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FD633F; -webkit-box-shadow: 1px 1px 3px 2px #FD633F; box-shadow: 1px 1px 3px 2px #FD633F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FD633F; -webkit-box-shadow: 1px 1px 3px 2px #FD633F; box-shadow:1px 1px 3px 2px #FD633F;">
Div content here</div>
This text has color #FD633F on black background.
This text has color #FD633F on white background.
This text has black color on #FD633F background.
This text has white color on #FD633F background.