diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-09-08 17:04:31 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-09-08 17:04:57 +0200 |
commit | da2988c4356d2756e86037b1c7e859f49583c109 (patch) | |
tree | 73ca076fa1a0f46fa3e3f1e6016d7bf479113491 /themes | |
parent | 24b0ed2ae8a0d52ceee647e34a943213e9d3bc89 (diff) |
Load theme from file (~/.config/quickmedia/themes/<theme-name>.json and /usr/share/quickmedia/themes/<theme-name>.json)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/default.json | 25 | ||||
-rw-r--r-- | themes/nord.json | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/themes/default.json b/themes/default.json new file mode 100644 index 0000000..ad028a9 --- /dev/null +++ b/themes/default.json @@ -0,0 +1,25 @@ +{ + "background_color": "#12151a", + "text_color": "#ffffff", + "faded_text_color": "#ffffffb3", + "shade_color": "#1c2027", + "selected_color": "#373c44", + "card_item_background_color": "#1c2027", + "replies_text_color": "#81a2be", + "placeholder_text_color": "#ffffff64", + "image_loading_background_color": "#343a46", + "attention_alert_text_color": "#ff6464", + "cancel_button_background_color": "#292d32", + "confirm_button_background_color": "#1f75ff", + "loading_bar_color": "#1f75ff", + "embedded_item_border_color": "#ffffff", + "provisional_message_color": "#ffffff96", + "failed_text_color": "#ff0000", + "timestamp_text_color": "#b9bec664", + "new_items_alert_color": "#803232", + "arrow_color": "#ffffffaf", + "url_text_color": "#238cf5", + "loading_page_color": "#afb4bc", + "more_items_color": "#96afff64", + "drop_shadow": false +}
\ No newline at end of file diff --git a/themes/nord.json b/themes/nord.json new file mode 100644 index 0000000..c82bd86 --- /dev/null +++ b/themes/nord.json @@ -0,0 +1,25 @@ +{ + "background_color": "#2e3440", + "text_color": "#eceff4", + "faded_text_color": "#e5e9f0", + "shade_color": "#434c5e", + "selected_color": "#3b4252", + "card_item_background_color": "#4c566a", + "replies_text_color": "#88c0d0", + "placeholder_text_color": "#eceff4", + "image_loading_background_color": "#d8dee9", + "attention_alert_text_color": "#bf616a", + "cancel_button_background_color": "#e5e9f0", + "confirm_button_background_color": "#e5e9f0", + "loading_bar_color": "#88c0d0", + "embedded_item_border_color": "#d8dee9", + "provisional_message_color": "#eceff4", + "failed_text_color": "#bf616a", + "timestamp_text_color": "#4c566a", + "new_items_alert_color": "#ebcb8b", + "arrow_color": "#eceff4", + "url_text_color": "#88c0d0", + "loading_page_color": "#e5e9f0", + "more_items_color": "#96afff64", + "drop_shadow": false +}
\ No newline at end of file |