HEX: #76A8CF
RGB: (118,168,207)
#76A8CF contains mainly green and blue colors. Web safe color of #76A8CF is #6699CC (or #69C).
#76A8CF color RGB value is (118,168,207).
RGB: (118,168,207) (46%,66%,81%)
R 118 of 255 = 46%
G 168 of 255 = 66%
B 207 of 255 = 81%
R + G + B ~ 64%. #76A8CF is quite light color.
R + G + B =
118 + 168 + 207 = 493 (100%)
R 118 of 493 ~ 23.94%
G 168 of 493 ~ 34.08%
B 207 of 493 ~ 41.99%
#76A8CF color CMYK value is (43,19,0,19).
CMYK: (43,19,0,19) C43M19Y0K19 (43%,19%,0%,19%) (0.43/0.19/0.00/0.19)
76 | A8 | CF | |
---|---|---|---|
RGB | 118 | 168 | 207 |
HSL | 206° | 48.11% | 63.73% |
HSB/HSV | 206° | 43.00% | 81.18% |
CMYK | 43.00% | 18.84% | 0.00% |
18.82% |
HEX | 76 | A8 | CF |
Decimal | 118 | 168 | 207 |
Binary | 1110110 | 10101000 | 11001111 |
Octal | 166 | 250 | 317 |
Examples of css and html codes for elements with #76A8CF color. Also use rgb(118,168,207) instead hex code.
.myTextColor { color: #76A8CF; }
<p style="color:#76A8CF">This sample text font color is #76A8CF.</p>
This text font color is #76A8CF.
.myBgColor { background-color: #76A8CF; }
<div style="background-color:#76A8CF">Inner text</div>
This div background color is #76A8CF.
.myBorderColor { border: 1px solid #76A8CF; }
<div style="border:3px solid #76A8CF">Div</div>
This div border color is #76A8CF.
.myOpacity80 { color: #76A8CF; opacity: 0.8; }
<p style="color:#76A8CF;opacity:0.8;">80%</p>
Text with #76A8CF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76A8CF;}
<p style="text-shadow: 3px 3px 1px #76A8CF">Text here.</p>
This text has shadow with #76A8CF color.
.textShadow {text-shadow: 3px 3px 1px #76A8CF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76A8CF, 5px 5px 20px red">Text here.</p>
This text has shadow with #76A8CF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76A8CF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76A8CF, Direction=45, Strength=4)">Text</p>
This text has shadow with #76A8CF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76A8CF; -webkit-box-shadow: 1px 1px 3px 2px #76A8CF; box-shadow: 1px 1px 3px 2px #76A8CF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76A8CF; -webkit-box-shadow: 1px 1px 3px 2px #76A8CF; box-shadow:1px 1px 3px 2px #76A8CF;">
Div content here</div>
This text has color #76A8CF on black background.
This text has color #76A8CF on white background.
This text has black color on #76A8CF background.
This text has white color on #76A8CF background.