add more usage details to README, add symconf templates
This commit is contained in:
		
							parent
							
								
									7ffd5c3923
								
							
						
					
					
						commit
						f55cf04d4a
					
				
							
								
								
									
										95
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										95
									
								
								README.md
									
									
									
									
									
								
							@ -74,19 +74,108 @@ Read more about how themes are created in [DESIGN](DESIGN.md).
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Usage
 | 
					# Usage
 | 
				
			||||||
This repo provides the 24 theme files for `kitty`, `vim`/`neovim`, [`vim-airline`][2], and
 | 
					This repo provides the 24 theme files for `kitty`, `vim`/`neovim`, [`vim-airline`][2], and
 | 
				
			||||||
`fzf`. We also provide the raw palette colors if you want to use them to define themes for
 | 
					`fzf` in the `apps/` directory. You can also find raw palette colors in
 | 
				
			||||||
other applications.
 | 
					`colors/monobiome.toml` if you want to use them to define themes for other applications.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Each of the files in the `apps/` directory are named according to
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```sh
 | 
				
			||||||
 | 
					<harshness>-<biome>-monobiome-<mode>.<config>
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					For example, `soft-tundra-monobiome-dark.vim` is the Vim theme file for the dark `tundra`
 | 
				
			||||||
 | 
					variant with the soft harshness level.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## `kitty`
 | 
					## `kitty`
 | 
				
			||||||
 | 
					Find `kitty` themes in `apps/kitty`. Themes can be activated in your `kitty.conf` with
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```sh
 | 
				
			||||||
 | 
					include <theme-file>
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## `vim`/`neovim`
 | 
					## `vim`/`neovim`
 | 
				
			||||||
 | 
					Find `vim`/`neovim` themes in `apps/nvim`. Themes can be activated by placing a theme file
 | 
				
			||||||
 | 
					on Vim's runtime path and setting it in your `.vimrc`/`init.vim` with
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```sh
 | 
				
			||||||
 | 
					colorscheme <theme-name>
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## `vim-airline`
 | 
					## `vim-airline`
 | 
				
			||||||
 | 
					If you use [`vim-airline`][2], you can find statusline themes in `apps/vim-airline`.
 | 
				
			||||||
 | 
					Place a theme file in the `airline` theme folder, and activate it in
 | 
				
			||||||
 | 
					your `.vimrc`/`init.vim` with
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```sh
 | 
				
			||||||
 | 
					let g:airline_theme='<theme-name>'
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## `fzf`
 | 
					## `fzf`
 | 
				
			||||||
 | 
					In `apps/fzf`, you can find scripts that can be ran to export FZF theme variables. In your
 | 
				
			||||||
 | 
					shell config (e.g., `.bashrc` or `.zshrc`), you can source these files to apply them in
 | 
				
			||||||
 | 
					your terminal:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(add `synconf` here)
 | 
					```sh
 | 
				
			||||||
 | 
					source <theme-file>
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Switching themes
 | 
				
			||||||
 | 
					[`symconf`][3] is a general-purpose application config manager that can be used to
 | 
				
			||||||
 | 
					generate all `monobiome` variants from a single palette file, and set themes for all apps
 | 
				
			||||||
 | 
					at once. You can find example theme templates in `apps/symconf` which provide general
 | 
				
			||||||
 | 
					theme variables you can use in your own config templates.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					For instance, in an app like `kitty`, you can define a template like
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```conf
 | 
				
			||||||
 | 
					# base settings
 | 
				
			||||||
 | 
					background           f{{theme.term.background}}
 | 
				
			||||||
 | 
					foreground           f{{theme.term.foreground}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_background f{{theme.term.selection_bg}}
 | 
				
			||||||
 | 
					selection_foreground f{{theme.term.selection_fg}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor               f{{theme.term.cursor}}
 | 
				
			||||||
 | 
					cursor_text_color    f{{theme.term.cursor_text_color}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# black
 | 
				
			||||||
 | 
					color0               f{{theme.term.normal.black}}
 | 
				
			||||||
 | 
					color8               f{{theme.term.bright.black}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# red
 | 
				
			||||||
 | 
					color1               f{{theme.term.normal.red}}
 | 
				
			||||||
 | 
					color9               f{{theme.term.bright.red}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# green
 | 
				
			||||||
 | 
					color2               f{{theme.term.normal.green}}
 | 
				
			||||||
 | 
					color10              f{{theme.term.bright.green}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# yellow
 | 
				
			||||||
 | 
					color3               f{{theme.term.normal.yellow}}
 | 
				
			||||||
 | 
					color11              f{{theme.term.bright.yellow}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# blue
 | 
				
			||||||
 | 
					color4               f{{theme.term.normal.blue}}
 | 
				
			||||||
 | 
					color12              f{{theme.term.bright.blue}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# purple (red)
 | 
				
			||||||
 | 
					color5               f{{theme.term.normal.purple}}
 | 
				
			||||||
 | 
					color13              f{{theme.term.bright.purple}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# cyan (blue)
 | 
				
			||||||
 | 
					color6               f{{theme.term.normal.cyan}}
 | 
				
			||||||
 | 
					color14              f{{theme.term.bright.cyan}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## white
 | 
				
			||||||
 | 
					color7               f{{theme.term.normal.white}}
 | 
				
			||||||
 | 
					color15              f{{theme.term.bright.white}}
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					and use `symconf` to dynamically fill these variables based on a selected
 | 
				
			||||||
 | 
					biome/harshness/mode. This can be done for any app config file.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[1]: https://github.com/isa/TextMate-Themes/blob/master/monoindustrial.tmTheme
 | 
					[1]: https://github.com/isa/TextMate-Themes/blob/master/monoindustrial.tmTheme
 | 
				
			||||||
[2]: https://github.com/vim-airline/vim-airline
 | 
					[2]: https://github.com/vim-airline/vim-airline
 | 
				
			||||||
 | 
					[3]: https://github.com/ologio/symconf
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										72
									
								
								apps/symconf/grassland-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/grassland-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{grassland.l20}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l25}}"
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l30}}"
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l35}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l50}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l70}}"
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l75}}"
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l80}}"
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l85}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{grassland.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{grassland.l90}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{grassland.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{grassland.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{grassland.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{grassland.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l25}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l65}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l65}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l80}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l35}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l75}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l75}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l75}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l75}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l90}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{grassland.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l35}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l40}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l60}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l75}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l85}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l90}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/grassland-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/grassland-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{grassland.l90}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l85}}"
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l80}}"
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l75}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l60}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l40}}"
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l35}}"
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l30}}"
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l25}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{grassland.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{grassland.l20}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{grassland.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{grassland.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{grassland.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{grassland.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l20}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l75}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l30}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l85}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{grassland.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l75}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l70}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l50}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l35}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l25}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l20}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-grassland-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-grassland-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{grassland.l15}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l20}}"
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l25}}"
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l30}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l45}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l65}}"
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l70}}"
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l75}}"
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l80}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{grassland.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{grassland.l85}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{grassland.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{grassland.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{grassland.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{grassland.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l20}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l60}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l60}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l75}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l30}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l85}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{grassland.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l30}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l35}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l55}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l70}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l75}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l80}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l85}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-grassland-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-grassland-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{grassland.l95}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l90}}"
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l85}}"
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l80}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l65}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l45}}"
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l40}}"
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l35}}"
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l30}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{grassland.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{grassland.l25}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{grassland.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{grassland.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{grassland.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{grassland.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l80}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l25}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l90}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l35}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{grassland.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l80}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l75}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l55}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l40}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l35}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l30}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l25}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{default.l15}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{default.l20}}"
 | 
				
			||||||
 | 
					bg2 = "f{{default.l25}}"
 | 
				
			||||||
 | 
					bg3 = "f{{default.l30}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l45}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l65}}"
 | 
				
			||||||
 | 
					fg2 = "f{{default.l70}}"
 | 
				
			||||||
 | 
					fg1 = "f{{default.l75}}"
 | 
				
			||||||
 | 
					fg0 = "f{{default.l80}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{default.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{default.l85}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{default.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{default.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{default.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{default.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{default.l20}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l60}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l60}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l75}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{default.l30}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l85}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{default.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{default.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{default.l30}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{default.l35}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l55}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l70}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{default.l75}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{default.l80}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{default.l85}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{default.l95}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{default.l90}}"
 | 
				
			||||||
 | 
					bg2 = "f{{default.l85}}"
 | 
				
			||||||
 | 
					bg3 = "f{{default.l80}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l65}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l45}}"
 | 
				
			||||||
 | 
					fg2 = "f{{default.l40}}"
 | 
				
			||||||
 | 
					fg1 = "f{{default.l35}}"
 | 
				
			||||||
 | 
					fg0 = "f{{default.l30}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{default.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{default.l25}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{default.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{default.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{default.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{default.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{default.l80}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l25}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{default.l90}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l35}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{default.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{default.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{default.l80}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{default.l75}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l55}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l40}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{default.l35}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{default.l30}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{default.l25}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-savanna-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-savanna-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{savanna.l15}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l20}}"
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l25}}"
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l30}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l45}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l65}}"
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l70}}"
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l75}}"
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l80}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{savanna.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{savanna.l85}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{savanna.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{savanna.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{savanna.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{savanna.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l20}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l60}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l60}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l75}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l30}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l85}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{savanna.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l30}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l35}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l55}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l70}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l75}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l80}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l85}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-savanna-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-savanna-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{savanna.l95}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l90}}"
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l85}}"
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l80}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l65}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l45}}"
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l40}}"
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l35}}"
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l30}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{savanna.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{savanna.l25}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{savanna.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{savanna.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{savanna.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{savanna.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l25}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l80}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l35}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l90}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{savanna.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l80}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l75}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l55}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l40}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l35}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l30}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l25}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-tundra-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-tundra-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{tundra.l15}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l20}}"
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l25}}"
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l30}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l45}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l65}}"
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l70}}"
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l75}}"
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l80}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{tundra.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{tundra.l85}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{tundra.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{tundra.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{tundra.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{tundra.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l20}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l60}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l60}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l75}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l30}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l85}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{tundra.l20}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l25}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l30}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l35}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l55}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l70}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l75}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l80}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l85}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l60}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l60}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l60}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l60}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l60}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l60}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l60}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/hard-tundra-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/hard-tundra-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{tundra.l95}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l90}}"
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l85}}"
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l80}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l65}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l45}}"
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l40}}"
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l35}}"
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l30}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{tundra.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{tundra.l25}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{tundra.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{tundra.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{tundra.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{tundra.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l25}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l80}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l35}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l55}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l55}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l90}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{tundra.l90}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l85}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l80}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l75}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l55}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l40}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l35}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l30}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l25}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l55}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l55}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l55}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l55}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l55}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l55}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l55}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{default.l20}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{default.l25}}"
 | 
				
			||||||
 | 
					bg2 = "f{{default.l30}}"
 | 
				
			||||||
 | 
					bg3 = "f{{default.l35}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l50}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l70}}"
 | 
				
			||||||
 | 
					fg2 = "f{{default.l75}}"
 | 
				
			||||||
 | 
					fg1 = "f{{default.l80}}"
 | 
				
			||||||
 | 
					fg0 = "f{{default.l85}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{default.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{default.l90}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{default.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{default.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{default.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{default.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{default.l25}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l65}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l65}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l80}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{default.l35}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l75}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l75}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l75}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l75}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l90}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{default.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{default.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{default.l35}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{default.l40}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l60}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l75}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{default.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{default.l85}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{default.l90}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{default.l90}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{default.l85}}"
 | 
				
			||||||
 | 
					bg2 = "f{{default.l80}}"
 | 
				
			||||||
 | 
					bg3 = "f{{default.l75}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l60}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l40}}"
 | 
				
			||||||
 | 
					fg2 = "f{{default.l35}}"
 | 
				
			||||||
 | 
					fg1 = "f{{default.l30}}"
 | 
				
			||||||
 | 
					fg0 = "f{{default.l25}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{default.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{default.l20}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{default.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{default.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{default.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{default.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{default.l20}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l75}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{default.l30}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l85}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{default.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{default.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{default.l75}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{default.l70}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l50}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l35}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{default.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{default.l25}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{default.l20}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/savanna-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/savanna-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{savanna.l20}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l25}}"
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l30}}"
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l35}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l50}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l70}}"
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l75}}"
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l80}}"
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l85}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{savanna.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{savanna.l90}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{savanna.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{savanna.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{savanna.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{savanna.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l25}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l65}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l65}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l80}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l35}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l75}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l75}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l75}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l75}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l90}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{savanna.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l35}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l40}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l60}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l75}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l85}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l90}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/savanna-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/savanna-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{savanna.l90}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l85}}"
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l80}}"
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l75}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l60}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l40}}"
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l35}}"
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l30}}"
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l25}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{savanna.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{savanna.l20}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{savanna.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{savanna.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{savanna.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{savanna.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l20}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l75}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l30}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l85}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{savanna.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l75}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l70}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l50}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l35}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l25}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l20}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-grassland-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-grassland-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{grassland.l25}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l30}}"
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l35}}"
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l40}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l55}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l75}}"
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l80}}"
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l85}}"
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l90}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{grassland.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{grassland.l95}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{grassland.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{grassland.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{grassland.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{grassland.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l30}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l85}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l40}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l80}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l80}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l80}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l80}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l95}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{grassland.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l40}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l45}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l65}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l80}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l90}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l95}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-grassland-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-grassland-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{grassland.l85}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l80}}"
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l75}}"
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l55}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l35}}"
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l30}}"
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l25}}"
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l20}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{grassland.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{grassland.l15}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{grassland.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{grassland.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{grassland.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{grassland.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l15}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l70}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{grassland.l25}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{grassland.l80}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{grassland.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{grassland.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{grassland.l70}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{grassland.l65}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{grassland.l45}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{grassland.l30}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{grassland.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{grassland.l20}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{grassland.l15}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{default.l25}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{default.l30}}"
 | 
				
			||||||
 | 
					bg2 = "f{{default.l35}}"
 | 
				
			||||||
 | 
					bg3 = "f{{default.l40}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l55}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l75}}"
 | 
				
			||||||
 | 
					fg2 = "f{{default.l80}}"
 | 
				
			||||||
 | 
					fg1 = "f{{default.l85}}"
 | 
				
			||||||
 | 
					fg0 = "f{{default.l90}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{default.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{default.l95}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{default.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{default.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{default.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{default.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{default.l30}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l85}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{default.l40}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l80}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l80}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l80}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l80}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l95}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{default.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{default.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{default.l40}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{default.l45}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l65}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l80}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{default.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{default.l90}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{default.l95}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{default.l85}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{default.l80}}"
 | 
				
			||||||
 | 
					bg2 = "f{{default.l75}}"
 | 
				
			||||||
 | 
					bg3 = "f{{default.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l55}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l35}}"
 | 
				
			||||||
 | 
					fg2 = "f{{default.l30}}"
 | 
				
			||||||
 | 
					fg1 = "f{{default.l25}}"
 | 
				
			||||||
 | 
					fg0 = "f{{default.l20}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{default.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{default.l15}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{default.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{default.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{default.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{default.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{default.l15}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l70}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{default.l25}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{default.l80}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{default.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{default.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{default.l70}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{default.l65}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{default.l45}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{default.l30}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{default.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{default.l20}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{default.l15}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-savanna-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-savanna-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{savanna.l25}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l30}}"
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l35}}"
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l40}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l55}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l75}}"
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l80}}"
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l85}}"
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l90}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{savanna.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{savanna.l95}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{savanna.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{savanna.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{savanna.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{savanna.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l30}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l85}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l40}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l80}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l80}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l80}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l80}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l95}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{savanna.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l40}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l45}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l65}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l80}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l90}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l95}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-savanna-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-savanna-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{savanna.l85}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l80}}"
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l75}}"
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l55}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l35}}"
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l30}}"
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l25}}"
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l20}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{savanna.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{savanna.l15}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{savanna.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{savanna.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{savanna.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{savanna.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l15}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l70}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{savanna.l25}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{savanna.l80}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{savanna.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{savanna.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{savanna.l70}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{savanna.l65}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{savanna.l45}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{savanna.l30}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{savanna.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{savanna.l20}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{savanna.l15}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-tundra-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-tundra-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{tundra.l25}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l30}}"
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l35}}"
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l40}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l55}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l75}}"
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l80}}"
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l85}}"
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l90}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{tundra.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{tundra.l95}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{tundra.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{tundra.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{tundra.l90}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{tundra.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l30}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l70}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l70}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l85}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l40}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l80}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l80}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l80}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l80}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l80}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l95}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{tundra.l30}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l35}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l40}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l45}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l65}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l80}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l90}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l95}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l70}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l70}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l70}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l70}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l70}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l70}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l70}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/soft-tundra-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/soft-tundra-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{tundra.l85}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l80}}"
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l75}}"
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l70}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l55}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l35}}"
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l30}}"
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l25}}"
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l20}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{tundra.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{tundra.l15}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{tundra.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{tundra.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{tundra.l20}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{tundra.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l15}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l70}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l25}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l45}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l45}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l80}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{tundra.l80}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l75}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l70}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l65}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l45}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l30}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l20}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l15}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l45}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l45}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l45}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l45}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l45}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l45}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l45}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/tundra-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/tundra-monobiome-dark.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{tundra.l20}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l25}}"
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l30}}"
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l35}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l50}}" # <bg3 + 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l70}}"
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l75}}"
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l80}}"
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l85}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{tundra.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					foreground        = "f{{tundra.l90}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{tundra.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{tundra.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{tundra.l85}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{tundra.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l25}}" # <background>
 | 
				
			||||||
 | 
					red    = "f{{red.l65}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l65}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l80}}" # <foreground - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l35}}" # <background + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l75}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l75}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l75}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l75}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l75}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l90}}" # <foreground>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{tundra.l25}}" # <bg0 + 5>
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l30}}" # <bg1 + 5>
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l35}}" # <bg2 + 5>
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l40}}" # <bg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l60}}" # <grey + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l75}}" # <fg0 + 5>
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l80}}" # <fg1 + 5>
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l85}}" # <fg2 + 5>
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l90}}" # <fg3 + 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l65}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l65}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l65}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l65}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l65}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l65}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l65}}"
 | 
				
			||||||
							
								
								
									
										72
									
								
								apps/symconf/tundra-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								apps/symconf/tundra-monobiome-light.toml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,72 @@
 | 
				
			|||||||
 | 
					bg0 = "f{{tundra.l90}}" # darkest
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l85}}"
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l80}}"
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l75}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l60}}" # <bg3 - 15>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l40}}"
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l35}}"
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l30}}"
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l25}}" # lightest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term]
 | 
				
			||||||
 | 
					background        = "f{{tundra.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					foreground        = "f{{tundra.l20}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					selection_bg      = "f{{tundra.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					selection_fg      = "f{{tundra.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cursor            = "f{{tundra.l25}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					cursor_text_color = "f{{tundra.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.normal]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l20}}" # <foreground>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l75}}" # <background - 10>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[term.bright]
 | 
				
			||||||
 | 
					black  = "f{{tundra.l30}}" # <foreground + 10>
 | 
				
			||||||
 | 
					red    = "f{{red.l50}}"
 | 
				
			||||||
 | 
					green  = "f{{green.l50}}"
 | 
				
			||||||
 | 
					yellow = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					blue   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					purple = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					cyan   = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					white  = "f{{tundra.l85}}" # <background>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[vim]
 | 
				
			||||||
 | 
					bg0 = "f{{tundra.l85}}" # <bg0 - 5>
 | 
				
			||||||
 | 
					bg1 = "f{{tundra.l80}}" # <bg1 - 5>
 | 
				
			||||||
 | 
					bg2 = "f{{tundra.l75}}" # <bg2 - 5>
 | 
				
			||||||
 | 
					bg3 = "f{{tundra.l70}}" # <bg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					grey = "f{{tundra.l50}}" # <grey - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fg3 = "f{{tundra.l35}}" # <fg0 - 5>
 | 
				
			||||||
 | 
					fg2 = "f{{tundra.l30}}" # <fg1 - 5>
 | 
				
			||||||
 | 
					fg1 = "f{{tundra.l25}}" # <fg2 - 5>
 | 
				
			||||||
 | 
					fg0 = "f{{tundra.l20}}" # <fg3 - 5>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					red     = "f{{red.l50}}"
 | 
				
			||||||
 | 
					orange  = "f{{orange.l50}}"
 | 
				
			||||||
 | 
					yellow  = "f{{yellow.l50}}"
 | 
				
			||||||
 | 
					green   = "f{{green.l50}}"
 | 
				
			||||||
 | 
					cyan    = "f{{green.l50}}"
 | 
				
			||||||
 | 
					blue    = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					violet  = "f{{blue.l50}}"
 | 
				
			||||||
 | 
					magenta = "f{{red.l50}}"
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user