aboutsummaryrefslogtreecommitdiff
path: root/runtime/themes
diff options
context:
space:
mode:
authortwo-six2022-06-25 17:09:04 +0000
committerGitHub2022-06-25 17:09:04 +0000
commit18435899b2310f5605153acfb7108e01f70caa79 (patch)
tree5687fed282c1e911118f4726a5633293295eab3b /runtime/themes
parent33e6df870710a48e89875b6f7471b9ee5f54af50 (diff)
[Theme] Acme (#2876)
Diffstat (limited to 'runtime/themes')
-rw-r--r--runtime/themes/acme.toml28
1 files changed, 28 insertions, 0 deletions
diff --git a/runtime/themes/acme.toml b/runtime/themes/acme.toml
new file mode 100644
index 00000000..263cbf90
--- /dev/null
+++ b/runtime/themes/acme.toml
@@ -0,0 +1,28 @@
+# Author: Two-Six<twopsix@duck.com>
+
+"ui.background" = {bg="acme_bg"}
+"ui.text" = "black"
+"ui.selection" = {bg="selected"}
+"ui.statusline" = {bg="acme_bar_bg"}
+"ui.statusline.inactive" = {bg="acme_bar_inactive"}
+"ui.virtual" = "indent"
+"ui.cursor.match" = {bg="acme_bar_bg"}
+"ui.cursor" = {bg="cursor", fg="white"}
+"string" = "red"
+"comment" = "green"
+"ui.menu.selected" = {bg="selected"}
+"diagnostic.error" = {bg="white", modifiers=["bold"]}
+"diagnostic.warning" = {bg="white", modifiers=["bold"]}
+"diagnostic.hint" = {bg="white", modifiers=["bold"]}
+
+[palette]
+white = "#ffffff"
+acme_bg = "#ffffea"
+black = "#000000"
+selected = "#eeee9e"
+acme_bar_bg = "#aeeeee"
+acme_bar_inactive = "#eaffff"
+cursor = "#444444"
+red = "#a0342f"
+green = "#065905"
+indent = "#aaaaaa"