aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-12-20 06:46:10 +0100
committerPřemysl Eric Janouch <p@janouch.name>2021-12-20 07:22:24 +0100
commit1221325b3e2018e14f098f21b9851e97e931d835 (patch)
tree243fd7c6d66cde89c0685d95e01ab4da5255b344
parentc3eb5ca170aea15e2fe6e3ef5482f72ea61bd7db (diff)
downloadfiv-1221325b3e2018e14f098f21b9851e97e931d835.tar.gz
fiv-1221325b3e2018e14f098f21b9851e97e931d835.tar.xz
fiv-1221325b3e2018e14f098f21b9851e97e931d835.zip
Stop forcing a dark theme variant
And make it so that both Adwaita variants look okay.
-rw-r--r--fastiv.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/fastiv.c b/fastiv.c
index 8c797c7..6d13def 100644
--- a/fastiv.c
+++ b/fastiv.c
@@ -972,7 +972,8 @@ main(int argc, char *argv[])
// This is incredibly broken https://stackoverflow.com/a/51054396/76313
// thus resolving the problem using overlaps.
- const char *style = "@define-color fiv-tile #3c3c3c; \
+ // We're trying to be universal for light and dark themes both. It's hard.
+ const char *style = "@define-color fiv-tile @content_view_bg; \
fiv-view, fiv-browser { background: @content_view_bg; } \
placessidebar.fiv .toolbar { padding: 2px 6px; } \
placessidebar.fiv box > separator { margin: 4px 0; } \
@@ -985,9 +986,8 @@ main(int argc, char *argv[])
} \
fiv-browser { padding: 5px; } \
fiv-browser.item { \
- border: 1px solid rgba(255, 255, 255, 0.375); \
- margin: 10px; color: #000; \
- background: #333; \
+ color: mix(#000, @content_view_bg, 0.625); margin: 8px; \
+ border: 2px solid #fff; background: @theme_bg_color; \
background-image: \
linear-gradient(45deg, @fiv-tile 26%, transparent 26%), \
linear-gradient(-45deg, @fiv-tile 26%, transparent 26%), \
@@ -996,8 +996,12 @@ main(int argc, char *argv[])
background-size: 40px 40px; \
background-position: 0 0, 0 20px, 20px -20px, -20px 0px; \
} \
+ fiv-browser.item:backdrop { \
+ color: mix(#000, @content_view_bg, 0.875); \
+ border-color: mix(#fff, @content_view_bg, 0.5); \
+ } \
fiv-browser.item.symbolic { \
- border-color: transparent; color: @content_view_bg; \
+ border-color: transparent; color: shade(@theme_bg_color, 0.875); \
background: @theme_bg_color; background-image: none; \
}";
@@ -1015,10 +1019,6 @@ main(int argc, char *argv[])
G_CALLBACK(on_button_press_view), NULL);
gtk_container_add(GTK_CONTAINER(view_scroller), g.view);
- // TODO(p): Base most colours on the theme, and make this configurable.
- g_object_set(gtk_settings_get_default(),
- "gtk-application-prefer-dark-theme", TRUE, NULL);
-
// Need to put the toolbar at the top, because of the horizontal scrollbar.
g.view_box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
GtkWidget *view_toolbar = make_view_toolbar();