diff --git a/core.sh b/core.sh index 8191bcb..b34122c 100755 --- a/core.sh +++ b/core.sh @@ -15,12 +15,12 @@ fi SASSC_OPT="-M -t expanded" THEME_NAME=Orchis -THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey') +THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey' '-Nord') COLOR_VARIANTS=('' '-Light' '-Dark') SIZE_VARIANTS=('' '-Compact') # Old name variants -OLD_THEME_VARIANTS=('' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey') +OLD_THEME_VARIANTS=('' '-purple' '-pink' '-red' '-orange' '-yellow' '-green' '-grey' '-nord') OLD_COLOR_VARIANTS=('' '-light' '-dark') OLD_SIZE_VARIANTS=('' '-compact') @@ -281,6 +281,9 @@ install_theme_color() { -Teal) theme_color='teal' ;; + -Nord) + theme_color='nord' + ;; -Grey) theme_color='grey' ;; diff --git a/install.sh b/install.sh index 78d5642..2e6d4e2 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ OPTIONS: -d, --dest DIR Specify destination directory (Default: $DEST_DIR) -n, --name NAME Specify theme name (Default: $THEME_NAME) - -t, --theme VARIANT Specify theme color variant(s) [default|purple|pink|red|orange|yellow|green|teal|grey|all] (Default: blue) + -t, --theme VARIANT Specify theme color variant(s) [default|purple|pink|red|orange|yellow|green|teal|grey|nord|all] (Default: blue) -c, --color VARIANT Specify color variant(s) [standard|light|dark] (Default: All variants)s) -s, --size VARIANT Specify size variant [standard|compact] (Default: All variants) @@ -179,6 +179,10 @@ while [[ "$#" -gt 0 ]]; do themes+=("${THEME_VARIANTS[8]}") shift ;; + nord) + themes+=("${THEME_VARIANTS[9]}") + shift + ;; all) themes+=("${THEME_VARIANTS[@]}") shift