HEX: #79C7EE
RGB: (121,199,238)
#79C7EE contains mainly green and blue colors. Web safe color of #79C7EE is #66CCFF (or #6CF).
#79C7EE color RGB value is (121,199,238).
RGB: (121,199,238) (47%,78%,93%)
R 121 of 255 = 47%
G 199 of 255 = 78%
B 238 of 255 = 93%
R + G + B ~ 73%. #79C7EE is quite light color.
R + G + B =
121 + 199 + 238 = 558 (100%)
R 121 of 558 ~ 21.68%
G 199 of 558 ~ 35.66%
B 238 of 558 ~ 42.65%
#79C7EE color CMYK value is (49,16,0,7).
CMYK: (49,16,0,7) C49M16Y0K7 (49%,16%,0%,7%) (0.49/0.16/0.00/0.07)
79 | C7 | EE | |
---|---|---|---|
RGB | 121 | 199 | 238 |
HSL | 200° | 77.48% | 70.39% |
HSB/HSV | 200° | 49.16% | 93.33% |
CMYK | 49.16% | 16.39% | 0.00% |
6.67% |
HEX | 79 | C7 | EE |
Decimal | 121 | 199 | 238 |
Binary | 1111001 | 11000111 | 11101110 |
Octal | 171 | 307 | 356 |
Examples of css and html codes for elements with #79C7EE color. Also use rgb(121,199,238) instead hex code.
.myTextColor { color: #79C7EE; }
<p style="color:#79C7EE">This sample text font color is #79C7EE.</p>
This text font color is #79C7EE.
.myBgColor { background-color: #79C7EE; }
<div style="background-color:#79C7EE">Inner text</div>
This div background color is #79C7EE.
.myBorderColor { border: 1px solid #79C7EE; }
<div style="border:3px solid #79C7EE">Div</div>
This div border color is #79C7EE.
.myOpacity80 { color: #79C7EE; opacity: 0.8; }
<p style="color:#79C7EE;opacity:0.8;">80%</p>
Text with #79C7EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #79C7EE;}
<p style="text-shadow: 3px 3px 1px #79C7EE">Text here.</p>
This text has shadow with #79C7EE color.
.textShadow {text-shadow: 3px 3px 1px #79C7EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #79C7EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #79C7EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#79C7EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#79C7EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #79C7EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #79C7EE; -webkit-box-shadow: 1px 1px 3px 2px #79C7EE; box-shadow: 1px 1px 3px 2px #79C7EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #79C7EE; -webkit-box-shadow: 1px 1px 3px 2px #79C7EE; box-shadow:1px 1px 3px 2px #79C7EE;">
Div content here</div>
This text has color #79C7EE on black background.
This text has color #79C7EE on white background.
This text has black color on #79C7EE background.
This text has white color on #79C7EE background.