summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh6042026-02-28 17:45:17 -0500
committerkj_sh6042026-02-28 17:45:17 -0500
commit1d52581134911c642105b283f8735a46d02f2490 (patch)
tree9c854cce5784aacf1b8ae91aec79536dbac165e0
parent1e3023a9caf3df18354e39c13beb8635e61ec578 (diff)
refactor: README.md
-rw-r--r--README.md54
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
3a 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
31cp -r . ~/.vscode/extensions/kijish
32```
33
34Then restart VS Code and select **kijish** from the Color Theme picker (`Ctrl+K Ctrl+T`).
35
36### package and install via vsix
37
38Requires [vsce](https://github.com/microsoft/vscode-vsce):
39
40```sh
41npm install -g @vscode/vsce
42make package # builds kijish-YYYYMMDD-HHMM.vsix
43code --install-extension kijish-*.vsix
44```
45
46Or install directly:
47
48```sh
49make install # builds and installs automatically
50```
51
52## license
53
54This 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