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