diff options
Diffstat (limited to '.config/wallust')
| -rw-r--r-- | .config/wallust/templates/mako | 19 | ||||
| -rw-r--r-- | .config/wallust/templates/vis-theme.lua | 38 | ||||
| -rw-r--r-- | .config/wallust/wallust.toml | 2 |
3 files changed, 59 insertions, 0 deletions
diff --git a/.config/wallust/templates/mako b/.config/wallust/templates/mako new file mode 100644 index 0000000..390b1c1 --- /dev/null +++ b/.config/wallust/templates/mako @@ -0,0 +1,19 @@ +# Generated by wallust from your system color scheme. Do not edit by hand. +# Source of truth: wallust/.config/wallust/templates/mako + +background-color={{background}} +text-color={{foreground}} +border-color={{color4}} +progress-color=over {{color6}} + +[urgency=low] +border-color={{color4}} + +[urgency=normal] +border-color={{color4}} + +[urgency=critical] +background-color={{color1}} +text-color={{foreground}} +border-color={{color1}} +progress-color=over {{color1}} diff --git a/.config/wallust/templates/vis-theme.lua b/.config/wallust/templates/vis-theme.lua new file mode 100644 index 0000000..9fc9900 --- /dev/null +++ b/.config/wallust/templates/vis-theme.lua @@ -0,0 +1,38 @@ +-- Generated by wallust from your system color scheme. Do not edit by hand. +-- Source of truth: wallust/.config/wallust/templates/vis-theme.lua +local lexers = vis.lexers + +lexers.STYLE_DEFAULT = 'fore:{{foreground}},back:{{background}}' +lexers.STYLE_NOTHING = '' +lexers.STYLE_CLASS = 'fore:{{color6}}' +lexers.STYLE_COMMENT = 'fore:{{color8}},italics' +lexers.STYLE_CONSTANT = 'fore:{{color13}}' +lexers.STYLE_DEFINITION = 'fore:{{color3}}' +lexers.STYLE_ERROR = 'fore:{{color1}},bold' +lexers.STYLE_FUNCTION = 'fore:{{color4}}' +lexers.STYLE_KEYWORD = 'fore:{{color5}},bold' +lexers.STYLE_LABEL = 'fore:{{color4}}' +lexers.STYLE_NUMBER = 'fore:{{color1}}' +lexers.STYLE_OPERATOR = 'fore:{{color6}}' +lexers.STYLE_REGEX = 'fore:{{color2}}' +lexers.STYLE_STRING = 'fore:{{color2}}' +lexers.STYLE_PREPROCESSOR = 'fore:{{color5}},bold' +lexers.STYLE_TAG = 'fore:{{color1}},bold' +lexers.STYLE_TYPE = 'fore:{{color3}},bold' +lexers.STYLE_VARIABLE = 'fore:{{foreground}}' +lexers.STYLE_WHITESPACE = '' +lexers.STYLE_EMBEDDED = 'fore:{{color13}}' +lexers.STYLE_IDENTIFIER = '' + +lexers.STYLE_LINENUMBER = 'fore:{{color8}}' +lexers.STYLE_LINENUMBER_CURSOR = 'fore:{{color8}}' +lexers.STYLE_CURSOR = 'back:{{color4}}' +lexers.STYLE_CURSOR_PRIMARY = 'fore:{{background}},back:{{color6}},bold' +lexers.STYLE_CURSOR_LINE = 'back:{{color0}}' +lexers.STYLE_COLOR_COLUMN = 'back:{{color0}}' +lexers.STYLE_SELECTION = 'back:{{color4}}' +lexers.STYLE_STATUS = 'back:{{color0}},fore:{{foreground}}' +lexers.STYLE_STATUS_FOCUSED = 'back:{{color0}},fore:{{color6}},bold' +lexers.STYLE_SEPARATOR = '' +lexers.STYLE_INFO = 'bold' +lexers.STYLE_EOF = 'fore:{{color8}}' diff --git a/.config/wallust/wallust.toml b/.config/wallust/wallust.toml index d1e8925..2d8d618 100644 --- a/.config/wallust/wallust.toml +++ b/.config/wallust/wallust.toml @@ -5,6 +5,8 @@ nvim = { template = "nvim.lua", target = "~/.cache/wallust/colors/wallust.lua" } foottheme = { template = "foot-colors-custom.ini", target = "~/.cache/wallust/foot-theme.ini" } vicinae_dark = { template = "vicinae-dark.toml", target = "~/.cache/wallust/vicinae-dark.toml" } vicinae_light = { template = "vicinae-light.toml", target = "~/.cache/wallust/vicinae-light.toml" } +mako = { template = "mako", target = "~/.cache/wallust/mako" } +vis = { template = "vis-theme.lua", target = "~/.cache/wallust/vis-theme.lua" } [hooks] strip_foot_hash = "sed -i '/^[^#]/s/#//g' ~/.cache/wallust/foot-theme.ini" |
