TurboWarp / desktop

A better offline editor for Scratch 3.
https://desktop.turbowarp.org/
GNU General Public License v3.0
366 stars 79 forks source link

Not all addons available in Turbowarp? #864

Open sfederici opened 10 months ago

sfederici commented 10 months ago

I downloaded and compiled the source code. Everything works as expected but I cannot find the following addons:

neither in the addon settings's window nor in folder turbowarp-desktop/node_modules/scratch-gui/src/addons/addons.

Are those addons not available in the desktop version of Turbowarp?

UPDATE: as for the editor-dark-mode addon, I don't need this addon to use dark mode. I need it to bring back Scratch's 3.0 classic colors (the same colors I had hardwired in my previous custom version of Turbowarp) as all images in my slides use that color scheme.

sfederici commented 10 months ago

I can't find these addons even in turbowarp.org. Do they only work in Scratch?

GarboMuffin commented 10 months ago

That addon is one of the missing ones

The easiest way to make things blue would be to modify https://github.com/TurboWarp/scratch-gui/blob/develop/src/css/colors.css to replace:

$motion-primary: hsla(0, 100%, 65%, 1); /* #4C97FF */
$motion-tertiary: hsla(0, 60%, 50%, 1); /* #3373CC */
$motion-transparent: hsla(0, 100%, 65%, 0.35); /* 35% transparent version of motion-primary */
$motion-light-transparent: hsla(0, 100%, 65%, 0.15); /* 15% transparent version of motion-primary */

with:

$motion-primary: hsla(215, 100%, 65%, 1); /* #4C97FF */
$motion-tertiary: hsla(215, 60%, 50%, 1); /* #3373CC */
$motion-transparent: hsla(215, 100%, 65%, 0.35); /* 35% transparent version of motion-primary */
$motion-light-transparent: hsla(215, 100%, 65%, 0.15); /* 15% transparent version of motion-primary */

in the desktop app that file should be located in node_modules/scratch-gui/src/css/colors.css

sfederici commented 9 months ago

It worked well for the general GUI (except for icons and some widgets such as the direction dial)