mirror of
https://github.com/eRgo35/dots.git
synced 2025-12-16 23:46:13 +01:00
dusk changes when the time changes
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
/* Choose where to apply light/dark mode */
|
||||
#define PYWAL 1
|
||||
#define EMACS 0
|
||||
#define DWM 0
|
||||
#define GTK 0
|
||||
#define EMACS 1
|
||||
#define DWM 1
|
||||
#define GTK 1
|
||||
|
||||
/* Auto light/dark settings */
|
||||
#define LIGHT_LOW_TRESH 60
|
||||
@@ -10,80 +10,92 @@
|
||||
#define REFRESH_TIME 5
|
||||
|
||||
/* Light color scheme */
|
||||
#define LFG "#3c3836"
|
||||
#define LBG "#fbf1c7"
|
||||
#define LCURSOR LFG
|
||||
#define LCONTRAST "#d65d0e"
|
||||
#define LBLACK1 LFG
|
||||
#define LBLACK2 DBG
|
||||
#define LRED1 "#cc241d"
|
||||
#define LRED2 "#9d0006"
|
||||
#define LGREEN1 "#98971a"
|
||||
#define LGREEN2 "#79740e"
|
||||
#define LYELLOW1 "#d79921"
|
||||
#define LYELLOW2 "#b57614"
|
||||
#define LBLUE1 "#458588"
|
||||
#define LBLUE2 "#076678"
|
||||
#define LMAGENTA1 "#b16286"
|
||||
#define LMAGENTA2 "#8f3f71"
|
||||
#define LCYAN1 "#689d6a"
|
||||
#define LCYAN2 "#427b58"
|
||||
#define LWHITE1 LBG
|
||||
#define LWHITE2 DFG
|
||||
#define LROSEWATER "#dc8a78"
|
||||
#define LFLAMINGO "#dd7878"
|
||||
#define LPINK "#ea76cb"
|
||||
#define LMAUVE "#8839ef"
|
||||
#define LRED "#d20f39"
|
||||
#define LMAROON "#e64553"
|
||||
#define LPEACH "#fe640b"
|
||||
#define LYELLOW "#df8e1d"
|
||||
#define LGREEN "#40a02b"
|
||||
#define LTEAL "#179299"
|
||||
#define LSKY "#04a5e5"
|
||||
#define LSAPPHIRE "#209fb5"
|
||||
#define LBLUE "#1e66f5"
|
||||
#define LLAVENDER "#7287fd"
|
||||
#define LTEXT "#4c4f69"
|
||||
#define LSUBTEXT1 "#5c5f77"
|
||||
#define LSUBTEXT0 "#6c6f85"
|
||||
#define LOVERLAY2 "#7c7f93"
|
||||
#define LOVERLAY1 "#8c8fa1"
|
||||
#define LOVERLAY0 "#9ca0b0"
|
||||
#define LSURFACE2 "#acb0be"
|
||||
#define LSURFACE1 "#bcc0cc"
|
||||
#define LSURFACE0 "#ccd0da"
|
||||
#define LBASE "#eff1f5"
|
||||
#define LMANTLE "#e6e9ef"
|
||||
#define LCRUST "#dce0e8"
|
||||
|
||||
#define LEMACS "gruvbox-light-medium"
|
||||
#define LEMACS "latte"
|
||||
|
||||
#define LDWMTEXTBG LBG
|
||||
#define LDWMTEXTFG LFG
|
||||
#define LDWMBORDER LWHITE2
|
||||
#define LDWMBORDERSEL LCONTRAST
|
||||
#define LDWMTAGBG LCONTRAST
|
||||
#define LDWMTAGFG LBG
|
||||
#define LDWMTAGSELBG LBLUE1
|
||||
#define LDWMTAGSELFG LBG
|
||||
#define LDWMTITLEBG LBG
|
||||
#define LDWMTITLEFG LCONTRAST
|
||||
#define LDWMTITLESELBG LCONTRAST
|
||||
#define LDWMTITLESELFG LBG
|
||||
#define LDWMTEXTBG LBASE
|
||||
#define LDWMTEXTFG LTEXT
|
||||
#define LDWMBORDER LSURFACE1
|
||||
#define LDWMBORDERSEL LMAROON
|
||||
#define LDWMTAGBG LBASE
|
||||
#define LDWMTAGFG LTEXT
|
||||
#define LDWMTAGSELBG LCRUST
|
||||
#define LDWMTAGSELFG LGREEN
|
||||
#define LDWMTITLEBG LBASE
|
||||
#define LDWMTITLEFG LTEXT
|
||||
#define LDWMTITLESELBG LSURFACE0
|
||||
#define LDWMTITLESELFG LGREEN
|
||||
|
||||
#define LGTKTHEME "Gruvbox-light"
|
||||
#define LGTKTHEME "Catppuccin-Latte-Standard-Blue-light"
|
||||
|
||||
|
||||
/* Dark color scheme */
|
||||
#define DFG "#ebdbb2"
|
||||
#define DBG "#282828"
|
||||
#define DCURSOR DFG
|
||||
#define DCONTRAST "#d65d0e"
|
||||
#define DBLACK1 DBG
|
||||
#define DBLACK2 LFG
|
||||
#define DRED1 LRED1
|
||||
#define DRED2 "#fb4934"
|
||||
#define DGREEN1 LGREEN1
|
||||
#define DGREEN2 "#b8bb26"
|
||||
#define DYELLOW1 LYELLOW1
|
||||
#define DYELLOW2 "#fabd2f"
|
||||
#define DBLUE1 LBLUE1
|
||||
#define DBLUE2 "#83a598"
|
||||
#define DMAGENTA1 LMAGENTA1
|
||||
#define DMAGENTA2 "#d3869b"
|
||||
#define DCYAN1 LCYAN1
|
||||
#define DCYAN2 "#8ec07c"
|
||||
#define DWHITE1 DFG
|
||||
#define DWHITE2 LBG
|
||||
#define DROSEWATER "#f4dbd6"
|
||||
#define DFLAMINGO "#f0c6c6"
|
||||
#define DPINK "#f5bde6"
|
||||
#define DMAUVE "#c6a0f6"
|
||||
#define DRED "#ed8796"
|
||||
#define DMAROON "#ee99a0"
|
||||
#define DPEACH "#f5a97f"
|
||||
#define DYELLOW "#eed49f"
|
||||
#define DGREEN "#a6da95"
|
||||
#define DTEAL "#8bd5ca"
|
||||
#define DSKY "#91d7e3"
|
||||
#define DSAPPHIRE "#7dc4e4"
|
||||
#define DBLUE "#8aadf4"
|
||||
#define DLAVENDER "#b7bdf8"
|
||||
#define DTEXT "#cad3f5"
|
||||
#define DSUBTEXT1 "#b8c0e0"
|
||||
#define DSUBTEXT0 "#a5adcb"
|
||||
#define DOVERLAY2 "#939ab7"
|
||||
#define DOVERLAY1 "#8087a2"
|
||||
#define DOVERLAY0 "#6e738d"
|
||||
#define DSURFACE2 "#5b6078"
|
||||
#define DSURFACE1 "#494d64"
|
||||
#define DSURFACE0 "#363a4f"
|
||||
#define DBASE "#24273a"
|
||||
#define DMANTLE "#1e2030"
|
||||
#define DCRUST "#181926"
|
||||
|
||||
#define DEMACS "gruvbox-dark-medium"
|
||||
#define DEMACS "macchiato"
|
||||
|
||||
#define DDWMTEXTBG DBG
|
||||
#define DDWMTEXTFG DFG
|
||||
#define DDWMBORDER DBLACK2
|
||||
#define DDWMBORDERSEL DCONTRAST
|
||||
#define DDWMTAGBG DCONTRAST
|
||||
#define DDWMTAGFG DFG
|
||||
#define DDWMTAGSELBG DBLUE1
|
||||
#define DDWMTAGSELFG DFG
|
||||
#define DDWMTITLEBG DBG
|
||||
#define DDWMTITLEFG DCONTRAST
|
||||
#define DDWMTITLESELBG DCONTRAST
|
||||
#define DDWMTITLESELFG DFG
|
||||
#define DDWMTEXTBG DBASE
|
||||
#define DDWMTEXTFG DTEXT
|
||||
#define DDWMBORDER DSURFACE1
|
||||
#define DDWMBORDERSEL DMAROON
|
||||
#define DDWMTAGBG DBASE
|
||||
#define DDWMTAGFG DTEXT
|
||||
#define DDWMTAGSELBG DCRUST
|
||||
#define DDWMTAGSELFG DGREEN
|
||||
#define DDWMTITLEBG DBASE
|
||||
#define DDWMTITLEFG DTEXT
|
||||
#define DDWMTITLESELBG DSURFACE0
|
||||
#define DDWMTITLESELFG DGREEN
|
||||
|
||||
#define DGTKTHEME "Gruvbox-dark"
|
||||
#define DGTKTHEME "Catppuccin-Macchiato-Standard-Blue-dark"
|
||||
|
||||
Reference in New Issue
Block a user