HEX: #FEBDA7
RGB: (254,189,167)
#FEBDA7 contains mainly red color. Web safe color of #FEBDA7 is #FFCC99 (or #FC9).
#FEBDA7 color RGB value is (254,189,167).
RGB: (254,189,167) (100%,74%,65%)
R 254 of 255 = 100%
G 189 of 255 = 74%
B 167 of 255 = 65%
R + G + B ~ 80%. #FEBDA7 is quite light color.
R + G + B =
254 + 189 + 167 = 610 (100%)
R 254 of 610 ~ 41.64%
G 189 of 610 ~ 30.98%
B 167 of 610 ~ 27.38%
#FEBDA7 color CMYK value is (0,26,34,0).
CMYK: (0,26,34,0) C0M26Y34K0 (0%,26%,34%,0%) (0.00/0.26/0.34/0.00)
FE | BD | A7 | |
---|---|---|---|
RGB | 254 | 189 | 167 |
HSL | 15° | 97.75% | 82.55% |
HSB/HSV | 15° | 34.25% | 99.61% |
CMYK | 0.00% | 25.59% | 34.25% |
0.39% |
HEX | FE | BD | A7 |
Decimal | 254 | 189 | 167 |
Binary | 11111110 | 10111101 | 10100111 |
Octal | 376 | 275 | 247 |
Examples of css and html codes for elements with #FEBDA7 color. Also use rgb(254,189,167) instead hex code.
.myTextColor { color: #FEBDA7; }
<p style="color:#FEBDA7">This sample text font color is #FEBDA7.</p>
This text font color is #FEBDA7.
.myBgColor { background-color: #FEBDA7; }
<div style="background-color:#FEBDA7">Inner text</div>
This div background color is #FEBDA7.
.myBorderColor { border: 1px solid #FEBDA7; }
<div style="border:3px solid #FEBDA7">Div</div>
This div border color is #FEBDA7.
.myOpacity80 { color: #FEBDA7; opacity: 0.8; }
<p style="color:#FEBDA7;opacity:0.8;">80%</p>
Text with #FEBDA7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEBDA7;}
<p style="text-shadow: 3px 3px 1px #FEBDA7">Text here.</p>
This text has shadow with #FEBDA7 color.
.textShadow {text-shadow: 3px 3px 1px #FEBDA7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEBDA7, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEBDA7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEBDA7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEBDA7, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEBDA7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEBDA7; -webkit-box-shadow: 1px 1px 3px 2px #FEBDA7; box-shadow: 1px 1px 3px 2px #FEBDA7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEBDA7; -webkit-box-shadow: 1px 1px 3px 2px #FEBDA7; box-shadow:1px 1px 3px 2px #FEBDA7;">
Div content here</div>
This text has color #FEBDA7 on black background.
This text has color #FEBDA7 on white background.
This text has black color on #FEBDA7 background.
This text has white color on #FEBDA7 background.