HEX: #80D4FF
RGB: (128,212,255)
#80D4FF contains mainly green and blue colors. Web safe color of #80D4FF is #66CCFF (or #6CF).
#80D4FF color RGB value is (128,212,255).
RGB: (128,212,255) (50%,83%,100%)
R 128 of 255 = 50%
G 212 of 255 = 83%
B 255 of 255 = 100%
R + G + B ~ 78%. #80D4FF is quite light color.
R + G + B =
128 + 212 + 255 = 595 (100%)
R 128 of 595 ~ 21.51%
G 212 of 595 ~ 35.63%
B 255 of 595 ~ 42.86%
#80D4FF color CMYK value is (50,17,0,0).
CMYK: (50,17,0,0) C50M17Y0K0 (50%,17%,0%,0%) (0.50/0.17/0.00/0.00)
80 | D4 | FF | |
---|---|---|---|
RGB | 128 | 212 | 255 |
HSL | 200° | 100.00% | 75.10% |
HSB/HSV | 200° | 49.80% | 100.00% |
CMYK | 49.80% | 16.86% | 0.00% |
0.00% |
HEX | 80 | D4 | FF |
Decimal | 128 | 212 | 255 |
Binary | 10000000 | 11010100 | 11111111 |
Octal | 200 | 324 | 377 |
Examples of css and html codes for elements with #80D4FF color. Also use rgb(128,212,255) instead hex code.
.myTextColor { color: #80D4FF; }
<p style="color:#80D4FF">This sample text font color is #80D4FF.</p>
This text font color is #80D4FF.
.myBgColor { background-color: #80D4FF; }
<div style="background-color:#80D4FF">Inner text</div>
This div background color is #80D4FF.
.myBorderColor { border: 1px solid #80D4FF; }
<div style="border:3px solid #80D4FF">Div</div>
This div border color is #80D4FF.
.myOpacity80 { color: #80D4FF; opacity: 0.8; }
<p style="color:#80D4FF;opacity:0.8;">80%</p>
Text with #80D4FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80D4FF;}
<p style="text-shadow: 3px 3px 1px #80D4FF">Text here.</p>
This text has shadow with #80D4FF color.
.textShadow {text-shadow: 3px 3px 1px #80D4FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80D4FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #80D4FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80D4FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80D4FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #80D4FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80D4FF; -webkit-box-shadow: 1px 1px 3px 2px #80D4FF; box-shadow: 1px 1px 3px 2px #80D4FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80D4FF; -webkit-box-shadow: 1px 1px 3px 2px #80D4FF; box-shadow:1px 1px 3px 2px #80D4FF;">
Div content here</div>
This text has color #80D4FF on black background.
This text has color #80D4FF on white background.
This text has black color on #80D4FF background.
This text has white color on #80D4FF background.