[WIKI] Custom CSS snippets, verified on SharpTools

Yes you absolutely can, I’ve done it on several times. What exactly are you wanting to edit?

I’m using css to add a glow effect to some tiles but the glow effect is a different shade and size than tiles with the native glow effect.

Does anyone know what the Sharptools default icon glow settings are for tiles with the native glow option? Or can someone tell me what I’m looking for using inspect on a PC? I could only find the code for tiles I added glow to.

It’s driving me crazy that they don’t look the same. :laughing:

1 Like

Hi my friend, I do not know how are you trying to do it, but I can share with you the CSS code I am using, maybe if you play with its parameters you can get what you want, I did the same.

/switchon/
.tile.–theme-style-switchon .value {display: none; }
.tile.–theme-style-switchon .main-content .icon svg {width: 45%; height: 45%; margin: 0; position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%);}

.tile.–theme-style-switchon .icon {
-webkit-filter: drop-shadow(0 0 08px #FFE900)
drop-shadow(0 0 10px #FFE900);
filter: drop-shadow(0 0 08px #FFE900)
drop-shadow(0 0 10px #FFE900);}