HEX: #EFE68B
RGB: (239,230,139)
#EFE68B contains mainly red and green colors. Web safe color of #EFE68B is #FFCC99 (or #FC9).
#EFE68B color RGB value is (239,230,139).
RGB: (239,230,139) (94%,90%,55%)
R 239 of 255 = 94%
G 230 of 255 = 90%
B 139 of 255 = 55%
R + G + B ~ 80%. #EFE68B is quite light color.
R + G + B =
239 + 230 + 139 = 608 (100%)
R 239 of 608 ~ 39.31%
G 230 of 608 ~ 37.83%
B 139 of 608 ~ 22.86%
#EFE68B color CMYK value is (0,4,42,6).
CMYK: (0,4,42,6) C0M4Y42K6 (0%,4%,42%,6%) (0.00/0.04/0.42/0.06)
EF | E6 | 8B | |
---|---|---|---|
RGB | 239 | 230 | 139 |
HSL | 55° | 75.76% | 74.12% |
HSB/HSV | 55° | 41.84% | 93.73% |
CMYK | 0.00% | 3.77% | 41.84% |
6.27% |
HEX | EF | E6 | 8B |
Decimal | 239 | 230 | 139 |
Binary | 11101111 | 11100110 | 10001011 |
Octal | 357 | 346 | 213 |
Examples of css and html codes for elements with #EFE68B color. Also use rgb(239,230,139) instead hex code.
.myTextColor { color: #EFE68B; }
<p style="color:#EFE68B">This sample text font color is #EFE68B.</p>
This text font color is #EFE68B.
.myBgColor { background-color: #EFE68B; }
<div style="background-color:#EFE68B">Inner text</div>
This div background color is #EFE68B.
.myBorderColor { border: 1px solid #EFE68B; }
<div style="border:3px solid #EFE68B">Div</div>
This div border color is #EFE68B.
.myOpacity80 { color: #EFE68B; opacity: 0.8; }
<p style="color:#EFE68B;opacity:0.8;">80%</p>
Text with #EFE68B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFE68B;}
<p style="text-shadow: 3px 3px 1px #EFE68B">Text here.</p>
This text has shadow with #EFE68B color.
.textShadow {text-shadow: 3px 3px 1px #EFE68B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFE68B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFE68B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFE68B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFE68B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFE68B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFE68B; -webkit-box-shadow: 1px 1px 3px 2px #EFE68B; box-shadow: 1px 1px 3px 2px #EFE68B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFE68B; -webkit-box-shadow: 1px 1px 3px 2px #EFE68B; box-shadow:1px 1px 3px 2px #EFE68B;">
Div content here</div>
This text has color #EFE68B on black background.
This text has color #EFE68B on white background.
This text has black color on #EFE68B background.
This text has white color on #EFE68B background.