gitea-themes/build.sh

9 lines
189 B
Bash
Raw Normal View History

2022-10-31 02:32:46 +00:00
#!/usr/bin/env bash
BASEDIR="$( cd "$( dirname "$0" )" && pwd )"
cd "${BASEDIR}"
2022-10-31 02:42:56 +00:00
for theme in edge gruvbox; do
lessc -x "src/${theme}-dark.less" > "dist/theme-${theme}-dark.css"
done