Add light & auto variants

This commit is contained in:
Sainnhe Park
2022-10-31 11:21:54 +08:00
parent bc1d51fab0
commit 2d79c4ac06
11 changed files with 89 additions and 1 deletions

View File

@@ -4,5 +4,7 @@ BASEDIR="$( cd "$( dirname "$0" )" && pwd )"
cd "${BASEDIR}"
for theme in edge gruvbox; do
lessc -x "src/${theme}-dark.less" > "dist/theme-${theme}-dark.css"
for variant in dark light auto; do
lessc -x "src/${theme}-${variant}.less" > "dist/theme-${theme}-${variant}.css"
done
done