HEX: #0080AF
RGB: (0,128,175)
#0080AF contains only green and blue colors. Web safe color of #0080AF is #006699 (or #069).
#0080AF color RGB value is (0,128,175).
RGB: (0,128,175) (0%,50%,69%)
R 0 of 255 = 0%
G 128 of 255 = 50%
B 175 of 255 = 69%
R + G + B ~ 40%. #0080AF is middle color (not dark and not light).
R + G + B =
0 + 128 + 175 = 303 (100%)
R 0 of 303 ~ 0%
G 128 of 303 ~ 42.24%
B 175 of 303 ~ 57.76%
#0080AF color CMYK value is (100,27,0,31).
CMYK: (100,27,0,31) C100M27Y0K31 (100%,27%,0%,31%) (1.00/0.27/0.00/0.31)
00 | 80 | AF | |
---|---|---|---|
RGB | 0 | 128 | 175 |
HSL | 196° | 100.00% | 34.31% |
HSB/HSV | 196° | 100.00% | 68.63% |
CMYK | 100.00% | 26.86% | 0.00% |
31.37% |
HEX | 00 | 80 | AF |
Decimal | 0 | 128 | 175 |
Binary | 0 | 10000000 | 10101111 |
Octal | 0 | 200 | 257 |
Examples of css and html codes for elements with #0080AF color. Also use rgb(0,128,175) instead hex code.
.myTextColor { color: #0080AF; }
<p style="color:#0080AF">This sample text font color is #0080AF.</p>
This text font color is #0080AF.
.myBgColor { background-color: #0080AF; }
<div style="background-color:#0080AF">Inner text</div>
This div background color is #0080AF.
.myBorderColor { border: 1px solid #0080AF; }
<div style="border:3px solid #0080AF">Div</div>
This div border color is #0080AF.
.myOpacity80 { color: #0080AF; opacity: 0.8; }
<p style="color:#0080AF;opacity:0.8;">80%</p>
Text with #0080AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0080AF;}
<p style="text-shadow: 3px 3px 1px #0080AF">Text here.</p>
This text has shadow with #0080AF color.
.textShadow {text-shadow: 3px 3px 1px #0080AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0080AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #0080AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0080AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0080AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #0080AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0080AF; -webkit-box-shadow: 1px 1px 3px 2px #0080AF; box-shadow: 1px 1px 3px 2px #0080AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0080AF; -webkit-box-shadow: 1px 1px 3px 2px #0080AF; box-shadow:1px 1px 3px 2px #0080AF;">
Div content here</div>
This text has color #0080AF on black background.
This text has color #0080AF on white background.
This text has black color on #0080AF background.
This text has white color on #0080AF background.