HEX: #0066FF
RGB: (0,102,255)
Il colore #0066FF contiene principalmente il blu. Il #0066FF è un colore «web safe». Può essere trascritto brevemente come #06F.
Il colore 0066FF in RGB è definito come 0,102,255
RGB: (0,102,255) (0%,40%,100%)
R 0 da 255 = 0%
G 102 da 255 = 40%
B 255 da 255 = 100%
R + G + B ~ 47%. #0066FF colore medio (né scuro né chiaro).
R + G + B =
0 + 102 + 255 = 357 (100%)
R 0 da 357 ~ 0%
G 102 da 357 ~ 28.57%
B 255 da 357 ~ 71.43%
Il colore #0066FF in CMYK è definito come 100,60,0,0.
CMYK: (100,60,0,0) C100M60Y0K0 (100%,60%,0%,0%) (1.00/0.60/0.00/0.00)
00 | 66 | FF | |
---|---|---|---|
RGB | 0 | 102 | 255 |
HSL | 216° | 100.00% | 50.00% |
HSB/HSV | 216° | 100.00% | 100.00% |
CMYK | 100.00% | 60.00% | 0.00% |
0.00% |
Esadicemale | 00 | 66 | FF |
Decimale | 0 | 102 | 255 |
Binario | 0 | 1100110 | 11111111 |
Ottale | 0 | 146 | 377 |
Esempi dei codici css e html per gli elementi di colore #0066FF. Utilizzate rgb(0,102,255) anche al posto del codice hex.
.myTextColor { color: #0066FF; }
<p style="color:#0066FF">This sample text font color is #0066FF.</p>
Il colore di questo testo è #0066FF.
.myBgColor { background-color: #0066FF; }
<div style="background-color:#0066FF">Inner text</div>
Questo div ha lo sfondo di colore #0066FF.
.myBorderColor { border: 1px solid #0066FF; }
<div style="border:3px solid #0066FF">Div</div>
Questo div ha i bordi di colore 0066FF.
.myOpacity80 { color: #0066FF; opacity: 0.8; }
<p style="color:#0066FF;opacity:0.8;">80%</p>
Il testo di color #0066FF e trasparenza 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0066FF;}
<p style="text-shadow: 3px 3px 1px #0066FF">Text here.</p>
Questo testo ha l'ombra di colore #0066FF.
.textShadow {text-shadow: 3px 3px 1px #0066FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0066FF, 5px 5px 20px red">Text here.</p>
Questo testo ha l'ombra del colore principale #0066FF e del colore secondario rosso.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0066FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0066FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #0066FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0066FF; -webkit-box-shadow: 1px 1px 3px 2px #0066FF; box-shadow: 1px 1px 3px 2px #0066FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0066FF; -webkit-box-shadow: 1px 1px 3px 2px #0066FF; box-shadow:1px 1px 3px 2px #0066FF;">
Div content here</div>
Questo e il testo di colore #0066FF sullo sfondo nero.
Questo e il testo di colore #0066FF sullo sfondo bianco.
Questo è un testo nero sullo sfondo del colore #0066FF.
Questo è un testo bianco sullo sfondo del colore #0066FF.