HEX: #E7997A
RGB: (231,153,122)
#E7997A contains mainly red color. Web safe color of #E7997A is #FF9966 (or #F96).
#E7997A color RGB value is (231,153,122).
RGB: (231,153,122) (91%,60%,48%)
R 231 of 255 = 91%
G 153 of 255 = 60%
B 122 of 255 = 48%
R + G + B ~ 66%. #E7997A is quite light color.
R + G + B =
231 + 153 + 122 = 506 (100%)
R 231 of 506 ~ 45.65%
G 153 of 506 ~ 30.24%
B 122 of 506 ~ 24.11%
#E7997A color CMYK value is (0,34,47,9).
CMYK: (0,34,47,9) C0M34Y47K9 (0%,34%,47%,9%) (0.00/0.34/0.47/0.09)
E7 | 99 | 7A | |
---|---|---|---|
RGB | 231 | 153 | 122 |
HSL | 17° | 69.43% | 69.22% |
HSB/HSV | 17° | 47.19% | 90.59% |
CMYK | 0.00% | 33.77% | 47.19% |
9.41% |
HEX | E7 | 99 | 7A |
Decimal | 231 | 153 | 122 |
Binary | 11100111 | 10011001 | 1111010 |
Octal | 347 | 231 | 172 |
Examples of css and html codes for elements with #E7997A color. Also use rgb(231,153,122) instead hex code.
.myTextColor { color: #E7997A; }
<p style="color:#E7997A">This sample text font color is #E7997A.</p>
This text font color is #E7997A.
.myBgColor { background-color: #E7997A; }
<div style="background-color:#E7997A">Inner text</div>
This div background color is #E7997A.
.myBorderColor { border: 1px solid #E7997A; }
<div style="border:3px solid #E7997A">Div</div>
This div border color is #E7997A.
.myOpacity80 { color: #E7997A; opacity: 0.8; }
<p style="color:#E7997A;opacity:0.8;">80%</p>
Text with #E7997A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7997A;}
<p style="text-shadow: 3px 3px 1px #E7997A">Text here.</p>
This text has shadow with #E7997A color.
.textShadow {text-shadow: 3px 3px 1px #E7997A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7997A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7997A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7997A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7997A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7997A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7997A; -webkit-box-shadow: 1px 1px 3px 2px #E7997A; box-shadow: 1px 1px 3px 2px #E7997A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7997A; -webkit-box-shadow: 1px 1px 3px 2px #E7997A; box-shadow:1px 1px 3px 2px #E7997A;">
Div content here</div>
This text has color #E7997A on black background.
This text has color #E7997A on white background.
This text has black color on #E7997A background.
This text has white color on #E7997A background.