diff --git a/.vscode/settings.json b/.vscode/settings.json index de385f1..91454e0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,14 @@ "tree.indentGuidesStroke": "#3d92ec", "activityBar.background": "#213309", "titleBar.activeBackground": "#2E470C", - "titleBar.activeForeground": "#F6FCEE" + "titleBar.activeForeground": "#F6FCEE", + "titleBar.inactiveBackground": "#213209", + "titleBar.inactiveForeground": "#F7FCEF", + "statusBar.background": "#213209", + "statusBar.foreground": "#F7FCEF", + "statusBar.debuggingBackground": "#213209", + "statusBar.debuggingForeground": "#F7FCEF", + "statusBar.noFolderBackground": "#213209", + "statusBar.noFolderForeground": "#F7FCEF" } } diff --git a/bin/.utils.js b/bin/.utils.js index 9f3b807..a695795 100644 --- a/bin/.utils.js +++ b/bin/.utils.js @@ -16,7 +16,7 @@ const cwd = path.resolve(".."); module.exports.tailwindToCSS = debounce(() => { try { require("child_process").execSync( - `npx @tailwindcss/cli -i styles/theme.css -o static/dist/theme.css`, + `./node_modules/.bin/tailwindcss -i styles/theme.css -o static/dist/theme.css`, { stdio: "inherit" } ); } catch (error) { diff --git a/package.json b/package.json index 6f4fad8..b9c1bfb 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "start": "npm run watch", "watch": "node bin/.watch.js", - "build": "npx @tailwindcss/cli -i ./styles/theme.css -o ./static/dist/theme.css --optimize" + "build": "@tailwindcss/cli -i ./styles/theme.css -o ./static/dist/theme.css --optimize" }, "repository": { "type": "git",