HEX: #78ABCE
RGB: (120,171,206)
#78ABCE contains mainly green and blue colors. Web safe color of #78ABCE is #6699CC (or #69C).
#78ABCE color RGB value is (120,171,206).
RGB: (120,171,206) (47%,67%,81%)
R 120 of 255 = 47%
G 171 of 255 = 67%
B 206 of 255 = 81%
R + G + B ~ 65%. #78ABCE is quite light color.
R + G + B =
120 + 171 + 206 = 497 (100%)
R 120 of 497 ~ 24.14%
G 171 of 497 ~ 34.41%
B 206 of 497 ~ 41.45%
#78ABCE color CMYK value is (42,17,0,19).
CMYK: (42,17,0,19) C42M17Y0K19 (42%,17%,0%,19%) (0.42/0.17/0.00/0.19)
78 | AB | CE | |
---|---|---|---|
RGB | 120 | 171 | 206 |
HSL | 204° | 46.74% | 63.92% |
HSB/HSV | 204° | 41.75% | 80.78% |
CMYK | 41.75% | 16.99% | 0.00% |
19.22% |
HEX | 78 | AB | CE |
Decimal | 120 | 171 | 206 |
Binary | 1111000 | 10101011 | 11001110 |
Octal | 170 | 253 | 316 |
Examples of css and html codes for elements with #78ABCE color. Also use rgb(120,171,206) instead hex code.
.myTextColor { color: #78ABCE; }
<p style="color:#78ABCE">This sample text font color is #78ABCE.</p>
This text font color is #78ABCE.
.myBgColor { background-color: #78ABCE; }
<div style="background-color:#78ABCE">Inner text</div>
This div background color is #78ABCE.
.myBorderColor { border: 1px solid #78ABCE; }
<div style="border:3px solid #78ABCE">Div</div>
This div border color is #78ABCE.
.myOpacity80 { color: #78ABCE; opacity: 0.8; }
<p style="color:#78ABCE;opacity:0.8;">80%</p>
Text with #78ABCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #78ABCE;}
<p style="text-shadow: 3px 3px 1px #78ABCE">Text here.</p>
This text has shadow with #78ABCE color.
.textShadow {text-shadow: 3px 3px 1px #78ABCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #78ABCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #78ABCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#78ABCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#78ABCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #78ABCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #78ABCE; -webkit-box-shadow: 1px 1px 3px 2px #78ABCE; box-shadow: 1px 1px 3px 2px #78ABCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #78ABCE; -webkit-box-shadow: 1px 1px 3px 2px #78ABCE; box-shadow:1px 1px 3px 2px #78ABCE;">
Div content here</div>
This text has color #78ABCE on black background.
This text has color #78ABCE on white background.
This text has black color on #78ABCE background.
This text has white color on #78ABCE background.