10 Commits

Author SHA1 Message Date
vinceliuice
832fa2600b Fixed #165 2024-06-18 11:32:20 +08:00
vinceliuice
c50f1024c8 Fixed #166 2024-06-18 11:24:39 +08:00
vinceliuice
e23c79601c update 2024-06-16 01:32:59 +08:00
vinceliuice
aed576b4dc Update README.md 2024-06-15 23:55:33 +08:00
vinceliuice
9ffb38b5a1 Fixed #167
Add catppuccin colorschemes version
2024-06-15 23:52:19 +08:00
vinceliuice
b00d256e59 update 2024-06-10 01:06:38 +08:00
vinceliuice
a5e8268d08 Fixed issues 2024-06-10 01:04:43 +08:00
vinceliuice
1a13048ea1 Fixed #164 2024-05-18 22:51:49 +08:00
vinceliuice
53fb42660f update 2024-05-14 00:42:15 +08:00
vinceliuice
0eac8ce60e Fixed #163 2024-05-13 23:42:22 +08:00
2728 changed files with 870 additions and 423 deletions

View File

@@ -40,14 +40,14 @@ Run the following commands in the terminal:
-c, --color VARIANT... Specify color variant(s) [standard|light|dark] (Default: All variants)
-s, --size VARIANT... Specify size variant [standard|compact] (Default: standard variant)
-l, --libadwaita Install specify gtk-4.0 theme into config folder (~/.config/gtk-4.0) for all gtk4 apps use this theme
Default ColorSchemes theme will follow the system style (light/dark mode switch), nord|dracula|gruvbox|everforest|black ColorSchemes not support this
-l, --libadwaita Install specify gtk-4.0 theme into config folder ($HOME/.config/gtk-4.0) for all gtk4 apps use this theme
Default ColorSchemes theme will follow the system style (light/dark mode switch), all ColorSchemes versions not support this !
Options for default ColorSchemes:
1. system Default option (using system colors for light/dark mode switching)
2. fixed Using fixed theme colors (that will break light/dark mode switch)
--tweaks Specify versions for tweaks
1. [nord|dracula|gruvbox|all] (Nord/Dracula/gruvbox/all) ColorSchemes version
1. [nord|dracula|gruvbox|everforest|catppuccin|all] (Nord/Dracula/Gruvbox/Everforet/Catppuccin/all) ColorSchemes version
2. black Blackness color version
3. rimless Remove the 1px border about windows and menus
4. normal Normal windows button style like gnome default theme (titlebuttons: max/min/close)

369
assets.sh
View File

@@ -52,167 +52,208 @@ make_assets() {
esac
if [[ "$scheme" == '-Nord' ]]; then
case "$theme" in
'')
theme_color_dark='#5e81ac'
theme_color_light='#89a3c2'
;;
-Purple)
theme_color_dark='#b57daa'
theme_color_light='#c89dbf'
;;
-Pink)
theme_color_dark='#cd7092'
theme_color_light='#dc98b1'
;;
-Red)
theme_color_dark='#c35b65'
theme_color_light='#d4878f'
;;
-Orange)
theme_color_dark='#d0846c'
theme_color_light='#dca493'
;;
-Yellow)
theme_color_dark='#e4b558'
theme_color_light='#eac985'
;;
-Green)
theme_color_dark='#82ac5d'
theme_color_light='#a0c082'
;;
-Teal)
theme_color_dark='#63a6a5'
theme_color_light='#83b9b8'
;;
-Grey)
theme_color_dark='#3a4150'
theme_color_light='#d9dce3'
;;
esac
case "$theme" in
'')
theme_color_dark='#5e81ac'
theme_color_light='#89a3c2'
;;
-Purple)
theme_color_dark='#b57daa'
theme_color_light='#c89dbf'
;;
-Pink)
theme_color_dark='#cd7092'
theme_color_light='#dc98b1'
;;
-Red)
theme_color_dark='#c35b65'
theme_color_light='#d4878f'
;;
-Orange)
theme_color_dark='#d0846c'
theme_color_light='#dca493'
;;
-Yellow)
theme_color_dark='#e4b558'
theme_color_light='#eac985'
;;
-Green)
theme_color_dark='#82ac5d'
theme_color_light='#a0c082'
;;
-Teal)
theme_color_dark='#63a6a5'
theme_color_light='#83b9b8'
;;
-Grey)
theme_color_dark='#3a4150'
theme_color_light='#d9dce3'
;;
esac
fi
if [[ "$scheme" == '-Dracula' ]]; then
case "$theme" in
'')
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Purple)
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Pink)
theme_color_dark='#f04cab'
theme_color_light='#ff79c6'
;;
-Red)
theme_color_dark='#f44d4d'
theme_color_light='#ff5555'
;;
-Orange)
theme_color_dark='#f8a854'
theme_color_light='#ffb86c'
;;
-Yellow)
theme_color_dark='#e8f467'
theme_color_light='#f1fa8c'
;;
-Green)
theme_color_dark='#4be772'
theme_color_light='#50fa7b'
;;
-Teal)
theme_color_dark='#20eed9'
theme_color_light='#50fae9'
;;
-Grey)
theme_color_dark='#3c3f51'
theme_color_light='#d9dae3'
;;
esac
case "$theme" in
'')
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Purple)
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Pink)
theme_color_dark='#f04cab'
theme_color_light='#ff79c6'
;;
-Red)
theme_color_dark='#f44d4d'
theme_color_light='#ff5555'
;;
-Orange)
theme_color_dark='#f8a854'
theme_color_light='#ffb86c'
;;
-Yellow)
theme_color_dark='#e8f467'
theme_color_light='#f1fa8c'
;;
-Green)
theme_color_dark='#4be772'
theme_color_light='#50fa7b'
;;
-Teal)
theme_color_dark='#20eed9'
theme_color_light='#50fae9'
;;
-Grey)
theme_color_dark='#3c3f51'
theme_color_light='#d9dae3'
;;
esac
fi
if [[ "$scheme" == '-Gruvbox' ]]; then
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
fi
if [[ "$scheme" == '-Everforest' ]]; then
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
fi
if [[ "$scheme" == '-Catppuccin' ]]; then
case "$theme" in
'')
theme_color_dark='#1e66f5'
theme_color_light='#8caaee'
;;
-Purple)
theme_color_dark='#8839ef'
theme_color_light='#ca9ee6'
;;
-Pink)
theme_color_dark='#ea76cb'
theme_color_light='#f4b8e4'
;;
-Red)
theme_color_dark='#e64553'
theme_color_light='#ea999c'
;;
-Orange)
theme_color_dark='#fe640b'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#df8e1d'
theme_color_light='#ef9f76'
;;
-Green)
theme_color_dark='#40a02b'
theme_color_light='#a6d189'
;;
-Teal)
theme_color_dark='#179299'
theme_color_light='#81c8be'
;;
-Grey)
theme_color_dark='#5c5f77'
theme_color_light='#ccd0da'
;;
esac
fi
if [[ "$blackness" == 'true' ]]; then
@@ -252,6 +293,13 @@ make_assets() {
titlebar_light='#f2efdf'
titlebar_dark='#020203'
;;
-Catppuccin)
background_light='#eff1f5'
background_dark='#181825'
background_darker='#1e1e2e'
titlebar_light='#e6e9ef'
titlebar_dark='#11111b'
;;
esac
else
case "$scheme" in
@@ -284,11 +332,18 @@ make_assets() {
titlebar_dark='#242220'
;;
-Everforest)
background_light='#fffbef'
background_dark='#232A2E'
background_dark_alt='#343F44'
background_light='#edeada'
background_dark='#1e2326'
background_light='#fdf6e3'
background_dark='#2d353b'
background_dark_alt='#343f44'
titlebar_light='#f4f0d9'
titlebar_dark='#272e33'
;;
-Catppuccin)
background_light='#eff1f5'
background_dark='#292c3c'
background_darker='#303446'
titlebar_light='#e6e9ef'
titlebar_dark='#24273a'
;;
esac
fi

373
gtkrc.sh
View File

@@ -53,167 +53,208 @@ make_gtkrc() {
esac
if [[ "$scheme" == '-Nord' ]]; then
case "$theme" in
'')
theme_color_dark='#5e81ac'
theme_color_light='#89a3c2'
;;
-Purple)
theme_color_dark='#b57daa'
theme_color_light='#c89dbf'
;;
-Pink)
theme_color_dark='#cd7092'
theme_color_light='#dc98b1'
;;
-Red)
theme_color_dark='#c35b65'
theme_color_light='#d4878f'
;;
-Orange)
theme_color_dark='#d0846c'
theme_color_light='#dca493'
;;
-Yellow)
theme_color_dark='#e4b558'
theme_color_light='#eac985'
;;
-Green)
theme_color_dark='#82ac5d'
theme_color_light='#a0c082'
;;
-Teal)
theme_color_dark='#63a6a5'
theme_color_light='#83b9b8'
;;
-Grey)
theme_color_dark='#3a4150'
theme_color_light='#d9dce3'
;;
esac
case "$theme" in
'')
theme_color_dark='#5e81ac'
theme_color_light='#89a3c2'
;;
-Purple)
theme_color_dark='#b57daa'
theme_color_light='#c89dbf'
;;
-Pink)
theme_color_dark='#cd7092'
theme_color_light='#dc98b1'
;;
-Red)
theme_color_dark='#c35b65'
theme_color_light='#d4878f'
;;
-Orange)
theme_color_dark='#d0846c'
theme_color_light='#dca493'
;;
-Yellow)
theme_color_dark='#e4b558'
theme_color_light='#eac985'
;;
-Green)
theme_color_dark='#82ac5d'
theme_color_light='#a0c082'
;;
-Teal)
theme_color_dark='#63a6a5'
theme_color_light='#83b9b8'
;;
-Grey)
theme_color_dark='#3a4150'
theme_color_light='#d9dce3'
;;
esac
fi
if [[ "$scheme" == '-Dracula' ]]; then
case "$theme" in
'')
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Purple)
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Pink)
theme_color_dark='#f04cab'
theme_color_light='#ff79c6'
;;
-Red)
theme_color_dark='#f44d4d'
theme_color_light='#ff5555'
;;
-Orange)
theme_color_dark='#f8a854'
theme_color_light='#ffb86c'
;;
-Yellow)
theme_color_dark='#e8f467'
theme_color_light='#f1fa8c'
;;
-Green)
theme_color_dark='#4be772'
theme_color_light='#50fa7b'
;;
-Teal)
theme_color_dark='#20eed9'
theme_color_light='#50fae9'
;;
-Grey)
theme_color_dark='#3c3f51'
theme_color_light='#d9dae3'
;;
esac
case "$theme" in
'')
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Purple)
theme_color_dark='#a679ec'
theme_color_light='#bd93f9'
;;
-Pink)
theme_color_dark='#f04cab'
theme_color_light='#ff79c6'
;;
-Red)
theme_color_dark='#f44d4d'
theme_color_light='#ff5555'
;;
-Orange)
theme_color_dark='#f8a854'
theme_color_light='#ffb86c'
;;
-Yellow)
theme_color_dark='#e8f467'
theme_color_light='#f1fa8c'
;;
-Green)
theme_color_dark='#4be772'
theme_color_light='#50fa7b'
;;
-Teal)
theme_color_dark='#20eed9'
theme_color_light='#50fae9'
;;
-Grey)
theme_color_dark='#3c3f51'
theme_color_light='#d9dae3'
;;
esac
fi
if [[ "$scheme" == '-Gruvbox' ]]; then
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
fi
if [[ "$scheme" == '-Everforest' ]]; then
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
case "$theme" in
'')
theme_color_dark='#458588'
theme_color_light='#83a598'
;;
-Purple)
theme_color_dark='#ab62b1'
theme_color_light='#d386cd'
;;
-Pink)
theme_color_dark='#b16286'
theme_color_light='#d3869b'
;;
-Red)
theme_color_dark='#cc241d'
theme_color_light='#fb4934'
;;
-Orange)
theme_color_dark='#d65d0e'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#d79921'
theme_color_light='#fabd2f'
;;
-Green)
theme_color_dark='#98971a'
theme_color_light='#b8bb26'
;;
-Teal)
theme_color_dark='#689d6a'
theme_color_light='#8ec07c'
;;
-Grey)
theme_color_dark='#3c3836'
theme_color_light='#a89984'
;;
esac
fi
if [[ "$scheme" == '-Catppuccin' ]]; then
case "$theme" in
'')
theme_color_dark='#1e66f5'
theme_color_light='#8caaee'
;;
-Purple)
theme_color_dark='#8839ef'
theme_color_light='#ca9ee6'
;;
-Pink)
theme_color_dark='#ea76cb'
theme_color_light='#f4b8e4'
;;
-Red)
theme_color_dark='#e64553'
theme_color_light='#ea999c'
;;
-Orange)
theme_color_dark='#fe640b'
theme_color_light='#fe8019'
;;
-Yellow)
theme_color_dark='#df8e1d'
theme_color_light='#ef9f76'
;;
-Green)
theme_color_dark='#40a02b'
theme_color_light='#a6d189'
;;
-Teal)
theme_color_dark='#179299'
theme_color_light='#81c8be'
;;
-Grey)
theme_color_dark='#5c5f77'
theme_color_light='#ccd0da'
;;
esac
fi
if [[ "$blackness" == 'true' ]]; then
@@ -258,6 +299,14 @@ make_gtkrc() {
titlebar_light='#f2efdf'
titlebar_dark='#020203'
;;
-Catppuccin)
background_light='#eff1f5'
background_dark='#181825'
background_darker='#1e1e2e'
background_alt='#232634'
titlebar_light='#e6e9ef'
titlebar_dark='#11111b'
;;
esac
else
case "$scheme" in
@@ -294,12 +343,20 @@ make_gtkrc() {
titlebar_dark='#242220'
;;
-Everforest)
background_light='#fffbef'
background_dark='#232A2E'
background_darker='#343F44'
background_alt='#3D484D'
titlebar_light='#edeada'
titlebar_dark='#1e2326'
background_light='#fdf6e3'
background_dark='#2d353b'
background_darker='#343f44'
background_alt='#414b50'
titlebar_light='#f4f0d9'
titlebar_dark='#272e33'
;;
-Catppuccin)
background_light='#eff1f5'
background_dark='#292c3c'
background_darker='#303446'
background_alt='#4c4f69'
titlebar_light='#e6e9ef'
titlebar_dark='#24273a'
;;
esac
fi

View File

@@ -25,7 +25,7 @@ SASSC_OPT="-M -t expanded"
THEME_NAME=Colloid
THEME_VARIANTS=('' '-Purple' '-Pink' '-Red' '-Orange' '-Yellow' '-Green' '-Teal' '-Grey')
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox' '-Everforest')
SCHEME_VARIANTS=('' '-Nord' '-Dracula' '-Gruvbox' '-Everforest' '-Catppuccin')
COLOR_VARIANTS=('' '-Light' '-Dark')
SIZE_VARIANTS=('' '-Compact')
@@ -64,13 +64,13 @@ OPTIONS:
-s, --size VARIANT Specify size variant [standard|compact] (Default: standard variant)
-l, --libadwaita Install specify gtk-4.0 theme into config folder ($HOME/.config/gtk-4.0) for all gtk4 apps use this theme
Default ColorSchemes theme will follow the system style (light/dark mode switch), nord|dracula|gruvbox|everforest|black ColorSchemes not support this
Default ColorSchemes theme will follow the system style (light/dark mode switch), all ColorSchemes versions not support this !
Options for default ColorSchemes:
1. system Default option (using system colors for light/dark mode switching)
2. fixed Using fixed theme colors (that will break light/dark mode switch)
--tweaks Specify versions for tweaks
1. [nord|dracula|gruvbox|everforest|all] Nord|Dracula|gruvbox|everforet|all ColorSchemes version
1. [nord|dracula|gruvbox|everforest|catppuccin|all] (Nord/Dracula/Gruvbox/Everforet/Catppuccin/all) ColorSchemes version
2. black Blackness color version
3. rimless Remove the 1px border about windows and menus
4. normal Normal windows button style like gnome default theme (titlebuttons: max/min/close)
@@ -142,12 +142,12 @@ install() {
cd "${THEME_DIR}/metacity-1" && ln -sf metacity-theme-3.xml metacity-theme-1.xml && ln -sf metacity-theme-3.xml metacity-theme-2.xml
mkdir -p "${THEME_DIR}/xfwm4"
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}/xfwm4/themerc"
cp -r "${SRC_DIR}/main/xfwm4/themerc" "${THEME_DIR}/xfwm4/themerc"
mkdir -p "${THEME_DIR}-hdpi/xfwm4"
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}-hdpi/xfwm4/themerc"
cp -r "${SRC_DIR}/main/xfwm4/themerc" "${THEME_DIR}-hdpi/xfwm4/themerc"
sed -i "s/button_offset=6/button_offset=9/" "${THEME_DIR}-hdpi/xfwm4/themerc"
mkdir -p "${THEME_DIR}-xhdpi/xfwm4"
cp -r "${SRC_DIR}/main/xfwm4/themerc${ELSE_LIGHT:-}" "${THEME_DIR}-xhdpi/xfwm4/themerc"
cp -r "${SRC_DIR}/main/xfwm4/themerc" "${THEME_DIR}-xhdpi/xfwm4/themerc"
sed -i "s/button_offset=6/button_offset=12/" "${THEME_DIR}-xhdpi/xfwm4/themerc"
mkdir -p "${THEME_DIR}/plank"
@@ -345,6 +345,12 @@ while [[ $# -gt 0 ]]; do
echo -e "\nEverforest ColorScheme version! ..."
shift
;;
catppuccin)
colorscheme='true'
schemes+=("${SCHEME_VARIANTS[5]}")
echo -e "\nCatppuccin ColorScheme version! ..."
shift
;;
all)
colorscheme='true'
schemes+=("${SCHEME_VARIANTS[@]}")
@@ -462,6 +468,9 @@ color_schemes() {
-Everforest)
scheme_color='everforest'
;;
-Catppuccin)
scheme_color='catppuccin'
;;
esac
sed -i "/\@import/s/color-palette-default/color-palette-${scheme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"
sed -i "/\$colorscheme:/s/default/${scheme_color}/" "${SRC_DIR}/sass/_tweaks-temp.scss"

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 409 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 455 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 433 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 476 B

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 423 B

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 529 B

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 B

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 370 B

After

Width:  |  Height:  |  Size: 371 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 B

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 518 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 465 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Some files were not shown because too many files have changed in this diff Show More