├── .gitignore ├── LICENSE ├── README.md ├── extension.toml ├── generate_theme └── templates ├── default.json.template └── readability.json.template /.gitignore: -------------------------------------------------------------------------------- 1 | themes 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/zed-theme-wal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/zed-theme-wal/HEAD/README.md -------------------------------------------------------------------------------- /extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/zed-theme-wal/HEAD/extension.toml -------------------------------------------------------------------------------- /generate_theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/zed-theme-wal/HEAD/generate_theme -------------------------------------------------------------------------------- /templates/default.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/zed-theme-wal/HEAD/templates/default.json.template -------------------------------------------------------------------------------- /templates/readability.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwn/zed-theme-wal/HEAD/templates/readability.json.template --------------------------------------------------------------------------------