HEX: #78AFCD
RGB: (120,175,205)
#78AFCD contains mainly green and blue colors. Web safe color of #78AFCD is #6699CC (or #69C).
#78AFCD color RGB value is (120,175,205).
RGB: (120,175,205) (47%,69%,80%)
R 120 of 255 = 47%
G 175 of 255 = 69%
B 205 of 255 = 80%
R + G + B ~ 65%. #78AFCD is quite light color.
R + G + B =
120 + 175 + 205 = 500 (100%)
R 120 of 500 ~ 24%
G 175 of 500 ~ 35%
B 205 of 500 ~ 41%
#78AFCD color CMYK value is (41,15,0,20).
CMYK: (41,15,0,20) C41M15Y0K20 (41%,15%,0%,20%) (0.41/0.15/0.00/0.20)
78 | AF | CD | |
---|---|---|---|
RGB | 120 | 175 | 205 |
HSL | 201° | 45.95% | 63.73% |
HSB/HSV | 201° | 41.46% | 80.39% |
CMYK | 41.46% | 14.63% | 0.00% |
19.61% |
HEX | 78 | AF | CD |
Decimal | 120 | 175 | 205 |
Binary | 1111000 | 10101111 | 11001101 |
Octal | 170 | 257 | 315 |
Examples of css and html codes for elements with #78AFCD color. Also use rgb(120,175,205) instead hex code.
.myTextColor { color: #78AFCD; }
<p style="color:#78AFCD">This sample text font color is #78AFCD.</p>
This text font color is #78AFCD.
.myBgColor { background-color: #78AFCD; }
<div style="background-color:#78AFCD">Inner text</div>
This div background color is #78AFCD.
.myBorderColor { border: 1px solid #78AFCD; }
<div style="border:3px solid #78AFCD">Div</div>
This div border color is #78AFCD.
.myOpacity80 { color: #78AFCD; opacity: 0.8; }
<p style="color:#78AFCD;opacity:0.8;">80%</p>
Text with #78AFCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #78AFCD;}
<p style="text-shadow: 3px 3px 1px #78AFCD">Text here.</p>
This text has shadow with #78AFCD color.
.textShadow {text-shadow: 3px 3px 1px #78AFCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #78AFCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #78AFCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#78AFCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#78AFCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #78AFCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #78AFCD; -webkit-box-shadow: 1px 1px 3px 2px #78AFCD; box-shadow: 1px 1px 3px 2px #78AFCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #78AFCD; -webkit-box-shadow: 1px 1px 3px 2px #78AFCD; box-shadow:1px 1px 3px 2px #78AFCD;">
Div content here</div>
This text has color #78AFCD on black background.
This text has color #78AFCD on white background.
This text has black color on #78AFCD background.
This text has white color on #78AFCD background.