HEX: #80B0DC
RGB: (128,176,220)
#80B0DC contains mainly green and blue colors. Web safe color of #80B0DC is #6699CC (or #69C).
#80B0DC color RGB value is (128,176,220).
RGB: (128,176,220) (50%,69%,86%)
R 128 of 255 = 50%
G 176 of 255 = 69%
B 220 of 255 = 86%
R + G + B ~ 68%. #80B0DC is quite light color.
R + G + B =
128 + 176 + 220 = 524 (100%)
R 128 of 524 ~ 24.43%
G 176 of 524 ~ 33.59%
B 220 of 524 ~ 41.98%
#80B0DC color CMYK value is (42,20,0,14).
CMYK: (42,20,0,14) C42M20Y0K14 (42%,20%,0%,14%) (0.42/0.20/0.00/0.14)
80 | B0 | DC | |
---|---|---|---|
RGB | 128 | 176 | 220 |
HSL | 209° | 56.79% | 68.24% |
HSB/HSV | 209° | 41.82% | 86.27% |
CMYK | 41.82% | 20.00% | 0.00% |
13.73% |
HEX | 80 | B0 | DC |
Decimal | 128 | 176 | 220 |
Binary | 10000000 | 10110000 | 11011100 |
Octal | 200 | 260 | 334 |
Examples of css and html codes for elements with #80B0DC color. Also use rgb(128,176,220) instead hex code.
.myTextColor { color: #80B0DC; }
<p style="color:#80B0DC">This sample text font color is #80B0DC.</p>
This text font color is #80B0DC.
.myBgColor { background-color: #80B0DC; }
<div style="background-color:#80B0DC">Inner text</div>
This div background color is #80B0DC.
.myBorderColor { border: 1px solid #80B0DC; }
<div style="border:3px solid #80B0DC">Div</div>
This div border color is #80B0DC.
.myOpacity80 { color: #80B0DC; opacity: 0.8; }
<p style="color:#80B0DC;opacity:0.8;">80%</p>
Text with #80B0DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80B0DC;}
<p style="text-shadow: 3px 3px 1px #80B0DC">Text here.</p>
This text has shadow with #80B0DC color.
.textShadow {text-shadow: 3px 3px 1px #80B0DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80B0DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #80B0DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80B0DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80B0DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #80B0DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80B0DC; -webkit-box-shadow: 1px 1px 3px 2px #80B0DC; box-shadow: 1px 1px 3px 2px #80B0DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80B0DC; -webkit-box-shadow: 1px 1px 3px 2px #80B0DC; box-shadow:1px 1px 3px 2px #80B0DC;">
Div content here</div>
This text has color #80B0DC on black background.
This text has color #80B0DC on white background.
This text has black color on #80B0DC background.
This text has white color on #80B0DC background.