Nord: add to the install

pull/276/head^2^2
Demetrio Rodriguez 4 years ago
parent 590662db99
commit f73ffbe176

@ -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'
;;

@ -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

Loading…
Cancel
Save