diff options
| author | 2020-07-22 06:18:34 +0200 | |
|---|---|---|
| committer | 2020-07-22 06:18:34 +0200 | |
| commit | 047955af007e5788746d3b261ac9e2df2740643b (patch) | |
| tree | 47f22b9829a149b78b817987cc14ddc363c7ecc9 | |
| parent | 7494ab912056b796d67ca43af2bb1a8bde62fdf5 (diff) | |
v1.0 first release
160 files changed, 4740 insertions, 18 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..adbcc71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +schemes/ +sources.yaml @@ -15,7 +15,7 @@ update: build: $(BUILDER) build -t $(shell pwd) -o $(OUTPUT_DIR) mv $(OUTPUT_DIR)/$(TEMPLATE_NAME)/themes/* $(THEME_DIR)/ - rm -rf $(SOURCES_DIR) $(OUTPUT_DIR) $(TEMPLATE_DIR)/*/ $(SCHEMES_DIR) + rm -rf $(SOURCES_DIR) $(OUTPUT_DIR) $(TEMPLATE_DIR)/*/ clean: - rm -rf $(THEME_DIR)/* sources.yaml + rm -rf sources.yaml $(SCHEMES_DIR) diff --git a/templates/default.mustache b/templates/default.mustache index 97c3b77..afdfe1b 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -2,19 +2,29 @@ * Base16 wofi template by knezi * {{scheme-name}} scheme by {{scheme-author}} */ -base00 = "#{{base00-hex}}" -base01 = "#{{base01-hex}}" -base02 = "#{{base02-hex}}" -base03 = "#{{base03-hex}}" -base04 = "#{{base04-hex}}" -base05 = "#{{base05-hex}}" -base06 = "#{{base06-hex}}" -base07 = "#{{base07-hex}}" -base08 = "#{{base08-hex}}" -base09 = "#{{base09-hex}}" -base0A = "#{{base0A-hex}}" -base0B = "#{{base0B-hex}}" -base0C = "#{{base0C-hex}}" -base0D = "#{{base0D-hex}}" -base0E = "#{{base0E-hex}}" -base0F = "#{{base0F-hex}}" +window { + background-color: #{{base00-hex}}; + color: #{{base05-hex}}; +} + +#entry:nth-child(odd) { + background-color: #{{base00-hex}}; +} + +#entry:nth-child(even) { + background-color: #{{base01-hex}}; +} + +#entry:selected { + background-color: #{{base02-hex}}; +} + +#input { + background-color: #{{base01-hex}}; + color: #{{base04-hex}}; + border-color: #{{base02-hex}}; +} + +#input:focus { + border-color: #{{base0A-hex}}; +} diff --git a/themes/base16-3024.css b/themes/base16-3024.css new file mode 100644 index 0000000..601d0a6 --- /dev/null +++ b/themes/base16-3024.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * 3024 scheme by Jan T. Sott (http://github.com/idleberg) */ + +window { + background-color: #090300; + color: #a5a2a2; +} + +#entry:nth-child(odd) { + background-color: #090300; +} + +#entry:nth-child(even) { + background-color: #3a3432; +} + +#entry:selected { + background-color: #4a4543; +} + +#input { + background-color: #3a3432; + color: #807d7c; + border-color: #4a4543; +} + +#input:focus { + border-color: #fded02; +} diff --git a/themes/base16-apathy.css b/themes/base16-apathy.css new file mode 100644 index 0000000..224114f --- /dev/null +++ b/themes/base16-apathy.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Apathy scheme by Jannik Siebert (https://github.com/janniks) */ + +window { + background-color: #031A16; + color: #81B5AC; +} + +#entry:nth-child(odd) { + background-color: #031A16; +} + +#entry:nth-child(even) { + background-color: #0B342D; +} + +#entry:selected { + background-color: #184E45; +} + +#input { + background-color: #0B342D; + color: #5F9C92; + border-color: #184E45; +} + +#input:focus { + border-color: #3E4C96; +} diff --git a/themes/base16-ashes.css b/themes/base16-ashes.css new file mode 100644 index 0000000..c161050 --- /dev/null +++ b/themes/base16-ashes.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Ashes scheme by Jannik Siebert (https://github.com/janniks) */ + +window { + background-color: #1C2023; + color: #C7CCD1; +} + +#entry:nth-child(odd) { + background-color: #1C2023; +} + +#entry:nth-child(even) { + background-color: #393F45; +} + +#entry:selected { + background-color: #565E65; +} + +#input { + background-color: #393F45; + color: #ADB3BA; + border-color: #565E65; +} + +#input:focus { + border-color: #AEC795; +} diff --git a/themes/base16-atelier-cave-light.css b/themes/base16-atelier-cave-light.css new file mode 100644 index 0000000..95de4fe --- /dev/null +++ b/themes/base16-atelier-cave-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Cave Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #efecf4; + color: #585260; +} + +#entry:nth-child(odd) { + background-color: #efecf4; +} + +#entry:nth-child(even) { + background-color: #e2dfe7; +} + +#entry:selected { + background-color: #8b8792; +} + +#input { + background-color: #e2dfe7; + color: #655f6d; + border-color: #8b8792; +} + +#input:focus { + border-color: #a06e3b; +} diff --git a/themes/base16-atelier-cave.css b/themes/base16-atelier-cave.css new file mode 100644 index 0000000..1d9dbd8 --- /dev/null +++ b/themes/base16-atelier-cave.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Cave scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #19171c; + color: #8b8792; +} + +#entry:nth-child(odd) { + background-color: #19171c; +} + +#entry:nth-child(even) { + background-color: #26232a; +} + +#entry:selected { + background-color: #585260; +} + +#input { + background-color: #26232a; + color: #7e7887; + border-color: #585260; +} + +#input:focus { + border-color: #a06e3b; +} diff --git a/themes/base16-atelier-dune-light.css b/themes/base16-atelier-dune-light.css new file mode 100644 index 0000000..7f1c6d9 --- /dev/null +++ b/themes/base16-atelier-dune-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Dune Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #fefbec; + color: #6e6b5e; +} + +#entry:nth-child(odd) { + background-color: #fefbec; +} + +#entry:nth-child(even) { + background-color: #e8e4cf; +} + +#entry:selected { + background-color: #a6a28c; +} + +#input { + background-color: #e8e4cf; + color: #7d7a68; + border-color: #a6a28c; +} + +#input:focus { + border-color: #ae9513; +} diff --git a/themes/base16-atelier-dune.css b/themes/base16-atelier-dune.css new file mode 100644 index 0000000..5135d7c --- /dev/null +++ b/themes/base16-atelier-dune.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Dune scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #20201d; + color: #a6a28c; +} + +#entry:nth-child(odd) { + background-color: #20201d; +} + +#entry:nth-child(even) { + background-color: #292824; +} + +#entry:selected { + background-color: #6e6b5e; +} + +#input { + background-color: #292824; + color: #999580; + border-color: #6e6b5e; +} + +#input:focus { + border-color: #ae9513; +} diff --git a/themes/base16-atelier-estuary-light.css b/themes/base16-atelier-estuary-light.css new file mode 100644 index 0000000..cc22574 --- /dev/null +++ b/themes/base16-atelier-estuary-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Estuary Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #f4f3ec; + color: #5f5e4e; +} + +#entry:nth-child(odd) { + background-color: #f4f3ec; +} + +#entry:nth-child(even) { + background-color: #e7e6df; +} + +#entry:selected { + background-color: #929181; +} + +#input { + background-color: #e7e6df; + color: #6c6b5a; + border-color: #929181; +} + +#input:focus { + border-color: #a5980d; +} diff --git a/themes/base16-atelier-estuary.css b/themes/base16-atelier-estuary.css new file mode 100644 index 0000000..6a17e98 --- /dev/null +++ b/themes/base16-atelier-estuary.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Estuary scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #22221b; + color: #929181; +} + +#entry:nth-child(odd) { + background-color: #22221b; +} + +#entry:nth-child(even) { + background-color: #302f27; +} + +#entry:selected { + background-color: #5f5e4e; +} + +#input { + background-color: #302f27; + color: #878573; + border-color: #5f5e4e; +} + +#input:focus { + border-color: #a5980d; +} diff --git a/themes/base16-atelier-forest-light.css b/themes/base16-atelier-forest-light.css new file mode 100644 index 0000000..83382ac --- /dev/null +++ b/themes/base16-atelier-forest-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Forest Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #f1efee; + color: #68615e; +} + +#entry:nth-child(odd) { + background-color: #f1efee; +} + +#entry:nth-child(even) { + background-color: #e6e2e0; +} + +#entry:selected { + background-color: #a8a19f; +} + +#input { + background-color: #e6e2e0; + color: #766e6b; + border-color: #a8a19f; +} + +#input:focus { + border-color: #c38418; +} diff --git a/themes/base16-atelier-forest.css b/themes/base16-atelier-forest.css new file mode 100644 index 0000000..5c11a7e --- /dev/null +++ b/themes/base16-atelier-forest.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Forest scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #1b1918; + color: #a8a19f; +} + +#entry:nth-child(odd) { + background-color: #1b1918; +} + +#entry:nth-child(even) { + background-color: #2c2421; +} + +#entry:selected { + background-color: #68615e; +} + +#input { + background-color: #2c2421; + color: #9c9491; + border-color: #68615e; +} + +#input:focus { + border-color: #c38418; +} diff --git a/themes/base16-atelier-heath-light.css b/themes/base16-atelier-heath-light.css new file mode 100644 index 0000000..a7aee71 --- /dev/null +++ b/themes/base16-atelier-heath-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Heath Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #f7f3f7; + color: #695d69; +} + +#entry:nth-child(odd) { + background-color: #f7f3f7; +} + +#entry:nth-child(even) { + background-color: #d8cad8; +} + +#entry:selected { + background-color: #ab9bab; +} + +#input { + background-color: #d8cad8; + color: #776977; + border-color: #ab9bab; +} + +#input:focus { + border-color: #bb8a35; +} diff --git a/themes/base16-atelier-heath.css b/themes/base16-atelier-heath.css new file mode 100644 index 0000000..c932b7e --- /dev/null +++ b/themes/base16-atelier-heath.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Heath scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #1b181b; + color: #ab9bab; +} + +#entry:nth-child(odd) { + background-color: #1b181b; +} + +#entry:nth-child(even) { + background-color: #292329; +} + +#entry:selected { + background-color: #695d69; +} + +#input { + background-color: #292329; + color: #9e8f9e; + border-color: #695d69; +} + +#input:focus { + border-color: #bb8a35; +} diff --git a/themes/base16-atelier-lakeside-light.css b/themes/base16-atelier-lakeside-light.css new file mode 100644 index 0000000..103d345 --- /dev/null +++ b/themes/base16-atelier-lakeside-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Lakeside Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #ebf8ff; + color: #516d7b; +} + +#entry:nth-child(odd) { + background-color: #ebf8ff; +} + +#entry:nth-child(even) { + background-color: #c1e4f6; +} + +#entry:selected { + background-color: #7ea2b4; +} + +#input { + background-color: #c1e4f6; + color: #5a7b8c; + border-color: #7ea2b4; +} + +#input:focus { + border-color: #8a8a0f; +} diff --git a/themes/base16-atelier-lakeside.css b/themes/base16-atelier-lakeside.css new file mode 100644 index 0000000..15b21ef --- /dev/null +++ b/themes/base16-atelier-lakeside.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Lakeside scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #161b1d; + color: #7ea2b4; +} + +#entry:nth-child(odd) { + background-color: #161b1d; +} + +#entry:nth-child(even) { + background-color: #1f292e; +} + +#entry:selected { + background-color: #516d7b; +} + +#input { + background-color: #1f292e; + color: #7195a8; + border-color: #516d7b; +} + +#input:focus { + border-color: #8a8a0f; +} diff --git a/themes/base16-atelier-plateau-light.css b/themes/base16-atelier-plateau-light.css new file mode 100644 index 0000000..a278db8 --- /dev/null +++ b/themes/base16-atelier-plateau-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Plateau Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #f4ecec; + color: #585050; +} + +#entry:nth-child(odd) { + background-color: #f4ecec; +} + +#entry:nth-child(even) { + background-color: #e7dfdf; +} + +#entry:selected { + background-color: #8a8585; +} + +#input { + background-color: #e7dfdf; + color: #655d5d; + border-color: #8a8585; +} + +#input:focus { + border-color: #a06e3b; +} diff --git a/themes/base16-atelier-plateau.css b/themes/base16-atelier-plateau.css new file mode 100644 index 0000000..058f378 --- /dev/null +++ b/themes/base16-atelier-plateau.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Plateau scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #1b1818; + color: #8a8585; +} + +#entry:nth-child(odd) { + background-color: #1b1818; +} + +#entry:nth-child(even) { + background-color: #292424; +} + +#entry:selected { + background-color: #585050; +} + +#input { + background-color: #292424; + color: #7e7777; + border-color: #585050; +} + +#input:focus { + border-color: #a06e3b; +} diff --git a/themes/base16-atelier-savanna-light.css b/themes/base16-atelier-savanna-light.css new file mode 100644 index 0000000..b7a5756 --- /dev/null +++ b/themes/base16-atelier-savanna-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Savanna Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #ecf4ee; + color: #526057; +} + +#entry:nth-child(odd) { + background-color: #ecf4ee; +} + +#entry:nth-child(even) { + background-color: #dfe7e2; +} + +#entry:selected { + background-color: #87928a; +} + +#input { + background-color: #dfe7e2; + color: #5f6d64; + border-color: #87928a; +} + +#input:focus { + border-color: #a07e3b; +} diff --git a/themes/base16-atelier-savanna.css b/themes/base16-atelier-savanna.css new file mode 100644 index 0000000..eb4a286 --- /dev/null +++ b/themes/base16-atelier-savanna.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Savanna scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #171c19; + color: #87928a; +} + +#entry:nth-child(odd) { + background-color: #171c19; +} + +#entry:nth-child(even) { + background-color: #232a25; +} + +#entry:selected { + background-color: #526057; +} + +#input { + background-color: #232a25; + color: #78877d; + border-color: #526057; +} + +#input:focus { + border-color: #a07e3b; +} diff --git a/themes/base16-atelier-seaside-light.css b/themes/base16-atelier-seaside-light.css new file mode 100644 index 0000000..419df59 --- /dev/null +++ b/themes/base16-atelier-seaside-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Seaside Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #f4fbf4; + color: #5e6e5e; +} + +#entry:nth-child(odd) { + background-color: #f4fbf4; +} + +#entry:nth-child(even) { + background-color: #cfe8cf; +} + +#entry:selected { + background-color: #8ca68c; +} + +#input { + background-color: #cfe8cf; + color: #687d68; + border-color: #8ca68c; +} + +#input:focus { + border-color: #98981b; +} diff --git a/themes/base16-atelier-seaside.css b/themes/base16-atelier-seaside.css new file mode 100644 index 0000000..7af57cf --- /dev/null +++ b/themes/base16-atelier-seaside.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Seaside scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #131513; + color: #8ca68c; +} + +#entry:nth-child(odd) { + background-color: #131513; +} + +#entry:nth-child(even) { + background-color: #242924; +} + +#entry:selected { + background-color: #5e6e5e; +} + +#input { + background-color: #242924; + color: #809980; + border-color: #5e6e5e; +} + +#input:focus { + border-color: #98981b; +} diff --git a/themes/base16-atelier-sulphurpool-light.css b/themes/base16-atelier-sulphurpool-light.css new file mode 100644 index 0000000..613e180 --- /dev/null +++ b/themes/base16-atelier-sulphurpool-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Sulphurpool Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #f5f7ff; + color: #5e6687; +} + +#entry:nth-child(odd) { + background-color: #f5f7ff; +} + +#entry:nth-child(even) { + background-color: #dfe2f1; +} + +#entry:selected { + background-color: #979db4; +} + +#input { + background-color: #dfe2f1; + color: #6b7394; + border-color: #979db4; +} + +#input:focus { + border-color: #c08b30; +} diff --git a/themes/base16-atelier-sulphurpool.css b/themes/base16-atelier-sulphurpool.css new file mode 100644 index 0000000..f7097f8 --- /dev/null +++ b/themes/base16-atelier-sulphurpool.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atelier Sulphurpool scheme by Bram de Haan (http://atelierbramdehaan.nl) */ + +window { + background-color: #202746; + color: #979db4; +} + +#entry:nth-child(odd) { + background-color: #202746; +} + +#entry:nth-child(even) { + background-color: #293256; +} + +#entry:selected { + background-color: #5e6687; +} + +#input { + background-color: #293256; + color: #898ea4; + border-color: #5e6687; +} + +#input:focus { + border-color: #c08b30; +} diff --git a/themes/base16-atlas.css b/themes/base16-atlas.css new file mode 100644 index 0000000..07c0de4 --- /dev/null +++ b/themes/base16-atlas.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Atlas scheme by Alex Lende (https://ajlende.com) */ + +window { + background-color: #002635; + color: #a1a19a; +} + +#entry:nth-child(odd) { + background-color: #002635; +} + +#entry:nth-child(even) { + background-color: #00384d; +} + +#entry:selected { + background-color: #517F8D; +} + +#input { + background-color: #00384d; + color: #869696; + border-color: #517F8D; +} + +#input:focus { + border-color: #ffcc1b; +} diff --git a/themes/base16-bespin.css b/themes/base16-bespin.css new file mode 100644 index 0000000..f476b6d --- /dev/null +++ b/themes/base16-bespin.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Bespin scheme by Jan T. Sott */ + +window { + background-color: #28211c; + color: #8a8986; +} + +#entry:nth-child(odd) { + background-color: #28211c; +} + +#entry:nth-child(even) { + background-color: #36312e; +} + +#entry:selected { + background-color: #5e5d5c; +} + +#input { + background-color: #36312e; + color: #797977; + border-color: #5e5d5c; +} + +#input:focus { + border-color: #f9ee98; +} diff --git a/themes/base16-black-metal-bathory.css b/themes/base16-black-metal-bathory.css new file mode 100644 index 0000000..d6f9b0d --- /dev/null +++ b/themes/base16-black-metal-bathory.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Bathory) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #e78a53; +} diff --git a/themes/base16-black-metal-burzum.css b/themes/base16-black-metal-burzum.css new file mode 100644 index 0000000..c61799b --- /dev/null +++ b/themes/base16-black-metal-burzum.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Burzum) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #99bbaa; +} diff --git a/themes/base16-black-metal-dark-funeral.css b/themes/base16-black-metal-dark-funeral.css new file mode 100644 index 0000000..89528a5 --- /dev/null +++ b/themes/base16-black-metal-dark-funeral.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Dark Funeral) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #5f81a5; +} diff --git a/themes/base16-black-metal-gorgoroth.css b/themes/base16-black-metal-gorgoroth.css new file mode 100644 index 0000000..5277c68 --- /dev/null +++ b/themes/base16-black-metal-gorgoroth.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Gorgoroth) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #8c7f70; +} diff --git a/themes/base16-black-metal-immortal.css b/themes/base16-black-metal-immortal.css new file mode 100644 index 0000000..83e3bd8 --- /dev/null +++ b/themes/base16-black-metal-immortal.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Immortal) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #556677; +} diff --git a/themes/base16-black-metal-khold.css b/themes/base16-black-metal-khold.css new file mode 100644 index 0000000..c1915d0 --- /dev/null +++ b/themes/base16-black-metal-khold.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Khold) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #974b46; +} diff --git a/themes/base16-black-metal-marduk.css b/themes/base16-black-metal-marduk.css new file mode 100644 index 0000000..1dc8602 --- /dev/null +++ b/themes/base16-black-metal-marduk.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Marduk) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #626b67; +} diff --git a/themes/base16-black-metal-mayhem.css b/themes/base16-black-metal-mayhem.css new file mode 100644 index 0000000..6e44d20 --- /dev/null +++ b/themes/base16-black-metal-mayhem.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Mayhem) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #eecc6c; +} diff --git a/themes/base16-black-metal-nile.css b/themes/base16-black-metal-nile.css new file mode 100644 index 0000000..e1f2723 --- /dev/null +++ b/themes/base16-black-metal-nile.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Nile) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #777755; +} diff --git a/themes/base16-black-metal-venom.css b/themes/base16-black-metal-venom.css new file mode 100644 index 0000000..674bd7e --- /dev/null +++ b/themes/base16-black-metal-venom.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal (Venom) scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #79241f; +} diff --git a/themes/base16-black-metal.css b/themes/base16-black-metal.css new file mode 100644 index 0000000..344d18d --- /dev/null +++ b/themes/base16-black-metal.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Black Metal scheme by metalelf0 (https://github.com/metalelf0) */ + +window { + background-color: #000000; + color: #c1c1c1; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #121212; +} + +#entry:selected { + background-color: #222222; +} + +#input { + background-color: #121212; + color: #999999; + border-color: #222222; +} + +#input:focus { + border-color: #a06666; +} diff --git a/themes/base16-brewer.css b/themes/base16-brewer.css new file mode 100644 index 0000000..3a8ce1e --- /dev/null +++ b/themes/base16-brewer.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Brewer scheme by Timothée Poisot (http://github.com/tpoisot) */ + +window { + background-color: #0c0d0e; + color: #b7b8b9; +} + +#entry:nth-child(odd) { + background-color: #0c0d0e; +} + +#entry:nth-child(even) { + background-color: #2e2f30; +} + +#entry:selected { + background-color: #515253; +} + +#input { + background-color: #2e2f30; + color: #959697; + border-color: #515253; +} + +#input:focus { + border-color: #dca060; +} diff --git a/themes/base16-bright.css b/themes/base16-bright.css new file mode 100644 index 0000000..be8579d --- /dev/null +++ b/themes/base16-bright.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Bright scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #000000; + color: #e0e0e0; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #303030; +} + +#entry:selected { + background-color: #505050; +} + +#input { + background-color: #303030; + color: #d0d0d0; + border-color: #505050; +} + +#input:focus { + border-color: #fda331; +} diff --git a/themes/base16-brogrammer.css b/themes/base16-brogrammer.css new file mode 100644 index 0000000..15998a2 --- /dev/null +++ b/themes/base16-brogrammer.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Brogrammer scheme by Vik Ramanujam (http://github.com/piggyslasher) */ + +window { + background-color: #1f1f1f; + color: #4e5ab7; +} + +#entry:nth-child(odd) { + background-color: #1f1f1f; +} + +#entry:nth-child(even) { + background-color: #f81118; +} + +#entry:selected { + background-color: #2dc55e; +} + +#input { + background-color: #f81118; + color: #2a84d2; + border-color: #2dc55e; +} + +#input:focus { + border-color: #1dd361; +} diff --git a/themes/base16-brushtrees-dark.css b/themes/base16-brushtrees-dark.css new file mode 100644 index 0000000..8e5942d --- /dev/null +++ b/themes/base16-brushtrees-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Brush Trees Dark scheme by Abraham White <abelincoln.white@gmail.com> */ + +window { + background-color: #485867; + color: #B0C5C8; +} + +#entry:nth-child(odd) { + background-color: #485867; +} + +#entry:nth-child(even) { + background-color: #5A6D7A; +} + +#entry:selected { + background-color: #6D828E; +} + +#input { + background-color: #5A6D7A; + color: #98AFB5; + border-color: #6D828E; +} + +#input:focus { + border-color: #aab386; +} diff --git a/themes/base16-brushtrees.css b/themes/base16-brushtrees.css new file mode 100644 index 0000000..7bc058a --- /dev/null +++ b/themes/base16-brushtrees.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Brush Trees scheme by Abraham White <abelincoln.white@gmail.com> */ + +window { + background-color: #E3EFEF; + color: #6D828E; +} + +#entry:nth-child(odd) { + background-color: #E3EFEF; +} + +#entry:nth-child(even) { + background-color: #C9DBDC; +} + +#entry:selected { + background-color: #B0C5C8; +} + +#input { + background-color: #C9DBDC; + color: #8299A1; + border-color: #B0C5C8; +} + +#input:focus { + border-color: #aab386; +} diff --git a/themes/base16-chalk.css b/themes/base16-chalk.css new file mode 100644 index 0000000..72a8bcb --- /dev/null +++ b/themes/base16-chalk.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Chalk scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #151515; + color: #d0d0d0; +} + +#entry:nth-child(odd) { + background-color: #151515; +} + +#entry:nth-child(even) { + background-color: #202020; +} + +#entry:selected { + background-color: #303030; +} + +#input { + background-color: #202020; + color: #b0b0b0; + border-color: #303030; +} + +#input:focus { + border-color: #ddb26f; +} diff --git a/themes/base16-circus.css b/themes/base16-circus.css new file mode 100644 index 0000000..742fd4f --- /dev/null +++ b/themes/base16-circus.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Circus scheme by Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) */ + +window { + background-color: #191919; + color: #a7a7a7; +} + +#entry:nth-child(odd) { + background-color: #191919; +} + +#entry:nth-child(even) { + background-color: #202020; +} + +#entry:selected { + background-color: #303030; +} + +#input { + background-color: #202020; + color: #505050; + border-color: #303030; +} + +#input:focus { + border-color: #c3ba63; +} diff --git a/themes/base16-classic-dark.css b/themes/base16-classic-dark.css new file mode 100644 index 0000000..87db2f4 --- /dev/null +++ b/themes/base16-classic-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Classic Dark scheme by Jason Heeris (http://heeris.id.au) */ + +window { + background-color: #151515; + color: #D0D0D0; +} + +#entry:nth-child(odd) { + background-color: #151515; +} + +#entry:nth-child(even) { + background-color: #202020; +} + +#entry:selected { + background-color: #303030; +} + +#input { + background-color: #202020; + color: #B0B0B0; + border-color: #303030; +} + +#input:focus { + border-color: #F4BF75; +} diff --git a/themes/base16-classic-light.css b/themes/base16-classic-light.css new file mode 100644 index 0000000..eb400d6 --- /dev/null +++ b/themes/base16-classic-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Classic Light scheme by Jason Heeris (http://heeris.id.au) */ + +window { + background-color: #F5F5F5; + color: #303030; +} + +#entry:nth-child(odd) { + background-color: #F5F5F5; +} + +#entry:nth-child(even) { + background-color: #E0E0E0; +} + +#entry:selected { + background-color: #D0D0D0; +} + +#input { + background-color: #E0E0E0; + color: #505050; + border-color: #D0D0D0; +} + +#input:focus { + border-color: #F4BF75; +} diff --git a/themes/base16-codeschool.css b/themes/base16-codeschool.css new file mode 100644 index 0000000..2458501 --- /dev/null +++ b/themes/base16-codeschool.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Codeschool scheme by blockloop */ + +window { + background-color: #232c31; + color: #9ea7a6; +} + +#entry:nth-child(odd) { + background-color: #232c31; +} + +#entry:nth-child(even) { + background-color: #1c3657; +} + +#entry:selected { + background-color: #2a343a; +} + +#input { + background-color: #1c3657; + color: #84898c; + border-color: #2a343a; +} + +#input:focus { + border-color: #a03b1e; +} diff --git a/themes/base16-cupcake.css b/themes/base16-cupcake.css new file mode 100644 index 0000000..61094c9 --- /dev/null +++ b/themes/base16-cupcake.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Cupcake scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #fbf1f2; + color: #8b8198; +} + +#entry:nth-child(odd) { + background-color: #fbf1f2; +} + +#entry:nth-child(even) { + background-color: #f2f1f4; +} + +#entry:selected { + background-color: #d8d5dd; +} + +#input { + background-color: #f2f1f4; + color: #a59daf; + border-color: #d8d5dd; +} + +#input:focus { + border-color: #DCB16C; +} diff --git a/themes/base16-cupertino.css b/themes/base16-cupertino.css new file mode 100644 index 0000000..99221d6 --- /dev/null +++ b/themes/base16-cupertino.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Cupertino scheme by Defman21 */ + +window { + background-color: #ffffff; + color: #404040; +} + +#entry:nth-child(odd) { + background-color: #ffffff; +} + +#entry:nth-child(even) { + background-color: #c0c0c0; +} + +#entry:selected { + background-color: #c0c0c0; +} + +#input { + background-color: #c0c0c0; + color: #808080; + border-color: #c0c0c0; +} + +#input:focus { + border-color: #826b28; +} diff --git a/themes/base16-darkmoss.css b/themes/base16-darkmoss.css new file mode 100644 index 0000000..7ecff64 --- /dev/null +++ b/themes/base16-darkmoss.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * darkmoss scheme by Gabriel Avanzi (https://github.com/avanzzzi) */ + +window { + background-color: #171e1f; + color: #c7c7a5; +} + +#entry:nth-child(odd) { + background-color: #171e1f; +} + +#entry:nth-child(even) { + background-color: #252c2d; +} + +#entry:selected { + background-color: #373c3d; +} + +#input { + background-color: #252c2d; + color: #818f80; + border-color: #373c3d; +} + +#input:focus { + border-color: #fdb11f; +} diff --git a/themes/base16-darktooth.css b/themes/base16-darktooth.css new file mode 100644 index 0000000..f4ee00e --- /dev/null +++ b/themes/base16-darktooth.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Darktooth scheme by Jason Milkins (https://github.com/jasonm23) */ + +window { + background-color: #1D2021; + color: #A89984; +} + +#entry:nth-child(odd) { + background-color: #1D2021; +} + +#entry:nth-child(even) { + background-color: #32302F; +} + +#entry:selected { + background-color: #504945; +} + +#input { + background-color: #32302F; + color: #928374; + border-color: #504945; +} + +#input:focus { + border-color: #FAC03B; +} diff --git a/themes/base16-darkviolet.css b/themes/base16-darkviolet.css new file mode 100644 index 0000000..5aa1497 --- /dev/null +++ b/themes/base16-darkviolet.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Dark Violet scheme by ruler501 (https://github.com/ruler501/base16-darkviolet) */ + +window { + background-color: #000000; + color: #b08ae6; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #231a40; +} + +#entry:selected { + background-color: #432d59; +} + +#input { + background-color: #231a40; + color: #00ff00; + border-color: #432d59; +} + +#input:focus { + border-color: #f29df2; +} diff --git a/themes/base16-decaf.css b/themes/base16-decaf.css new file mode 100644 index 0000000..aeb20e2 --- /dev/null +++ b/themes/base16-decaf.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Decaf scheme by Alex Mirrington (https://github.com/alexmirrington) */ + +window { + background-color: #2d2d2d; + color: #cccccc; +} + +#entry:nth-child(odd) { + background-color: #2d2d2d; +} + +#entry:nth-child(even) { + background-color: #393939; +} + +#entry:selected { + background-color: #515151; +} + +#input { + background-color: #393939; + color: #b4b7b4; + border-color: #515151; +} + +#input:focus { + border-color: #ffd67c; +} diff --git a/themes/base16-default-dark.css b/themes/base16-default-dark.css new file mode 100644 index 0000000..ec75239 --- /dev/null +++ b/themes/base16-default-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Default Dark scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #181818; + color: #d8d8d8; +} + +#entry:nth-child(odd) { + background-color: #181818; +} + +#entry:nth-child(even) { + background-color: #282828; +} + +#entry:selected { + background-color: #383838; +} + +#input { + background-color: #282828; + color: #b8b8b8; + border-color: #383838; +} + +#input:focus { + border-color: #f7ca88; +} diff --git a/themes/base16-default-light.css b/themes/base16-default-light.css new file mode 100644 index 0000000..ea65934 --- /dev/null +++ b/themes/base16-default-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Default Light scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #f8f8f8; + color: #383838; +} + +#entry:nth-child(odd) { + background-color: #f8f8f8; +} + +#entry:nth-child(even) { + background-color: #e8e8e8; +} + +#entry:selected { + background-color: #d8d8d8; +} + +#input { + background-color: #e8e8e8; + color: #585858; + border-color: #d8d8d8; +} + +#input:focus { + border-color: #f7ca88; +} diff --git a/themes/base16-dirtysea.css b/themes/base16-dirtysea.css new file mode 100644 index 0000000..9f7d346 --- /dev/null +++ b/themes/base16-dirtysea.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * dirtysea scheme by Kahlil (Kal) Hodgson */ + +window { + background-color: #e0e0e0; + color: #000000; +} + +#entry:nth-child(odd) { + background-color: #e0e0e0; +} + +#entry:nth-child(even) { + background-color: #d0d0d0; +} + +#entry:selected { + background-color: #c0c0c0; +} + +#input { + background-color: #d0d0d0; + color: #202020; + border-color: #c0c0c0; +} + +#input:focus { + border-color: #006565; +} diff --git a/themes/base16-dracula.css b/themes/base16-dracula.css new file mode 100644 index 0000000..4fb6050 --- /dev/null +++ b/themes/base16-dracula.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Dracula scheme by Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) */ + +window { + background-color: #282936; + color: #e9e9f4; +} + +#entry:nth-child(odd) { + background-color: #282936; +} + +#entry:nth-child(even) { + background-color: #3a3c4e; +} + +#entry:selected { + background-color: #4d4f68; +} + +#input { + background-color: #3a3c4e; + color: #62d6e8; + border-color: #4d4f68; +} + +#input:focus { + border-color: #00f769; +} diff --git a/themes/base16-edge-dark.css b/themes/base16-edge-dark.css new file mode 100644 index 0000000..65b59b6 --- /dev/null +++ b/themes/base16-edge-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Edge Dark scheme by cjayross (https://github.com/cjayross) */ + +window { + background-color: #262729; + color: #b7bec9; +} + +#entry:nth-child(odd) { + background-color: #262729; +} + +#entry:nth-child(even) { + background-color: #88909f; +} + +#entry:selected { + background-color: #b7bec9; +} + +#input { + background-color: #88909f; + color: #73b3e7; + border-color: #b7bec9; +} + +#input:focus { + border-color: #dbb774; +} diff --git a/themes/base16-edge-light.css b/themes/base16-edge-light.css new file mode 100644 index 0000000..4fe460b --- /dev/null +++ b/themes/base16-edge-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Edge Light scheme by cjayross (https://github.com/cjayross) */ + +window { + background-color: #fafafa; + color: #5e646f; +} + +#entry:nth-child(odd) { + background-color: #fafafa; +} + +#entry:nth-child(even) { + background-color: #7c9f4b; +} + +#entry:selected { + background-color: #d69822; +} + +#input { + background-color: #7c9f4b; + color: #6587bf; + border-color: #d69822; +} + +#input:focus { + border-color: #d69822; +} diff --git a/themes/base16-eighties.css b/themes/base16-eighties.css new file mode 100644 index 0000000..25305ba --- /dev/null +++ b/themes/base16-eighties.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Eighties scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #2d2d2d; + color: #d3d0c8; +} + +#entry:nth-child(odd) { + background-color: #2d2d2d; +} + +#entry:nth-child(even) { + background-color: #393939; +} + +#entry:selected { + background-color: #515151; +} + +#input { + background-color: #393939; + color: #a09f93; + border-color: #515151; +} + +#input:focus { + border-color: #ffcc66; +} diff --git a/themes/base16-embers.css b/themes/base16-embers.css new file mode 100644 index 0000000..fccdf6f --- /dev/null +++ b/themes/base16-embers.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Embers scheme by Jannik Siebert (https://github.com/janniks) */ + +window { + background-color: #16130F; + color: #A39A90; +} + +#entry:nth-child(odd) { + background-color: #16130F; +} + +#entry:nth-child(even) { + background-color: #2C2620; +} + +#entry:selected { + background-color: #433B32; +} + +#input { + background-color: #2C2620; + color: #8A8075; + border-color: #433B32; +} + +#input:focus { + border-color: #6D8257; +} diff --git a/themes/base16-equilibrium-dark.css b/themes/base16-equilibrium-dark.css new file mode 100644 index 0000000..d83115c --- /dev/null +++ b/themes/base16-equilibrium-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Equilibrium Dark scheme by Carlo Abelli */ + +window { + background-color: #0c1118; + color: #afaba2; +} + +#entry:nth-child(odd) { + background-color: #0c1118; +} + +#entry:nth-child(even) { + background-color: #181c22; +} + +#entry:selected { + background-color: #22262d; +} + +#input { + background-color: #181c22; + color: #949088; + border-color: #22262d; +} + +#input:focus { + border-color: #bb8801; +} diff --git a/themes/base16-equilibrium-gray-dark.css b/themes/base16-equilibrium-gray-dark.css new file mode 100644 index 0000000..356b520 --- /dev/null +++ b/themes/base16-equilibrium-gray-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Equilibrium Gray Dark scheme by Carlo Abelli */ + +window { + background-color: #111111; + color: #ababab; +} + +#entry:nth-child(odd) { + background-color: #111111; +} + +#entry:nth-child(even) { + background-color: #1b1b1b; +} + +#entry:selected { + background-color: #262626; +} + +#input { + background-color: #1b1b1b; + color: #919191; + border-color: #262626; +} + +#input:focus { + border-color: #bb8801; +} diff --git a/themes/base16-equilibrium-gray-light.css b/themes/base16-equilibrium-gray-light.css new file mode 100644 index 0000000..b26f1d4 --- /dev/null +++ b/themes/base16-equilibrium-gray-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Equilibrium Gray Light scheme by Carlo Abelli */ + +window { + background-color: #f1f1f1; + color: #474747; +} + +#entry:nth-child(odd) { + background-color: #f1f1f1; +} + +#entry:nth-child(even) { + background-color: #e2e2e2; +} + +#entry:selected { + background-color: #d4d4d4; +} + +#input { + background-color: #e2e2e2; + color: #5e5e5e; + border-color: #d4d4d4; +} + +#input:focus { + border-color: #9d6f00; +} diff --git a/themes/base16-equilibrium-light.css b/themes/base16-equilibrium-light.css new file mode 100644 index 0000000..37805e1 --- /dev/null +++ b/themes/base16-equilibrium-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Equilibrium Light scheme by Carlo Abelli */ + +window { + background-color: #f5f0e7; + color: #43474e; +} + +#entry:nth-child(odd) { + background-color: #f5f0e7; +} + +#entry:nth-child(even) { + background-color: #e7e2d9; +} + +#entry:selected { + background-color: #d8d4cb; +} + +#input { + background-color: #e7e2d9; + color: #5a5f66; + border-color: #d8d4cb; +} + +#input:focus { + border-color: #9d6f00; +} diff --git a/themes/base16-espresso.css b/themes/base16-espresso.css new file mode 100644 index 0000000..8a31005 --- /dev/null +++ b/themes/base16-espresso.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Espresso scheme by Alex Mirrington (https://github.com/alexmirrington) */ + +window { + background-color: #2d2d2d; + color: #cccccc; +} + +#entry:nth-child(odd) { + background-color: #2d2d2d; +} + +#entry:nth-child(even) { + background-color: #393939; +} + +#entry:selected { + background-color: #515151; +} + +#input { + background-color: #393939; + color: #b4b7b4; + border-color: #515151; +} + +#input:focus { + border-color: #ffc66d; +} diff --git a/themes/base16-eva-dim.css b/themes/base16-eva-dim.css new file mode 100644 index 0000000..cbcf4fc --- /dev/null +++ b/themes/base16-eva-dim.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Eva Dim scheme by kjakapat (https://github.com/kjakapat) */ + +window { + background-color: #2a3b4d; + color: #9fa2a6; +} + +#entry:nth-child(odd) { + background-color: #2a3b4d; +} + +#entry:nth-child(even) { + background-color: #3d566f; +} + +#entry:selected { + background-color: #4b6988; +} + +#input { + background-color: #3d566f; + color: #7e90a3; + border-color: #4b6988; +} + +#input:focus { + border-color: #cfd05d; +} diff --git a/themes/base16-eva.css b/themes/base16-eva.css new file mode 100644 index 0000000..40b8cff --- /dev/null +++ b/themes/base16-eva.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Eva scheme by kjakapat (https://github.com/kjakapat) */ + +window { + background-color: #2a3b4d; + color: #9fa2a6; +} + +#entry:nth-child(odd) { + background-color: #2a3b4d; +} + +#entry:nth-child(even) { + background-color: #3d566f; +} + +#entry:selected { + background-color: #4b6988; +} + +#input { + background-color: #3d566f; + color: #7e90a3; + border-color: #4b6988; +} + +#input:focus { + border-color: #ffff66; +} diff --git a/themes/base16-flat.css b/themes/base16-flat.css new file mode 100644 index 0000000..394db06 --- /dev/null +++ b/themes/base16-flat.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Flat scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #2C3E50; + color: #e0e0e0; +} + +#entry:nth-child(odd) { + background-color: #2C3E50; +} + +#entry:nth-child(even) { + background-color: #34495E; +} + +#entry:selected { + background-color: #7F8C8D; +} + +#input { + background-color: #34495E; + color: #BDC3C7; + border-color: #7F8C8D; +} + +#input:focus { + border-color: #F1C40F; +} diff --git a/themes/base16-framer.css b/themes/base16-framer.css new file mode 100644 index 0000000..c92c086 --- /dev/null +++ b/themes/base16-framer.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Framer scheme by Framer (Maintained by Jesse Hoyos) */ + +window { + background-color: #181818; + color: #D0D0D0; +} + +#entry:nth-child(odd) { + background-color: #181818; +} + +#entry:nth-child(even) { + background-color: #151515; +} + +#entry:selected { + background-color: #464646; +} + +#input { + background-color: #151515; + color: #B9B9B9; + border-color: #464646; +} + +#input:focus { + border-color: #FECB6E; +} diff --git a/themes/base16-fruit-soda.css b/themes/base16-fruit-soda.css new file mode 100644 index 0000000..edd1728 --- /dev/null +++ b/themes/base16-fruit-soda.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Fruit Soda scheme by jozip */ + +window { + background-color: #f1ecf1; + color: #515151; +} + +#entry:nth-child(odd) { + background-color: #f1ecf1; +} + +#entry:nth-child(even) { + background-color: #e0dee0; +} + +#entry:selected { + background-color: #d8d5d5; +} + +#input { + background-color: #e0dee0; + color: #979598; + border-color: #d8d5d5; +} + +#input:focus { + border-color: #f7e203; +} diff --git a/themes/base16-gigavolt.css b/themes/base16-gigavolt.css new file mode 100644 index 0000000..9cd3bb4 --- /dev/null +++ b/themes/base16-gigavolt.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gigavolt scheme by Aidan Swope (http://github.com/Whillikers) */ + +window { + background-color: #202126; + color: #e9e7e1; +} + +#entry:nth-child(odd) { + background-color: #202126; +} + +#entry:nth-child(even) { + background-color: #2d303d; +} + +#entry:selected { + background-color: #5a576e; +} + +#input { + background-color: #2d303d; + color: #cad3ff; + border-color: #5a576e; +} + +#input:focus { + border-color: #ffdc2d; +} diff --git a/themes/base16-github.css b/themes/base16-github.css new file mode 100644 index 0000000..7622a83 --- /dev/null +++ b/themes/base16-github.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Github scheme by Defman21 */ + +window { + background-color: #ffffff; + color: #333333; +} + +#entry:nth-child(odd) { + background-color: #ffffff; +} + +#entry:nth-child(even) { + background-color: #f5f5f5; +} + +#entry:selected { + background-color: #c8c8fa; +} + +#input { + background-color: #f5f5f5; + color: #e8e8e8; + border-color: #c8c8fa; +} + +#input:focus { + border-color: #795da3; +} diff --git a/themes/base16-google-dark.css b/themes/base16-google-dark.css new file mode 100644 index 0000000..6fba300 --- /dev/null +++ b/themes/base16-google-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Google Dark scheme by Seth Wright (http://sethawright.com) */ + +window { + background-color: #1d1f21; + color: #c5c8c6; +} + +#entry:nth-child(odd) { + background-color: #1d1f21; +} + +#entry:nth-child(even) { + background-color: #282a2e; +} + +#entry:selected { + background-color: #373b41; +} + +#input { + background-color: #282a2e; + color: #b4b7b4; + border-color: #373b41; +} + +#input:focus { + border-color: #FBA922; +} diff --git a/themes/base16-google-light.css b/themes/base16-google-light.css new file mode 100644 index 0000000..f35de22 --- /dev/null +++ b/themes/base16-google-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Google Light scheme by Seth Wright (http://sethawright.com) */ + +window { + background-color: #ffffff; + color: #373b41; +} + +#entry:nth-child(odd) { + background-color: #ffffff; +} + +#entry:nth-child(even) { + background-color: #e0e0e0; +} + +#entry:selected { + background-color: #c5c8c6; +} + +#input { + background-color: #e0e0e0; + color: #969896; + border-color: #c5c8c6; +} + +#input:focus { + border-color: #FBA922; +} diff --git a/themes/base16-grayscale-dark.css b/themes/base16-grayscale-dark.css new file mode 100644 index 0000000..0f15f54 --- /dev/null +++ b/themes/base16-grayscale-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Grayscale Dark scheme by Alexandre Gavioli (https://github.com/Alexx2/) */ + +window { + background-color: #101010; + color: #b9b9b9; +} + +#entry:nth-child(odd) { + background-color: #101010; +} + +#entry:nth-child(even) { + background-color: #252525; +} + +#entry:selected { + background-color: #464646; +} + +#input { + background-color: #252525; + color: #ababab; + border-color: #464646; +} + +#input:focus { + border-color: #a0a0a0; +} diff --git a/themes/base16-grayscale-light.css b/themes/base16-grayscale-light.css new file mode 100644 index 0000000..9f0c695 --- /dev/null +++ b/themes/base16-grayscale-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Grayscale Light scheme by Alexandre Gavioli (https://github.com/Alexx2/) */ + +window { + background-color: #f7f7f7; + color: #464646; +} + +#entry:nth-child(odd) { + background-color: #f7f7f7; +} + +#entry:nth-child(even) { + background-color: #e3e3e3; +} + +#entry:selected { + background-color: #b9b9b9; +} + +#input { + background-color: #e3e3e3; + color: #525252; + border-color: #b9b9b9; +} + +#input:focus { + border-color: #a0a0a0; +} diff --git a/themes/base16-greenscreen.css b/themes/base16-greenscreen.css new file mode 100644 index 0000000..e3123f2 --- /dev/null +++ b/themes/base16-greenscreen.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Green Screen scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #001100; + color: #00bb00; +} + +#entry:nth-child(odd) { + background-color: #001100; +} + +#entry:nth-child(even) { + background-color: #003300; +} + +#entry:selected { + background-color: #005500; +} + +#input { + background-color: #003300; + color: #009900; + border-color: #005500; +} + +#input:focus { + border-color: #007700; +} diff --git a/themes/base16-gruvbox-dark-hard.css b/themes/base16-gruvbox-dark-hard.css new file mode 100644 index 0000000..248303d --- /dev/null +++ b/themes/base16-gruvbox-dark-hard.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox dark, hard scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #1d2021; + color: #d5c4a1; +} + +#entry:nth-child(odd) { + background-color: #1d2021; +} + +#entry:nth-child(even) { + background-color: #3c3836; +} + +#entry:selected { + background-color: #504945; +} + +#input { + background-color: #3c3836; + color: #bdae93; + border-color: #504945; +} + +#input:focus { + border-color: #fabd2f; +} diff --git a/themes/base16-gruvbox-dark-medium.css b/themes/base16-gruvbox-dark-medium.css new file mode 100644 index 0000000..0fa11ee --- /dev/null +++ b/themes/base16-gruvbox-dark-medium.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox dark, medium scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #282828; + color: #d5c4a1; +} + +#entry:nth-child(odd) { + background-color: #282828; +} + +#entry:nth-child(even) { + background-color: #3c3836; +} + +#entry:selected { + background-color: #504945; +} + +#input { + background-color: #3c3836; + color: #bdae93; + border-color: #504945; +} + +#input:focus { + border-color: #fabd2f; +} diff --git a/themes/base16-gruvbox-dark-pale.css b/themes/base16-gruvbox-dark-pale.css new file mode 100644 index 0000000..76f7376 --- /dev/null +++ b/themes/base16-gruvbox-dark-pale.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox dark, pale scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #262626; + color: #dab997; +} + +#entry:nth-child(odd) { + background-color: #262626; +} + +#entry:nth-child(even) { + background-color: #3a3a3a; +} + +#entry:selected { + background-color: #4e4e4e; +} + +#input { + background-color: #3a3a3a; + color: #949494; + border-color: #4e4e4e; +} + +#input:focus { + border-color: #ffaf00; +} diff --git a/themes/base16-gruvbox-dark-soft.css b/themes/base16-gruvbox-dark-soft.css new file mode 100644 index 0000000..89f0148 --- /dev/null +++ b/themes/base16-gruvbox-dark-soft.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox dark, soft scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #32302f; + color: #d5c4a1; +} + +#entry:nth-child(odd) { + background-color: #32302f; +} + +#entry:nth-child(even) { + background-color: #3c3836; +} + +#entry:selected { + background-color: #504945; +} + +#input { + background-color: #3c3836; + color: #bdae93; + border-color: #504945; +} + +#input:focus { + border-color: #fabd2f; +} diff --git a/themes/base16-gruvbox-light-hard.css b/themes/base16-gruvbox-light-hard.css new file mode 100644 index 0000000..b3c6c13 --- /dev/null +++ b/themes/base16-gruvbox-light-hard.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox light, hard scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #f9f5d7; + color: #504945; +} + +#entry:nth-child(odd) { + background-color: #f9f5d7; +} + +#entry:nth-child(even) { + background-color: #ebdbb2; +} + +#entry:selected { + background-color: #d5c4a1; +} + +#input { + background-color: #ebdbb2; + color: #665c54; + border-color: #d5c4a1; +} + +#input:focus { + border-color: #b57614; +} diff --git a/themes/base16-gruvbox-light-medium.css b/themes/base16-gruvbox-light-medium.css new file mode 100644 index 0000000..aad855f --- /dev/null +++ b/themes/base16-gruvbox-light-medium.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox light, medium scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #fbf1c7; + color: #504945; +} + +#entry:nth-child(odd) { + background-color: #fbf1c7; +} + +#entry:nth-child(even) { + background-color: #ebdbb2; +} + +#entry:selected { + background-color: #d5c4a1; +} + +#input { + background-color: #ebdbb2; + color: #665c54; + border-color: #d5c4a1; +} + +#input:focus { + border-color: #b57614; +} diff --git a/themes/base16-gruvbox-light-soft.css b/themes/base16-gruvbox-light-soft.css new file mode 100644 index 0000000..de7f381 --- /dev/null +++ b/themes/base16-gruvbox-light-soft.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Gruvbox light, soft scheme by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ + +window { + background-color: #f2e5bc; + color: #504945; +} + +#entry:nth-child(odd) { + background-color: #f2e5bc; +} + +#entry:nth-child(even) { + background-color: #ebdbb2; +} + +#entry:selected { + background-color: #d5c4a1; +} + +#input { + background-color: #ebdbb2; + color: #665c54; + border-color: #d5c4a1; +} + +#input:focus { + border-color: #b57614; +} diff --git a/themes/base16-hardcore.css b/themes/base16-hardcore.css new file mode 100644 index 0000000..271c676 --- /dev/null +++ b/themes/base16-hardcore.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Hardcore scheme by Chris Caller */ + +window { + background-color: #212121; + color: #cdcdcd; +} + +#entry:nth-child(odd) { + background-color: #212121; +} + +#entry:nth-child(even) { + background-color: #303030; +} + +#entry:selected { + background-color: #353535; +} + +#input { + background-color: #303030; + color: #707070; + border-color: #353535; +} + +#input:focus { + border-color: #e6db74; +} diff --git a/themes/base16-harmonic-dark.css b/themes/base16-harmonic-dark.css new file mode 100644 index 0000000..8b767cd --- /dev/null +++ b/themes/base16-harmonic-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Harmonic16 Dark scheme by Jannik Siebert (https://github.com/janniks) */ + +window { + background-color: #0b1c2c; + color: #cbd6e2; +} + +#entry:nth-child(odd) { + background-color: #0b1c2c; +} + +#entry:nth-child(even) { + background-color: #223b54; +} + +#entry:selected { + background-color: #405c79; +} + +#input { + background-color: #223b54; + color: #aabcce; + border-color: #405c79; +} + +#input:focus { + border-color: #8bbf56; +} diff --git a/themes/base16-harmonic-light.css b/themes/base16-harmonic-light.css new file mode 100644 index 0000000..a869f33 --- /dev/null +++ b/themes/base16-harmonic-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Harmonic16 Light scheme by Jannik Siebert (https://github.com/janniks) */ + +window { + background-color: #f7f9fb; + color: #405c79; +} + +#entry:nth-child(odd) { + background-color: #f7f9fb; +} + +#entry:nth-child(even) { + background-color: #e5ebf1; +} + +#entry:selected { + background-color: #cbd6e2; +} + +#input { + background-color: #e5ebf1; + color: #627e99; + border-color: #cbd6e2; +} + +#input:focus { + border-color: #8bbf56; +} diff --git a/themes/base16-heetch-light.css b/themes/base16-heetch-light.css new file mode 100644 index 0000000..d5aae35 --- /dev/null +++ b/themes/base16-heetch-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Heetch Light scheme by Geoffrey Teale (tealeg@gmail.com) */ + +window { + background-color: #feffff; + color: #5a496e; +} + +#entry:nth-child(odd) { + background-color: #feffff; +} + +#entry:nth-child(even) { + background-color: #392551; +} + +#entry:selected { + background-color: #7b6d8b; +} + +#input { + background-color: #392551; + color: #ddd6e5; + border-color: #7b6d8b; +} + +#input:focus { + border-color: #5ba2b6; +} diff --git a/themes/base16-heetch.css b/themes/base16-heetch.css new file mode 100644 index 0000000..3751b5a --- /dev/null +++ b/themes/base16-heetch.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Heetch Dark scheme by Geoffrey Teale (tealeg@gmail.com) */ + +window { + background-color: #190134; + color: #BDB6C5; +} + +#entry:nth-child(odd) { + background-color: #190134; +} + +#entry:nth-child(even) { + background-color: #392551; +} + +#entry:selected { + background-color: #5A496E; +} + +#input { + background-color: #392551; + color: #9C92A8; + border-color: #5A496E; +} + +#input:focus { + border-color: #8F6C97; +} diff --git a/themes/base16-helios.css b/themes/base16-helios.css new file mode 100644 index 0000000..6824cd2 --- /dev/null +++ b/themes/base16-helios.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Helios scheme by Alex Meyer (https://github.com/reyemxela) */ + +window { + background-color: #1d2021; + color: #d5d5d5; +} + +#entry:nth-child(odd) { + background-color: #1d2021; +} + +#entry:nth-child(even) { + background-color: #383c3e; +} + +#entry:selected { + background-color: #53585b; +} + +#input { + background-color: #383c3e; + color: #cdcdcd; + border-color: #53585b; +} + +#input:focus { + border-color: #f19d1a; +} diff --git a/themes/base16-hopscotch.css b/themes/base16-hopscotch.css new file mode 100644 index 0000000..db3e687 --- /dev/null +++ b/themes/base16-hopscotch.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Hopscotch scheme by Jan T. Sott */ + +window { + background-color: #322931; + color: #b9b5b8; +} + +#entry:nth-child(odd) { + background-color: #322931; +} + +#entry:nth-child(even) { + background-color: #433b42; +} + +#entry:selected { + background-color: #5c545b; +} + +#input { + background-color: #433b42; + color: #989498; + border-color: #5c545b; +} + +#input:focus { + border-color: #fdcc59; +} diff --git a/themes/base16-horizon-dark.css b/themes/base16-horizon-dark.css new file mode 100644 index 0000000..4c4ac10 --- /dev/null +++ b/themes/base16-horizon-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Horizon Dark scheme by Michaël Ball (http://github.com/michael-ball/) */ + +window { + background-color: #1C1E26; + color: #CBCED0; +} + +#entry:nth-child(odd) { + background-color: #1C1E26; +} + +#entry:nth-child(even) { + background-color: #232530; +} + +#entry:selected { + background-color: #2E303E; +} + +#input { + background-color: #232530; + color: #9DA0A2; + border-color: #2E303E; +} + +#input:focus { + border-color: #EFB993; +} diff --git a/themes/base16-horizon-light.css b/themes/base16-horizon-light.css new file mode 100644 index 0000000..a2dfd57 --- /dev/null +++ b/themes/base16-horizon-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Horizon Light scheme by Michaël Ball (http://github.com/michael-ball/) */ + +window { + background-color: #FDF0ED; + color: #403C3D; +} + +#entry:nth-child(odd) { + background-color: #FDF0ED; +} + +#entry:nth-child(even) { + background-color: #FADAD1; +} + +#entry:selected { + background-color: #F9CBBE; +} + +#input { + background-color: #FADAD1; + color: #948C8A; + border-color: #F9CBBE; +} + +#input:focus { + border-color: #FBE0D9; +} diff --git a/themes/base16-horizon-terminal-dark.css b/themes/base16-horizon-terminal-dark.css new file mode 100644 index 0000000..b99b5af --- /dev/null +++ b/themes/base16-horizon-terminal-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Horizon Dark scheme by Michaël Ball (http://github.com/michael-ball/) */ + +window { + background-color: #1C1E26; + color: #CBCED0; +} + +#entry:nth-child(odd) { + background-color: #1C1E26; +} + +#entry:nth-child(even) { + background-color: #232530; +} + +#entry:selected { + background-color: #2E303E; +} + +#input { + background-color: #232530; + color: #9DA0A2; + border-color: #2E303E; +} + +#input:focus { + border-color: #FAC29A; +} diff --git a/themes/base16-horizon-terminal-light.css b/themes/base16-horizon-terminal-light.css new file mode 100644 index 0000000..babbcf6 --- /dev/null +++ b/themes/base16-horizon-terminal-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Horizon Light scheme by Michaël Ball (http://github.com/michael-ball/) */ + +window { + background-color: #FDF0ED; + color: #403C3D; +} + +#entry:nth-child(odd) { + background-color: #FDF0ED; +} + +#entry:nth-child(even) { + background-color: #FADAD1; +} + +#entry:selected { + background-color: #F9CBBE; +} + +#input { + background-color: #FADAD1; + color: #948C8A; + border-color: #F9CBBE; +} + +#input:focus { + border-color: #FADAD1; +} diff --git a/themes/base16-humanoid-dark.css b/themes/base16-humanoid-dark.css new file mode 100644 index 0000000..42d14bd --- /dev/null +++ b/themes/base16-humanoid-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Humanoid dark scheme by Thomas (tasmo) Friese */ + +window { + background-color: #232629; + color: #f8f8f2; +} + +#entry:nth-child(odd) { + background-color: #232629; +} + +#entry:nth-child(even) { + background-color: #333b3d; +} + +#entry:selected { + background-color: #484e54; +} + +#input { + background-color: #333b3d; + color: #c0c0bd; + border-color: #484e54; +} + +#input:focus { + border-color: #ffb627; +} diff --git a/themes/base16-humanoid-light.css b/themes/base16-humanoid-light.css new file mode 100644 index 0000000..eb6ddb8 --- /dev/null +++ b/themes/base16-humanoid-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Humanoid light scheme by Thomas (tasmo) Friese */ + +window { + background-color: #f8f8f2; + color: #232629; +} + +#entry:nth-child(odd) { + background-color: #f8f8f2; +} + +#entry:nth-child(even) { + background-color: #efefe9; +} + +#entry:selected { + background-color: #deded8; +} + +#input { + background-color: #efefe9; + color: #60615d; + border-color: #deded8; +} + +#input:focus { + border-color: #ffb627; +} diff --git a/themes/base16-ia-dark.css b/themes/base16-ia-dark.css new file mode 100644 index 0000000..79f0700 --- /dev/null +++ b/themes/base16-ia-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * iA Dark scheme by iA Inc. (modified by aramisgithub) */ + +window { + background-color: #1a1a1a; + color: #cccccc; +} + +#entry:nth-child(odd) { + background-color: #1a1a1a; +} + +#entry:nth-child(even) { + background-color: #222222; +} + +#entry:selected { + background-color: #1d414d; +} + +#input { + background-color: #222222; + color: #b8b8b8; + border-color: #1d414d; +} + +#input:focus { + border-color: #b99353; +} diff --git a/themes/base16-ia-light.css b/themes/base16-ia-light.css new file mode 100644 index 0000000..2bd1c59 --- /dev/null +++ b/themes/base16-ia-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * iA Light scheme by iA Inc. (modified by aramisgithub) */ + +window { + background-color: #f6f6f6; + color: #181818; +} + +#entry:nth-child(odd) { + background-color: #f6f6f6; +} + +#entry:nth-child(even) { + background-color: #dedede; +} + +#entry:selected { + background-color: #bde5f2; +} + +#input { + background-color: #dedede; + color: #767676; + border-color: #bde5f2; +} + +#input:focus { + border-color: #c48218; +} diff --git a/themes/base16-icy.css b/themes/base16-icy.css new file mode 100644 index 0000000..1a607fa --- /dev/null +++ b/themes/base16-icy.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Icy Dark scheme by icyphox (https://icyphox.ga) */ + +window { + background-color: #021012; + color: #095b67; +} + +#entry:nth-child(odd) { + background-color: #021012; +} + +#entry:nth-child(even) { + background-color: #031619; +} + +#entry:selected { + background-color: #041f23; +} + +#input { + background-color: #031619; + color: #064048; + border-color: #041f23; +} + +#input:focus { + border-color: #80deea; +} diff --git a/themes/base16-irblack.css b/themes/base16-irblack.css new file mode 100644 index 0000000..9ed107b --- /dev/null +++ b/themes/base16-irblack.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * IR Black scheme by Timothée Poisot (http://timotheepoisot.fr) */ + +window { + background-color: #000000; + color: #b5b3aa; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #242422; +} + +#entry:selected { + background-color: #484844; +} + +#input { + background-color: #242422; + color: #918f88; + border-color: #484844; +} + +#input:focus { + border-color: #ffffb6; +} diff --git a/themes/base16-isotope.css b/themes/base16-isotope.css new file mode 100644 index 0000000..1fd88a7 --- /dev/null +++ b/themes/base16-isotope.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Isotope scheme by Jan T. Sott */ + +window { + background-color: #000000; + color: #d0d0d0; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #404040; +} + +#entry:selected { + background-color: #606060; +} + +#input { + background-color: #404040; + color: #c0c0c0; + border-color: #606060; +} + +#input:focus { + border-color: #ff0099; +} diff --git a/themes/base16-macintosh.css b/themes/base16-macintosh.css new file mode 100644 index 0000000..0942de8 --- /dev/null +++ b/themes/base16-macintosh.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Macintosh scheme by Rebecca Bettencourt (http://www.kreativekorp.com) */ + +window { + background-color: #000000; + color: #c0c0c0; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #404040; +} + +#entry:selected { + background-color: #404040; +} + +#input { + background-color: #404040; + color: #808080; + border-color: #404040; +} + +#input:focus { + border-color: #fbf305; +} diff --git a/themes/base16-marrakesh.css b/themes/base16-marrakesh.css new file mode 100644 index 0000000..360f138 --- /dev/null +++ b/themes/base16-marrakesh.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Marrakesh scheme by Alexandre Gavioli (http://github.com/Alexx2/) */ + +window { + background-color: #201602; + color: #948e48; +} + +#entry:nth-child(odd) { + background-color: #201602; +} + +#entry:nth-child(even) { + background-color: #302e00; +} + +#entry:selected { + background-color: #5f5b17; +} + +#input { + background-color: #302e00; + color: #86813b; + border-color: #5f5b17; +} + +#input:focus { + border-color: #a88339; +} diff --git a/themes/base16-materia.css b/themes/base16-materia.css new file mode 100644 index 0000000..c9813eb --- /dev/null +++ b/themes/base16-materia.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Materia scheme by Defman21 */ + +window { + background-color: #263238; + color: #CDD3DE; +} + +#entry:nth-child(odd) { + background-color: #263238; +} + +#entry:nth-child(even) { + background-color: #2C393F; +} + +#entry:selected { + background-color: #37474F; +} + +#input { + background-color: #2C393F; + color: #C9CCD3; + border-color: #37474F; +} + +#input:focus { + border-color: #FFCC00; +} diff --git a/themes/base16-material-darker.css b/themes/base16-material-darker.css new file mode 100644 index 0000000..a23ccac --- /dev/null +++ b/themes/base16-material-darker.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Material Darker scheme by Nate Peterson */ + +window { + background-color: #212121; + color: #EEFFFF; +} + +#entry:nth-child(odd) { + background-color: #212121; +} + +#entry:nth-child(even) { + background-color: #303030; +} + +#entry:selected { + background-color: #353535; +} + +#input { + background-color: #303030; + color: #B2CCD6; + border-color: #353535; +} + +#input:focus { + border-color: #FFCB6B; +} diff --git a/themes/base16-material-lighter.css b/themes/base16-material-lighter.css new file mode 100644 index 0000000..c6e6abb --- /dev/null +++ b/themes/base16-material-lighter.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Material Lighter scheme by Nate Peterson */ + +window { + background-color: #FAFAFA; + color: #80CBC4; +} + +#entry:nth-child(odd) { + background-color: #FAFAFA; +} + +#entry:nth-child(even) { + background-color: #E7EAEC; +} + +#entry:selected { + background-color: #CCEAE7; +} + +#input { + background-color: #E7EAEC; + color: #8796B0; + border-color: #CCEAE7; +} + +#input:focus { + border-color: #FFB62C; +} diff --git a/themes/base16-material-palenight.css b/themes/base16-material-palenight.css new file mode 100644 index 0000000..3d04fc3 --- /dev/null +++ b/themes/base16-material-palenight.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Material Palenight scheme by Nate Peterson */ + +window { + background-color: #292D3E; + color: #959DCB; +} + +#entry:nth-child(odd) { + background-color: #292D3E; +} + +#entry:nth-child(even) { + background-color: #444267; +} + +#entry:selected { + background-color: #32374D; +} + +#input { + background-color: #444267; + color: #8796B0; + border-color: #32374D; +} + +#input:focus { + border-color: #FFCB6B; +} diff --git a/themes/base16-material-vivid.css b/themes/base16-material-vivid.css new file mode 100644 index 0000000..d5ac713 --- /dev/null +++ b/themes/base16-material-vivid.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Material Vivid scheme by joshyrobot */ + +window { + background-color: #202124; + color: #80868b; +} + +#entry:nth-child(odd) { + background-color: #202124; +} + +#entry:nth-child(even) { + background-color: #27292c; +} + +#entry:selected { + background-color: #323639; +} + +#input { + background-color: #27292c; + color: #676c71; + border-color: #323639; +} + +#input:focus { + border-color: #ffeb3b; +} diff --git a/themes/base16-material.css b/themes/base16-material.css new file mode 100644 index 0000000..1bb618b --- /dev/null +++ b/themes/base16-material.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Material scheme by Nate Peterson */ + +window { + background-color: #263238; + color: #EEFFFF; +} + +#entry:nth-child(odd) { + background-color: #263238; +} + +#entry:nth-child(even) { + background-color: #2E3C43; +} + +#entry:selected { + background-color: #314549; +} + +#input { + background-color: #2E3C43; + color: #B2CCD6; + border-color: #314549; +} + +#input:focus { + border-color: #FFCB6B; +} diff --git a/themes/base16-mellow-purple.css b/themes/base16-mellow-purple.css new file mode 100644 index 0000000..a1c76e5 --- /dev/null +++ b/themes/base16-mellow-purple.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Mellow Purple scheme by gidsi */ + +window { + background-color: #1e0528; + color: #ffeeff; +} + +#entry:nth-child(odd) { + background-color: #1e0528; +} + +#entry:nth-child(even) { + background-color: #1A092D; +} + +#entry:selected { + background-color: #331354; +} + +#input { + background-color: #1A092D; + color: #873582; + border-color: #331354; +} + +#input:focus { + border-color: #955ae7; +} diff --git a/themes/base16-mexico-light.css b/themes/base16-mexico-light.css new file mode 100644 index 0000000..6948192 --- /dev/null +++ b/themes/base16-mexico-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Mexico Light scheme by Sheldon Johnson */ + +window { + background-color: #f8f8f8; + color: #383838; +} + +#entry:nth-child(odd) { + background-color: #f8f8f8; +} + +#entry:nth-child(even) { + background-color: #e8e8e8; +} + +#entry:selected { + background-color: #d8d8d8; +} + +#input { + background-color: #e8e8e8; + color: #585858; + border-color: #d8d8d8; +} + +#input:focus { + border-color: #f79a0e; +} diff --git a/themes/base16-mocha.css b/themes/base16-mocha.css new file mode 100644 index 0000000..17a989c --- /dev/null +++ b/themes/base16-mocha.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Mocha scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #3B3228; + color: #d0c8c6; +} + +#entry:nth-child(odd) { + background-color: #3B3228; +} + +#entry:nth-child(even) { + background-color: #534636; +} + +#entry:selected { + background-color: #645240; +} + +#input { + background-color: #534636; + color: #b8afad; + border-color: #645240; +} + +#input:focus { + border-color: #f4bc87; +} diff --git a/themes/base16-monokai.css b/themes/base16-monokai.css new file mode 100644 index 0000000..8cb14a3 --- /dev/null +++ b/themes/base16-monokai.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Monokai scheme by Wimer Hazenberg (http://www.monokai.nl) */ + +window { + background-color: #272822; + color: #f8f8f2; +} + +#entry:nth-child(odd) { + background-color: #272822; +} + +#entry:nth-child(even) { + background-color: #383830; +} + +#entry:selected { + background-color: #49483e; +} + +#input { + background-color: #383830; + color: #a59f85; + border-color: #49483e; +} + +#input:focus { + border-color: #f4bf75; +} diff --git a/themes/base16-nebula.css b/themes/base16-nebula.css new file mode 100644 index 0000000..d4dcc00 --- /dev/null +++ b/themes/base16-nebula.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Nebula scheme by Gabriel Fontes (https://github.com/Misterio77) */ + +window { + background-color: #22273b; + color: #a4a6a9; +} + +#entry:nth-child(odd) { + background-color: #22273b; +} + +#entry:nth-child(even) { + background-color: #414f60; +} + +#entry:selected { + background-color: #5a8380; +} + +#input { + background-color: #414f60; + color: #87888b; + border-color: #5a8380; +} + +#input:focus { + border-color: #4f9062; +} diff --git a/themes/base16-nord.css b/themes/base16-nord.css new file mode 100644 index 0000000..16e4031 --- /dev/null +++ b/themes/base16-nord.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Nord scheme by arcticicestudio */ + +window { + background-color: #2E3440; + color: #E5E9F0; +} + +#entry:nth-child(odd) { + background-color: #2E3440; +} + +#entry:nth-child(even) { + background-color: #3B4252; +} + +#entry:selected { + background-color: #434C5E; +} + +#input { + background-color: #3B4252; + color: #D8DEE9; + border-color: #434C5E; +} + +#input:focus { + border-color: #EBCB8B; +} diff --git a/themes/base16-nova.css b/themes/base16-nova.css new file mode 100644 index 0000000..74f5abd --- /dev/null +++ b/themes/base16-nova.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Nova scheme by George Essig (https://github.com/gessig), Trevor D. Miller (https://trevordmiller.com) */ + +window { + background-color: #3C4C55; + color: #C5D4DD; +} + +#entry:nth-child(odd) { + background-color: #3C4C55; +} + +#entry:nth-child(even) { + background-color: #556873; +} + +#entry:selected { + background-color: #6A7D89; +} + +#input { + background-color: #556873; + color: #899BA6; + border-color: #6A7D89; +} + +#input:focus { + border-color: #A8CE93; +} diff --git a/themes/base16-ocean.css b/themes/base16-ocean.css new file mode 100644 index 0000000..948aa83 --- /dev/null +++ b/themes/base16-ocean.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Ocean scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #2b303b; + color: #c0c5ce; +} + +#entry:nth-child(odd) { + background-color: #2b303b; +} + +#entry:nth-child(even) { + background-color: #343d46; +} + +#entry:selected { + background-color: #4f5b66; +} + +#input { + background-color: #343d46; + color: #a7adba; + border-color: #4f5b66; +} + +#input:focus { + border-color: #ebcb8b; +} diff --git a/themes/base16-oceanicnext.css b/themes/base16-oceanicnext.css new file mode 100644 index 0000000..e4d6cf3 --- /dev/null +++ b/themes/base16-oceanicnext.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * OceanicNext scheme by https://github.com/voronianski/oceanic-next-color-scheme */ + +window { + background-color: #1B2B34; + color: #C0C5CE; +} + +#entry:nth-child(odd) { + background-color: #1B2B34; +} + +#entry:nth-child(even) { + background-color: #343D46; +} + +#entry:selected { + background-color: #4F5B66; +} + +#input { + background-color: #343D46; + color: #A7ADBA; + border-color: #4F5B66; +} + +#input:focus { + border-color: #FAC863; +} diff --git a/themes/base16-one-light.css b/themes/base16-one-light.css new file mode 100644 index 0000000..5aaef79 --- /dev/null +++ b/themes/base16-one-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * One Light scheme by Daniel Pfeifer (http://github.com/purpleKarrot) */ + +window { + background-color: #fafafa; + color: #383a42; +} + +#entry:nth-child(odd) { + background-color: #fafafa; +} + +#entry:nth-child(even) { + background-color: #f0f0f1; +} + +#entry:selected { + background-color: #e5e5e6; +} + +#input { + background-color: #f0f0f1; + color: #696c77; + border-color: #e5e5e6; +} + +#input:focus { + border-color: #c18401; +} diff --git a/themes/base16-onedark.css b/themes/base16-onedark.css new file mode 100644 index 0000000..7e6b56c --- /dev/null +++ b/themes/base16-onedark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * OneDark scheme by Lalit Magant (http://github.com/tilal6991) */ + +window { + background-color: #282c34; + color: #abb2bf; +} + +#entry:nth-child(odd) { + background-color: #282c34; +} + +#entry:nth-child(even) { + background-color: #353b45; +} + +#entry:selected { + background-color: #3e4451; +} + +#input { + background-color: #353b45; + color: #565c64; + border-color: #3e4451; +} + +#input:focus { + border-color: #e5c07b; +} diff --git a/themes/base16-outrun-dark.css b/themes/base16-outrun-dark.css new file mode 100644 index 0000000..e47fe67 --- /dev/null +++ b/themes/base16-outrun-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Outrun Dark scheme by Hugo Delahousse (http://github.com/hugodelahousse/) */ + +window { + background-color: #00002A; + color: #D0D0FA; +} + +#entry:nth-child(odd) { + background-color: #00002A; +} + +#entry:nth-child(even) { + background-color: #20204A; +} + +#entry:selected { + background-color: #30305A; +} + +#input { + background-color: #20204A; + color: #B0B0DA; + border-color: #30305A; +} + +#input:focus { + border-color: #F3E877; +} diff --git a/themes/base16-papercolor-dark.css b/themes/base16-papercolor-dark.css new file mode 100644 index 0000000..73aa6a9 --- /dev/null +++ b/themes/base16-papercolor-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * PaperColor Dark scheme by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */ + +window { + background-color: #1c1c1c; + color: #808080; +} + +#entry:nth-child(odd) { + background-color: #1c1c1c; +} + +#entry:nth-child(even) { + background-color: #af005f; +} + +#entry:selected { + background-color: #5faf00; +} + +#input { + background-color: #af005f; + color: #5fafd7; + border-color: #5faf00; +} + +#input:focus { + border-color: #afd700; +} diff --git a/themes/base16-papercolor-light.css b/themes/base16-papercolor-light.css new file mode 100644 index 0000000..eda73d7 --- /dev/null +++ b/themes/base16-papercolor-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * PaperColor Light scheme by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */ + +window { + background-color: #eeeeee; + color: #444444; +} + +#entry:nth-child(odd) { + background-color: #eeeeee; +} + +#entry:nth-child(even) { + background-color: #af0000; +} + +#entry:selected { + background-color: #008700; +} + +#input { + background-color: #af0000; + color: #0087af; + border-color: #008700; +} + +#input:focus { + border-color: #d70087; +} diff --git a/themes/base16-paraiso.css b/themes/base16-paraiso.css new file mode 100644 index 0000000..3e0df48 --- /dev/null +++ b/themes/base16-paraiso.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Paraiso scheme by Jan T. Sott */ + +window { + background-color: #2f1e2e; + color: #a39e9b; +} + +#entry:nth-child(odd) { + background-color: #2f1e2e; +} + +#entry:nth-child(even) { + background-color: #41323f; +} + +#entry:selected { + background-color: #4f424c; +} + +#input { + background-color: #41323f; + color: #8d8687; + border-color: #4f424c; +} + +#input:focus { + border-color: #fec418; +} diff --git a/themes/base16-pasque.css b/themes/base16-pasque.css new file mode 100644 index 0000000..32651ee --- /dev/null +++ b/themes/base16-pasque.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Pasque scheme by Gabriel Fontes (https://github.com/Misterio77) */ + +window { + background-color: #271C3A; + color: #DEDCDF; +} + +#entry:nth-child(odd) { + background-color: #271C3A; +} + +#entry:nth-child(even) { + background-color: #100323; +} + +#entry:selected { + background-color: #3E2D5C; +} + +#input { + background-color: #100323; + color: #BEBCBF; + border-color: #3E2D5C; +} + +#input:focus { + border-color: #804ead; +} diff --git a/themes/base16-phd.css b/themes/base16-phd.css new file mode 100644 index 0000000..0113aa8 --- /dev/null +++ b/themes/base16-phd.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * PhD scheme by Hennig Hasemann (http://leetless.de/vim.html) */ + +window { + background-color: #061229; + color: #b8bbc2; +} + +#entry:nth-child(odd) { + background-color: #061229; +} + +#entry:nth-child(even) { + background-color: #2a3448; +} + +#entry:selected { + background-color: #4d5666; +} + +#input { + background-color: #2a3448; + color: #9a99a3; + border-color: #4d5666; +} + +#input:focus { + border-color: #fbd461; +} diff --git a/themes/base16-pico.css b/themes/base16-pico.css new file mode 100644 index 0000000..3209c21 --- /dev/null +++ b/themes/base16-pico.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Pico scheme by PICO-8 (http://www.lexaloffle.com/pico-8.php) */ + +window { + background-color: #000000; + color: #5f574f; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #1d2b53; +} + +#entry:selected { + background-color: #7e2553; +} + +#input { + background-color: #1d2b53; + color: #ab5236; + border-color: #7e2553; +} + +#input:focus { + border-color: #fff024; +} diff --git a/themes/base16-pop.css b/themes/base16-pop.css new file mode 100644 index 0000000..f606702 --- /dev/null +++ b/themes/base16-pop.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Pop scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #000000; + color: #d0d0d0; +} + +#entry:nth-child(odd) { + background-color: #000000; +} + +#entry:nth-child(even) { + background-color: #202020; +} + +#entry:selected { + background-color: #303030; +} + +#input { + background-color: #202020; + color: #b0b0b0; + border-color: #303030; +} + +#input:focus { + border-color: #f8ca12; +} diff --git a/themes/base16-porple.css b/themes/base16-porple.css new file mode 100644 index 0000000..c9678a8 --- /dev/null +++ b/themes/base16-porple.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Porple scheme by Niek den Breeje (https://github.com/AuditeMarlow) */ + +window { + background-color: #292c36; + color: #d8d8d8; +} + +#entry:nth-child(odd) { + background-color: #292c36; +} + +#entry:nth-child(even) { + background-color: #333344; +} + +#entry:selected { + background-color: #474160; +} + +#input { + background-color: #333344; + color: #b8b8b8; + border-color: #474160; +} + +#input:focus { + border-color: #efa16b; +} diff --git a/themes/base16-railscasts.css b/themes/base16-railscasts.css new file mode 100644 index 0000000..2d20314 --- /dev/null +++ b/themes/base16-railscasts.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Railscasts scheme by Ryan Bates (http://railscasts.com) */ + +window { + background-color: #2b2b2b; + color: #e6e1dc; +} + +#entry:nth-child(odd) { + background-color: #2b2b2b; +} + +#entry:nth-child(even) { + background-color: #272935; +} + +#entry:selected { + background-color: #3a4055; +} + +#input { + background-color: #272935; + color: #d4cfc9; + border-color: #3a4055; +} + +#input:focus { + border-color: #ffc66d; +} diff --git a/themes/base16-rebecca.css b/themes/base16-rebecca.css new file mode 100644 index 0000000..832c5c5 --- /dev/null +++ b/themes/base16-rebecca.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Rebecca scheme by Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) */ + +window { + background-color: #292a44; + color: #f1eff8; +} + +#entry:nth-child(odd) { + background-color: #292a44; +} + +#entry:nth-child(even) { + background-color: #663399; +} + +#entry:selected { + background-color: #383a62; +} + +#input { + background-color: #663399; + color: #a0a0c5; + border-color: #383a62; +} + +#input:focus { + border-color: #ae81ff; +} diff --git a/themes/base16-sandcastle.css b/themes/base16-sandcastle.css new file mode 100644 index 0000000..06b71fb --- /dev/null +++ b/themes/base16-sandcastle.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Sandcastle scheme by George Essig (https://github.com/gessig) */ + +window { + background-color: #282c34; + color: #a89984; +} + +#entry:nth-child(odd) { + background-color: #282c34; +} + +#entry:nth-child(even) { + background-color: #2c323b; +} + +#entry:selected { + background-color: #3e4451; +} + +#input { + background-color: #2c323b; + color: #928374; + border-color: #3e4451; +} + +#input:focus { + border-color: #a07e3b; +} diff --git a/themes/base16-seti.css b/themes/base16-seti.css new file mode 100644 index 0000000..64d8aa4 --- /dev/null +++ b/themes/base16-seti.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Seti UI scheme by */ + +window { + background-color: #151718; + color: #d6d6d6; +} + +#entry:nth-child(odd) { + background-color: #151718; +} + +#entry:nth-child(even) { + background-color: #282a2b; +} + +#entry:selected { + background-color: #3B758C; +} + +#input { + background-color: #282a2b; + color: #43a5d5; + border-color: #3B758C; +} + +#input:focus { + border-color: #e6cd69; +} diff --git a/themes/base16-shapeshifter.css b/themes/base16-shapeshifter.css new file mode 100644 index 0000000..22c650d --- /dev/null +++ b/themes/base16-shapeshifter.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Shapeshifter scheme by Tyler Benziger (http://tybenz.com) */ + +window { + background-color: #f9f9f9; + color: #102015; +} + +#entry:nth-child(odd) { + background-color: #f9f9f9; +} + +#entry:nth-child(even) { + background-color: #e0e0e0; +} + +#entry:selected { + background-color: #ababab; +} + +#input { + background-color: #e0e0e0; + color: #343434; + border-color: #ababab; +} + +#input:focus { + border-color: #dddd13; +} diff --git a/themes/base16-snazzy.css b/themes/base16-snazzy.css new file mode 100644 index 0000000..e2c6cce --- /dev/null +++ b/themes/base16-snazzy.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Snazzy scheme by Chawye Hsu (https://github.com/h404bi) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) */ + +window { + background-color: #282a36; + color: #e2e4e5; +} + +#entry:nth-child(odd) { + background-color: #282a36; +} + +#entry:nth-child(even) { + background-color: #34353e; +} + +#entry:selected { + background-color: #43454f; +} + +#input { + background-color: #34353e; + color: #a5a5a9; + border-color: #43454f; +} + +#input:focus { + border-color: #f3f99d; +} diff --git a/themes/base16-solarflare.css b/themes/base16-solarflare.css new file mode 100644 index 0000000..69eeda7 --- /dev/null +++ b/themes/base16-solarflare.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Solar Flare scheme by Chuck Harmston (https://chuck.harmston.ch) */ + +window { + background-color: #18262F; + color: #A6AFB8; +} + +#entry:nth-child(odd) { + background-color: #18262F; +} + +#entry:nth-child(even) { + background-color: #222E38; +} + +#entry:selected { + background-color: #586875; +} + +#input { + background-color: #222E38; + color: #85939E; + border-color: #586875; +} + +#input:focus { + border-color: #E4B51C; +} diff --git a/themes/base16-solarized-dark.css b/themes/base16-solarized-dark.css new file mode 100644 index 0000000..b71fe87 --- /dev/null +++ b/themes/base16-solarized-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Solarized Dark scheme by Ethan Schoonover (modified by aramisgithub) */ + +window { + background-color: #002b36; + color: #93a1a1; +} + +#entry:nth-child(odd) { + background-color: #002b36; +} + +#entry:nth-child(even) { + background-color: #073642; +} + +#entry:selected { + background-color: #586e75; +} + +#input { + background-color: #073642; + color: #839496; + border-color: #586e75; +} + +#input:focus { + border-color: #b58900; +} diff --git a/themes/base16-solarized-light.css b/themes/base16-solarized-light.css new file mode 100644 index 0000000..6ee650a --- /dev/null +++ b/themes/base16-solarized-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Solarized Light scheme by Ethan Schoonover (modified by aramisgithub) */ + +window { + background-color: #fdf6e3; + color: #586e75; +} + +#entry:nth-child(odd) { + background-color: #fdf6e3; +} + +#entry:nth-child(even) { + background-color: #eee8d5; +} + +#entry:selected { + background-color: #93a1a1; +} + +#input { + background-color: #eee8d5; + color: #657b83; + border-color: #93a1a1; +} + +#input:focus { + border-color: #b58900; +} diff --git a/themes/base16-spacemacs.css b/themes/base16-spacemacs.css new file mode 100644 index 0000000..20d6446 --- /dev/null +++ b/themes/base16-spacemacs.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Spacemacs scheme by Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) */ + +window { + background-color: #1f2022; + color: #a3a3a3; +} + +#entry:nth-child(odd) { + background-color: #1f2022; +} + +#entry:nth-child(even) { + background-color: #282828; +} + +#entry:selected { + background-color: #444155; +} + +#input { + background-color: #282828; + color: #b8b8b8; + border-color: #444155; +} + +#input:focus { + border-color: #b1951d; +} diff --git a/themes/base16-summercamp.css b/themes/base16-summercamp.css new file mode 100644 index 0000000..dd6db8f --- /dev/null +++ b/themes/base16-summercamp.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * summercamp scheme by zoe firi (zoefiri.github.io) */ + +window { + background-color: #1c1810; + color: #736e55; +} + +#entry:nth-child(odd) { + background-color: #1c1810; +} + +#entry:nth-child(even) { + background-color: #2a261c; +} + +#entry:selected { + background-color: #3a3527; +} + +#input { + background-color: #2a261c; + color: #5f5b45; + border-color: #3a3527; +} + +#input:focus { + border-color: #f2ff27; +} diff --git a/themes/base16-summerfruit-dark.css b/themes/base16-summerfruit-dark.css new file mode 100644 index 0000000..930c99e --- /dev/null +++ b/themes/base16-summerfruit-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Summerfruit Dark scheme by Christopher Corley (http://christop.club/) */ + +window { + background-color: #151515; + color: #D0D0D0; +} + +#entry:nth-child(odd) { + background-color: #151515; +} + +#entry:nth-child(even) { + background-color: #202020; +} + +#entry:selected { + background-color: #303030; +} + +#input { + background-color: #202020; + color: #B0B0B0; + border-color: #303030; +} + +#input:focus { + border-color: #ABA800; +} diff --git a/themes/base16-summerfruit-light.css b/themes/base16-summerfruit-light.css new file mode 100644 index 0000000..0291087 --- /dev/null +++ b/themes/base16-summerfruit-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Summerfruit Light scheme by Christopher Corley (http://christop.club/) */ + +window { + background-color: #FFFFFF; + color: #101010; +} + +#entry:nth-child(odd) { + background-color: #FFFFFF; +} + +#entry:nth-child(even) { + background-color: #E0E0E0; +} + +#entry:selected { + background-color: #D0D0D0; +} + +#input { + background-color: #E0E0E0; + color: #000000; + border-color: #D0D0D0; +} + +#input:focus { + border-color: #ABA800; +} diff --git a/themes/base16-synth-midnight-dark.css b/themes/base16-synth-midnight-dark.css new file mode 100644 index 0000000..6bf6f14 --- /dev/null +++ b/themes/base16-synth-midnight-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Synth Midnight Terminal Dark scheme by Michaël Ball (http://github.com/michael-ball/) */ + +window { + background-color: #050608; + color: #c1c3c4; +} + +#entry:nth-child(odd) { + background-color: #050608; +} + +#entry:nth-child(even) { + background-color: #1a1b1c; +} + +#entry:selected { + background-color: #28292a; +} + +#input { + background-color: #1a1b1c; + color: #a3a5a6; + border-color: #28292a; +} + +#input:focus { + border-color: #c9d364; +} diff --git a/themes/base16-synth-midnight-light.css b/themes/base16-synth-midnight-light.css new file mode 100644 index 0000000..b77d5a0 --- /dev/null +++ b/themes/base16-synth-midnight-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Synth Midnight Terminal Light scheme by Michaël Ball (http://github.com/michael-ball/) */ + +window { + background-color: #dddfe0; + color: #28292a; +} + +#entry:nth-child(odd) { + background-color: #dddfe0; +} + +#entry:nth-child(even) { + background-color: #cfd1d2; +} + +#entry:selected { + background-color: #c1c3c4; +} + +#input { + background-color: #cfd1d2; + color: #474849; + border-color: #c1c3c4; +} + +#input:focus { + border-color: #c9d364; +} diff --git a/themes/base16-tango.css b/themes/base16-tango.css new file mode 100644 index 0000000..6d80ddc --- /dev/null +++ b/themes/base16-tango.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Tango scheme by @Schnouki, based on the Tango Desktop Project */ + +window { + background-color: #2e3436; + color: #d3d7cf; +} + +#entry:nth-child(odd) { + background-color: #2e3436; +} + +#entry:nth-child(even) { + background-color: #8ae234; +} + +#entry:selected { + background-color: #fce94f; +} + +#input { + background-color: #8ae234; + color: #729fcf; + border-color: #fce94f; +} + +#input:focus { + border-color: #c4a000; +} diff --git a/themes/base16-tomorrow-night-eighties.css b/themes/base16-tomorrow-night-eighties.css new file mode 100644 index 0000000..7f0a185 --- /dev/null +++ b/themes/base16-tomorrow-night-eighties.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Tomorrow Night scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #2d2d2d; + color: #cccccc; +} + +#entry:nth-child(odd) { + background-color: #2d2d2d; +} + +#entry:nth-child(even) { + background-color: #393939; +} + +#entry:selected { + background-color: #515151; +} + +#input { + background-color: #393939; + color: #b4b7b4; + border-color: #515151; +} + +#input:focus { + border-color: #ffcc66; +} diff --git a/themes/base16-tomorrow-night.css b/themes/base16-tomorrow-night.css new file mode 100644 index 0000000..015f27e --- /dev/null +++ b/themes/base16-tomorrow-night.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Tomorrow Night scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #1d1f21; + color: #c5c8c6; +} + +#entry:nth-child(odd) { + background-color: #1d1f21; +} + +#entry:nth-child(even) { + background-color: #282a2e; +} + +#entry:selected { + background-color: #373b41; +} + +#input { + background-color: #282a2e; + color: #b4b7b4; + border-color: #373b41; +} + +#input:focus { + border-color: #f0c674; +} diff --git a/themes/base16-tomorrow.css b/themes/base16-tomorrow.css new file mode 100644 index 0000000..909e743 --- /dev/null +++ b/themes/base16-tomorrow.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Tomorrow scheme by Chris Kempson (http://chriskempson.com) */ + +window { + background-color: #ffffff; + color: #4d4d4c; +} + +#entry:nth-child(odd) { + background-color: #ffffff; +} + +#entry:nth-child(even) { + background-color: #e0e0e0; +} + +#entry:selected { + background-color: #d6d6d6; +} + +#input { + background-color: #e0e0e0; + color: #969896; + border-color: #d6d6d6; +} + +#input:focus { + border-color: #eab700; +} diff --git a/themes/base16-tube.css b/themes/base16-tube.css new file mode 100644 index 0000000..926ebdd --- /dev/null +++ b/themes/base16-tube.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * London Tube scheme by Jan T. Sott */ + +window { + background-color: #231f20; + color: #d9d8d8; +} + +#entry:nth-child(odd) { + background-color: #231f20; +} + +#entry:nth-child(even) { + background-color: #1c3f95; +} + +#entry:selected { + background-color: #5a5758; +} + +#input { + background-color: #1c3f95; + color: #959ca1; + border-color: #5a5758; +} + +#input:focus { + border-color: #ffd204; +} diff --git a/themes/base16-twilight.css b/themes/base16-twilight.css new file mode 100644 index 0000000..2792672 --- /dev/null +++ b/themes/base16-twilight.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Twilight scheme by David Hart (https://github.com/hartbit) */ + +window { + background-color: #1e1e1e; + color: #a7a7a7; +} + +#entry:nth-child(odd) { + background-color: #1e1e1e; +} + +#entry:nth-child(even) { + background-color: #323537; +} + +#entry:selected { + background-color: #464b50; +} + +#input { + background-color: #323537; + color: #838184; + border-color: #464b50; +} + +#input:focus { + border-color: #f9ee98; +} diff --git a/themes/base16-unikitty-dark.css b/themes/base16-unikitty-dark.css new file mode 100644 index 0000000..e6a70b8 --- /dev/null +++ b/themes/base16-unikitty-dark.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Unikitty Dark scheme by Josh W Lewis (@joshwlewis) */ + +window { + background-color: #2e2a31; + color: #bcbabe; +} + +#entry:nth-child(odd) { + background-color: #2e2a31; +} + +#entry:nth-child(even) { + background-color: #4a464d; +} + +#entry:selected { + background-color: #666369; +} + +#input { + background-color: #4a464d; + color: #9f9da2; + border-color: #666369; +} + +#input:focus { + border-color: #dc8a0e; +} diff --git a/themes/base16-unikitty-light.css b/themes/base16-unikitty-light.css new file mode 100644 index 0000000..7ce2cbe --- /dev/null +++ b/themes/base16-unikitty-light.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Unikitty Light scheme by Josh W Lewis (@joshwlewis) */ + +window { + background-color: #ffffff; + color: #6c696e; +} + +#entry:nth-child(odd) { + background-color: #ffffff; +} + +#entry:nth-child(even) { + background-color: #e1e1e2; +} + +#entry:selected { + background-color: #c4c3c5; +} + +#input { + background-color: #e1e1e2; + color: #89878b; + border-color: #c4c3c5; +} + +#input:focus { + border-color: #dc8a0e; +} diff --git a/themes/base16-vulcan.css b/themes/base16-vulcan.css new file mode 100644 index 0000000..71a4747 --- /dev/null +++ b/themes/base16-vulcan.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * vulcan scheme by Andrey Varfolomeev */ + +window { + background-color: #041523; + color: #5b778c; +} + +#entry:nth-child(odd) { + background-color: #041523; +} + +#entry:nth-child(even) { + background-color: #122339; +} + +#entry:selected { + background-color: #003552; +} + +#input { + background-color: #122339; + color: #6b6977; + border-color: #003552; +} + +#input:focus { + border-color: #adb4b9; +} diff --git a/themes/base16-woodland.css b/themes/base16-woodland.css new file mode 100644 index 0000000..362ccff --- /dev/null +++ b/themes/base16-woodland.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Woodland scheme by Jay Cornwall (https://jcornwall.com) */ + +window { + background-color: #231e18; + color: #cabcb1; +} + +#entry:nth-child(odd) { + background-color: #231e18; +} + +#entry:nth-child(even) { + background-color: #302b25; +} + +#entry:selected { + background-color: #48413a; +} + +#input { + background-color: #302b25; + color: #b4a490; + border-color: #48413a; +} + +#input:focus { + border-color: #e0ac16; +} diff --git a/themes/base16-xcode-dusk.css b/themes/base16-xcode-dusk.css new file mode 100644 index 0000000..608e09e --- /dev/null +++ b/themes/base16-xcode-dusk.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * XCode Dusk scheme by Elsa Gonsiorowski (https://github.com/gonsie) */ + +window { + background-color: #282B35; + color: #939599; +} + +#entry:nth-child(odd) { + background-color: #282B35; +} + +#entry:nth-child(even) { + background-color: #3D4048; +} + +#entry:selected { + background-color: #53555D; +} + +#input { + background-color: #3D4048; + color: #7E8086; + border-color: #53555D; +} + +#input:focus { + border-color: #438288; +} diff --git a/themes/base16-zenburn.css b/themes/base16-zenburn.css new file mode 100644 index 0000000..3d8d263 --- /dev/null +++ b/themes/base16-zenburn.css @@ -0,0 +1,30 @@ +/* base16-wofi (https://sr.ht/~knezi/base16-wofi) + * Base16 wofi template by knezi + * Zenburn scheme by elnawe */ + +window { + background-color: #383838; + color: #dcdccc; +} + +#entry:nth-child(odd) { + background-color: #383838; +} + +#entry:nth-child(even) { + background-color: #404040; +} + +#entry:selected { + background-color: #606060; +} + +#input { + background-color: #404040; + color: #808080; + border-color: #606060; +} + +#input:focus { + border-color: #e0cf9f; +} |
