restructure

This commit is contained in:
twoneis 2024-07-02 03:01:43 +02:00
parent 20b2af86d7
commit 8cf8c5609d
26 changed files with 265 additions and 283 deletions

View file

@ -0,0 +1,11 @@
{ lib, config, ... }: {
colors = with lib; with strings; {
background = concatStrings [ config.theme.base "ee" ];
text = concatStrings [ config.theme.text "ff" ];
match = concatStrings [ config.theme.gold "ff" ];
selection = concatStrings [ config.theme.highlight-med "ee" ];
selection-text = concatStrings [ config.theme.text "ff" ];
selection-match = concatStrings [ config.theme.gold "ff" ];
border = concatStrings [ config.theme.overlay "ff" ];
};
}