summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Tay <sam.chong.tay@gmail.com>2020-06-16 18:43:27 -0700
committerSam Tay <sam.chong.tay@gmail.com>2020-06-16 18:43:27 -0700
commita96f950af40248a5143e4b43e06e34ee878aefbf (patch)
tree323b28048b1c55e78745e0fc1be0dd8cbf3ea7bc
parentebe242a89f0c5b99b60909788c24179ccd154c7c (diff)
Add some themes to the repo for later
-rw-r--r--themes/default.toml38
-rw-r--r--themes/tomorrow.toml14
-rw-r--r--themes/tomorrow_night_80s.toml14
3 files changed, 66 insertions, 0 deletions
diff --git a/themes/default.toml b/themes/default.toml
new file mode 100644
index 0000000..1650fa7
--- /dev/null
+++ b/themes/default.toml
@@ -0,0 +1,38 @@
+# Every field in a theme file is optional.
+
+shadow = false
+borders = "outset" # Alternatives are "none" and "simple"
+
+# Base colors are
+# red, green, blue, cyan, magenta, yellow, white and black.
+#
+# There are 3 ways to select a color:
+# - The 16 base colors are selected by name:
+# "blue", "light red", "magenta", ...
+# - Low-resolution colors use 3 characters, each <= 5:
+# "541", "003", ...
+# - Full-resolution colors start with '#' and can be 3 or 6 hex digits:
+# "#1A6", "#123456", ...
+[colors]
+background = "default"
+
+# If the terminal doesn't support custom color (like the linux TTY),
+# non-base colors will be skipped.
+shadow = []
+view = "default"
+
+# An array with a single value has the same effect as a simple value.
+primary = ["default"]
+secondary = "cyan" # secondary style is used for code hightlighting
+tertiary = "green"
+
+# Hex values can use lower or uppercase.
+# (base color MUST be lowercase)
+# If the value is an array, the first valid
+# and supported color will be used.
+title_primary = ["BLUE", "red"] # `BLUE` will be skipped.
+title_secondary = "yellow"
+
+# Lower precision values can use only 3 digits.
+highlight = "yellow"
+highlight_inactive = "light yellow"
diff --git a/themes/tomorrow.toml b/themes/tomorrow.toml
new file mode 100644
index 0000000..b9b20f0
--- /dev/null
+++ b/themes/tomorrow.toml
@@ -0,0 +1,14 @@
+shadow = false
+borders = "outset"
+
+[colors]
+shadow = []
+background = "#ffffff"
+view = "#ffffff"
+primary = "#4d4d4c"
+secondary = ["#3e999f", "cyan"]
+tertiary = ["#718c00", "green"]
+title_primary = ["#c82829", "red"]
+title_secondary = ["#eab700", "yellow"]
+highlight = "#eab700"
+highlight_inactive = "#d6d6d6"
diff --git a/themes/tomorrow_night_80s.toml b/themes/tomorrow_night_80s.toml
new file mode 100644
index 0000000..ed566d3
--- /dev/null
+++ b/themes/tomorrow_night_80s.toml
@@ -0,0 +1,14 @@
+shadow = false
+borders = "outset"
+
+[colors]
+shadow = []
+background = "#2d2d2d"
+view = "#2d2d2d"
+primary = "#cccccc"
+secondary = ["#66cccc", "cyan"]
+tertiary = ["#99cc99", "green"]
+title_primary = ["#f2777a", "red"]
+title_secondary = ["#cc99cc", "magenta"]
+highlight = ["#ffcc66", "yellow"]
+highlight_inactive = "515151"