
So the idea here is that the themes are only different based on the variables for the theme files. So this will change the theme variables to have `local` prefixes to keep the namespace regular. I decided to keep this like this until I get more feedback, because I think I could also just manually add the local to everything in the old `tmuxtheme` files. I chose this though because I really like how the `catppuccin-selected-theme` can be used for local debugging or testing out new colors if things were ever to need to be changed. If what that `sed` and `source` command is doing is unclear, I can do better about commenting around it.
17 lines
425 B
Text
17 lines
425 B
Text
# NOTE: you can use vars with $<var> and ${<var>} as long as the str is double quoted: ""
|
|
# WARNING: hex colors can't contain capital letters
|
|
|
|
# --> Catppuccin (Macchiato)
|
|
thm_bg="#24273a"
|
|
thm_fg="#cad3f5"
|
|
thm_cyan="#91d7e3"
|
|
thm_black="#1e2030"
|
|
thm_gray="#363a4f"
|
|
thm_magenta="#c6a0f6"
|
|
thm_pink="#f5bde6"
|
|
thm_red="#ed8796"
|
|
thm_green="#a6da95"
|
|
thm_yellow="#eed49f"
|
|
thm_blue="#8aadf4"
|
|
thm_orange="#f5a97f"
|
|
thm_black4="#5b6078"
|