initial commit

This commit is contained in:
daniel fusser
2026-06-21 15:35:58 +02:00
committed by dafu
parent ce5bbf3916
commit 49462fb909
49 changed files with 2269 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
/* widget text/foreground color */
@define-color theme_fg_color #d8dee9;
/* text color for entries, views and content in general */
@define-color theme_text_color #d8dee9;
/* widget base background color */
@define-color theme_bg_color #434c5e;
/* text widgets and the like base background color */
@define-color theme_base_color #3b4252;
/* base background color of selections */
@define-color theme_selected_bg_color #8fbcbb;
/* text/foreground color of selections */
@define-color theme_selected_fg_color #fff;
/* base background color of disabled widgets */
@define-color insensitive_bg_color #404859;
/* text foreground color of disabled widgets */
@define-color insensitive_fg_color #8e95a4;
/* disabled text widgets and the like base background color */
@define-color insensitive_base_color #3b4252;
/* widget text/foreground color on backdrop windows */
@define-color theme_unfocused_fg_color #8e95a4;
/* text color for entries, views and content in general on backdrop windows */
@define-color theme_unfocused_text_color #d8dee9;
/* widget base background color on backdrop windows */
@define-color theme_unfocused_bg_color #434c5e;
/* text widgets and the like base background color on backdrop windows */
@define-color theme_unfocused_base_color #3d4455;
/* base background color of selections on backdrop windows */
@define-color theme_unfocused_selected_bg_color #8fbcbb;
/* text/foreground color of selections on backdrop windows */
@define-color theme_unfocused_selected_fg_color #2e3440;
/* widgets main borders color */
@define-color borders #232831;
/* widgets main borders color on backdrop windows */
@define-color unfocused_borders #262c36;
/* these are pretty self explicative */
@define-color warning_color #c3674a;
@define-color error_color #b84f59;
@define-color success_color #49688e;
@define-color fg_color #d8dee9;
@define-color text_color #d8dee9;
@define-color bg_color #434c5e;
@define-color base_color #3b4252;
@define-color selected_bg_color #8fbcbb;
@define-color selected_fg_color #fff;
@define-color unfocused_fg_color #8e95a4;
@define-color unfocused_text_color #d8dee9;
@define-color unfocused_bg_color #434c5e;
@define-color unfocused_base_color #3d4455;
@define-color unfocused_selected_bg_color #8fbcbb;
@define-color unfocused_selected_fg_color #2e3440;