Update libadwaita color values for GNOME 48#20
Conversation
|
Oh it seems there are some extra values in |
|
@yioannides thanks a lot for your efforts on this maybe it would be better to fetch the file directly from here https://gitlab.gnome.org/GNOME/libadwaita/-/blob/main/src/stylesheet/_colors.scss |
|
How about now? I should disclaim I had to use an AI assistant this time around to go through all the values, as they were too many to go through manually like I did before, so I would appreciate it if you could confirm these work! |
|
Processing all the colors by hand is a lot of effort. |
|
I think that would be the best thing to do, considering |
|
How about this? #!/usr/bin/env bash
curl -s https://gitlab.gnome.org/GNOME/libadwaita/-/raw/main/src/stylesheet/_colors.scss \
| sed -E 's/--([a-zA-Z0-9_-]+)/--adwaita-\1/g' \
> adwaita_colors_test.scssIt basically changes all the |
|
@birneee Do you want me to PR a shell script for the commands above and you can do the rest? (not sure how to do the CSS part) |
Closes #18 ~
I edited the light/dark theme values in
srcbased on a recent CSS update commit I did for thunderbird-gnome-theme, but please feel free to edit this PR as you see fit.