Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non riesco a cambiare colore alle icone #3

Open
msillano opened this issue May 21, 2024 · 3 comments
Open

Non riesco a cambiare colore alle icone #3

msillano opened this issue May 21, 2024 · 3 comments
Labels
done the latest version fixes the problem enhancement New feature or request

Comments

@msillano
Copy link
Owner

msillano commented May 21, 2024

Anche se cambio 'color' le icone sono sempre Pink !
segnalato qui: https://www.facebook.com/groups/tuyaitalia/posts/1417817525519263/?comment_id=1418553272112355&reply_comment_id=1418734645427551

@msillano
Copy link
Owner Author

msillano commented May 21, 2024

Per poter cambiare ANCHE i colori delle icone:
Nel file custom.js occorre :

  1. Modificare la riga 44: Da così
    if (connected) theIcon['color'] = "HotPink";
    a così:
    if (!connected) theIcon['color'] = "DarkGray"; // unconnected color

  2. modificare il colore di default: (riga 20)
    da così ;
    color: "DarkGray", // unconnected color
    a così:
    color: "HotPink", // default color

Quindi: il colore di default delle icone si cambia a riga 20

Le singole icone o alcuni tipi di icone possono avere un differente colore:

                    {
                        theIcon['code'] = "\uf1eb";
                        theIcon['color'] =	"HotPink";
                    }

Sarà aggiornato nella prossima release
PS: Attenzione a non esagerare con i colori,alcuni hanno già un significato:
il grigio è usato per 'disconnesso', il blu per WiFi, il rosso per 'HUB connection'

@msillano msillano added bug Something isn't working enhancement New feature or request and removed bug Something isn't working labels May 21, 2024
@Domy81
Copy link

Domy81 commented May 21, 2024

Confermo ora il cambio colore delle singole icone funziona ma c'è un errore (la "," finale con ";")
if (!connected) theIcon['color'] = "DarkGray", // unconnected color
da correggere
if (!connected) theIcon['color'] = "DarkGray"; // unconnected color
altrimenti si riceve errore

Si può modificare anche la grandezza

{
theIcon['code'] = "\uf1eb";
theIcon['color'] = "HotPink";
theIcon['size'] = 80;
}

Ed anche sulla stessa riga in questo formato
{ theIcon['code'] = "\uf132", theIcon['size'] = 80, theIcon['color'] = "Purple"; }

@Domy81
Copy link

Domy81 commented May 21, 2024

smart home casa color
Ecco la mia mappa colorata! ;)

@msillano msillano added the done the latest version fixes the problem label May 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
done the latest version fixes the problem enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants