diff options
| author | kj_sh604 | 2026-02-28 17:45:17 -0500 |
|---|---|---|
| committer | kj_sh604 | 2026-02-28 17:45:17 -0500 |
| commit | 1d52581134911c642105b283f8735a46d02f2490 (patch) | |
| tree | 9c854cce5784aacf1b8ae91aec79536dbac165e0 | |
| parent | 1e3023a9caf3df18354e39c13beb8635e61ec578 (diff) | |
refactor: README.md
| -rw-r--r-- | README.md | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..06e651d --- /dev/null +++ b/README.md | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | # kijish | ||
| 2 | |||
| 3 | a dark VSCode theme derived from the **Dark Pastel** palette found in Qterminal and xfce4-terminal. | ||
| 4 | |||
| 5 | ## dark-pastels.colors | ||
| 6 | |||
| 7 | | Role | Hex | | ||
| 8 | |-----------------|-----------| | ||
| 9 | | Background | `#2c2c2c` | | ||
| 10 | | Foreground | `#dcdcdc` | | ||
| 11 | | Black | `#3f3f3f` | | ||
| 12 | | Red | `#d67979` | | ||
| 13 | | Green | `#60b48a` | | ||
| 14 | | Yellow | `#dfaf8f` | | ||
| 15 | | Blue | `#9ab8d7` | | ||
| 16 | | Magenta | `#dc8cc3` | | ||
| 17 | | Cyan | `#8cd0d3` | | ||
| 18 | | Bright Black | `#709080` | | ||
| 19 | | Bright Red | `#dca3a3` | | ||
| 20 | | Bright Green | `#72d5a3` | | ||
| 21 | | Bright Yellow | `#f0dfaf` | | ||
| 22 | | Bright Blue | `#94bff3` | | ||
| 23 | | Bright Magenta | `#ec93d3` | | ||
| 24 | | Bright Cyan | `#93e0e3` | | ||
| 25 | |||
| 26 | ## install | ||
| 27 | |||
| 28 | ### from source | ||
| 29 | |||
| 30 | ```sh | ||
| 31 | cp -r . ~/.vscode/extensions/kijish | ||
| 32 | ``` | ||
| 33 | |||
| 34 | Then restart VS Code and select **kijish** from the Color Theme picker (`Ctrl+K Ctrl+T`). | ||
| 35 | |||
| 36 | ### package and install via vsix | ||
| 37 | |||
| 38 | Requires [vsce](https://github.com/microsoft/vscode-vsce): | ||
| 39 | |||
| 40 | ```sh | ||
| 41 | npm install -g @vscode/vsce | ||
| 42 | make package # builds kijish-YYYYMMDD-HHMM.vsix | ||
| 43 | code --install-extension kijish-*.vsix | ||
| 44 | ``` | ||
| 45 | |||
| 46 | Or install directly: | ||
| 47 | |||
| 48 | ```sh | ||
| 49 | make install # builds and installs automatically | ||
| 50 | ``` | ||
| 51 | |||
| 52 | ## license | ||
| 53 | |||
| 54 | This work is licensed under the Creative Commons CC0 1.0 Universal License. To view a copy of this license, visit http://creativecommons.org/publicdomain/zero/1.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file | ||
