Jannomag / Yaru-Colors

A fork of Ubuntu's Yaru theme - in different colors
GNU General Public License v3.0
512 stars 42 forks source link

Fix: PURPLE Color should be used, not ORANGE(Base) Color #71

Closed robinzt closed 4 years ago

robinzt commented 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".