HEX: #7F99CC
RGB: (127,153,204)
#7F99CC contains mainly green and blue colors. Web safe color of #7F99CC is #6699CC (or #69C).
#7F99CC color RGB value is (127,153,204).
RGB: (127,153,204) (50%,60%,80%)
R 127 of 255 = 50%
G 153 of 255 = 60%
B 204 of 255 = 80%
R + G + B ~ 63%. #7F99CC is quite light color.
R + G + B =
127 + 153 + 204 = 484 (100%)
R 127 of 484 ~ 26.24%
G 153 of 484 ~ 31.61%
B 204 of 484 ~ 42.15%
#7F99CC color CMYK value is (38,25,0,20).
CMYK: (38,25,0,20) C38M25Y0K20 (38%,25%,0%,20%) (0.38/0.25/0.00/0.20)
7F | 99 | CC | |
---|---|---|---|
RGB | 127 | 153 | 204 |
HSL | 220° | 43.02% | 64.90% |
HSB/HSV | 220° | 37.75% | 80.00% |
CMYK | 37.75% | 25.00% | 0.00% |
20.00% |
HEX | 7F | 99 | CC |
Decimal | 127 | 153 | 204 |
Binary | 1111111 | 10011001 | 11001100 |
Octal | 177 | 231 | 314 |
Examples of css and html codes for elements with #7F99CC color. Also use rgb(127,153,204) instead hex code.
.myTextColor { color: #7F99CC; }
<p style="color:#7F99CC">This sample text font color is #7F99CC.</p>
This text font color is #7F99CC.
.myBgColor { background-color: #7F99CC; }
<div style="background-color:#7F99CC">Inner text</div>
This div background color is #7F99CC.
.myBorderColor { border: 1px solid #7F99CC; }
<div style="border:3px solid #7F99CC">Div</div>
This div border color is #7F99CC.
.myOpacity80 { color: #7F99CC; opacity: 0.8; }
<p style="color:#7F99CC;opacity:0.8;">80%</p>
Text with #7F99CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7F99CC;}
<p style="text-shadow: 3px 3px 1px #7F99CC">Text here.</p>
This text has shadow with #7F99CC color.
.textShadow {text-shadow: 3px 3px 1px #7F99CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7F99CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7F99CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7F99CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7F99CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7F99CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7F99CC; -webkit-box-shadow: 1px 1px 3px 2px #7F99CC; box-shadow: 1px 1px 3px 2px #7F99CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7F99CC; -webkit-box-shadow: 1px 1px 3px 2px #7F99CC; box-shadow:1px 1px 3px 2px #7F99CC;">
Div content here</div>
This text has color #7F99CC on black background.
This text has color #7F99CC on white background.
This text has black color on #7F99CC background.
This text has white color on #7F99CC background.