HEX: #EE7B63
RGB: (238,123,99)
#EE7B63 contains mainly red color. #EE7B63 ‘ nin web güvenlik rengi #FF6666 (ya da #F66) dir.
#EE7B63 color RGB value is (238,123,99).
RGB: (238,123,99) (93%,48%,39%)
R 238 of 255 = 93%
G 123 of 255 = 48%
B 99 of 255 = 39%
R + G + B ~ 60%. #EE7B63 is middle color (not dark and not light).
R + G + B =
238 + 123 + 99 = 460 (100%)
R 238 of 460 ~ 51.74%
G 123 of 460 ~ 26.74%
B 99 of 460 ~ 21.52%
#EE7B63 rengi CMYK tonu (0,48,58,7).
CMYK: (0,48,58,7) C0M48Y58K7 (0%,48%,58%,7%) (0.00/0.48/0.58/0.07)
EE | 7B | 63 | |
---|---|---|---|
RGB | 238 | 123 | 99 |
HSL | 10° | 80.35% | 66.08% |
HSB/HSV | 10° | 58.40% | 93.33% |
CMYK | 0.00% | 48.32% | 58.40% |
6.67% |
HEX | EE | 7B | 63 |
Decimal | 238 | 123 | 99 |
Binary | 11101110 | 1111011 | 1100011 |
Octal | 356 | 173 | 143 |
Examples of css and html codes for elements with #EE7B63 color. Also use rgb(238,123,99) instead hex code.
.myTextColor { color: #EE7B63; }
<p style="color:#EE7B63">This sample text font color is #EE7B63.</p>
This text font color is #EE7B63.
.myBgColor { background-color: #EE7B63; }
<div style="background-color:#EE7B63">Inner text</div>
This div background color is #EE7B63.
.myBorderColor { border: 1px solid #EE7B63; }
<div style="border:3px solid #EE7B63">Div</div>
This div border color is #EE7B63.
.myOpacity80 { color: #EE7B63; opacity: 0.8; }
<p style="color:#EE7B63;opacity:0.8;">80%</p>
Text with #EE7B63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE7B63;}
<p style="text-shadow: 3px 3px 1px #EE7B63">Text here.</p>
This text has shadow with #EE7B63 color.
.textShadow {text-shadow: 3px 3px 1px #EE7B63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE7B63, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE7B63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE7B63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE7B63, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE7B63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE7B63; -webkit-box-shadow: 1px 1px 3px 2px #EE7B63; box-shadow: 1px 1px 3px 2px #EE7B63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE7B63; -webkit-box-shadow: 1px 1px 3px 2px #EE7B63; box-shadow:1px 1px 3px 2px #EE7B63;">
Div content here</div>
This text has color #EE7B63 on black background.
This text has color #EE7B63 on white background.
This text has black color on #EE7B63 background.
This text has white color on #EE7B63 background.