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