Closed robinzt closed 4 years ago
Fix issue #70
In the file "src/theme-script.sh", according the comment:
#Addition for 20.04 - new purple color is $aubergine = #924D8B!
purple color #924D8B should be replaced by "$purple_col". But the actual code is using "$base_col":
sed -i -e "s/924D8B/$base_col/g" $source32_path/_palette.scss
It should be "$purple_col":
sed -i -e "s/924D8B/$purple_col/g" $source32_path/_palette.scss
So I patched the "src/theme-script.sh".
Fix issue #70
In the file "src/theme-script.sh", according the comment:
purple color #924D8B should be replaced by "$purple_col". But the actual code is using "$base_col":
It should be "$purple_col":
So I patched the "src/theme-script.sh".