HEX: #FDEB69
RGB: (253,235,105)
#FDEB69 contains mainly red and green colors. Web safe color of #FDEB69 is #FFFF66 (or #FF6).
#FDEB69 color RGB value is (253,235,105).
RGB: (253,235,105) (99%,92%,41%)
R 253 of 255 = 99%
G 235 of 255 = 92%
B 105 of 255 = 41%
R + G + B ~ 77%. #FDEB69 is quite light color.
R + G + B =
253 + 235 + 105 = 593 (100%)
R 253 of 593 ~ 42.66%
G 235 of 593 ~ 39.63%
B 105 of 593 ~ 17.71%
#FDEB69 color CMYK value is (0,7,58,1).
CMYK: (0,7,58,1) C0M7Y58K1 (0%,7%,58%,1%) (0.00/0.07/0.58/0.01)
FD | EB | 69 | |
---|---|---|---|
RGB | 253 | 235 | 105 |
HSL | 53° | 97.37% | 70.20% |
HSB/HSV | 53° | 58.50% | 99.22% |
CMYK | 0.00% | 7.11% | 58.50% |
0.78% |
HEX | FD | EB | 69 |
Decimal | 253 | 235 | 105 |
Binary | 11111101 | 11101011 | 1101001 |
Octal | 375 | 353 | 151 |
Examples of css and html codes for elements with #FDEB69 color. Also use rgb(253,235,105) instead hex code.
.myTextColor { color: #FDEB69; }
<p style="color:#FDEB69">This sample text font color is #FDEB69.</p>
This text font color is #FDEB69.
.myBgColor { background-color: #FDEB69; }
<div style="background-color:#FDEB69">Inner text</div>
This div background color is #FDEB69.
.myBorderColor { border: 1px solid #FDEB69; }
<div style="border:3px solid #FDEB69">Div</div>
This div border color is #FDEB69.
.myOpacity80 { color: #FDEB69; opacity: 0.8; }
<p style="color:#FDEB69;opacity:0.8;">80%</p>
Text with #FDEB69 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDEB69;}
<p style="text-shadow: 3px 3px 1px #FDEB69">Text here.</p>
This text has shadow with #FDEB69 color.
.textShadow {text-shadow: 3px 3px 1px #FDEB69, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDEB69, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDEB69 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDEB69, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDEB69, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDEB69 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDEB69; -webkit-box-shadow: 1px 1px 3px 2px #FDEB69; box-shadow: 1px 1px 3px 2px #FDEB69; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDEB69; -webkit-box-shadow: 1px 1px 3px 2px #FDEB69; box-shadow:1px 1px 3px 2px #FDEB69;">
Div content here</div>
This text has color #FDEB69 on black background.
This text has color #FDEB69 on white background.
This text has black color on #FDEB69 background.
This text has white color on #FDEB69 background.