mirror of
https://github.com/eRgo35/dots.git
synced 2025-12-16 23:46:13 +01:00
102 lines
2.5 KiB
C
102 lines
2.5 KiB
C
/* Choose where to apply light/dark mode */
|
|
#define PYWAL 1
|
|
#define EMACS 1
|
|
#define DWM 1
|
|
#define GTK 1
|
|
|
|
/* Auto light/dark settings */
|
|
#define LIGHT_LOW_TRESH 60
|
|
#define LIGHT_HIGH_TRESH 70
|
|
#define REFRESH_TIME 5
|
|
|
|
/* Light color scheme */
|
|
#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 "latte"
|
|
|
|
#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 "Catppuccin-Latte-Standard-Blue-light"
|
|
|
|
|
|
/* Dark color scheme */
|
|
#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 "macchiato"
|
|
|
|
#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 "Catppuccin-Macchiato-Standard-Blue-dark"
|