summaryrefslogtreecommitdiff
path: root/.config/alacritty/themes
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.dk>2023-12-30 13:11:29 +0100
committerAdam Stück <adam@adast.dk>2023-12-30 13:29:03 +0100
commitc7b8615aba89528f31fe29a1f0d5f52b821eb8f4 (patch)
tree7ca50a4f7a4d9c9186dfda025c1061913126e8cf /.config/alacritty/themes
parent1cd66c37fd40dc9f3d5b4b0fa9fdcc458bd518d7 (diff)
alacritty: convert to toml config files
Diffstat (limited to '.config/alacritty/themes')
-rw-r--r--.config/alacritty/themes/one_dark.toml28
-rw-r--r--.config/alacritty/themes/one_light.toml23
2 files changed, 51 insertions, 0 deletions
diff --git a/.config/alacritty/themes/one_dark.toml b/.config/alacritty/themes/one_dark.toml
new file mode 100644
index 0000000..ad576f3
--- /dev/null
+++ b/.config/alacritty/themes/one_dark.toml
@@ -0,0 +1,28 @@
+# Colors (One Dark)
+
+# Default colors
+[colors.primary]
+background = '#1e2127'
+foreground = '#abb2bf'
+
+# Normal colors
+[colors.normal]
+black = '#1e2127'
+red = '#e06c75'
+green = '#98c379'
+yellow = '#d19a66'
+blue = '#61afef'
+magenta = '#c678dd'
+cyan = '#56b6c2'
+white = '#abb2bf'
+
+# Bright colors
+[colors.bright]
+black = '#5c6370'
+red = '#e06c75'
+green = '#98c379'
+yellow = '#d19a66'
+blue = '#61afef'
+magenta = '#c678dd'
+cyan = '#56b6c2'
+white = '#ffffff'
diff --git a/.config/alacritty/themes/one_light.toml b/.config/alacritty/themes/one_light.toml
new file mode 100644
index 0000000..0337917
--- /dev/null
+++ b/.config/alacritty/themes/one_light.toml
@@ -0,0 +1,23 @@
+[colors.primary]
+background = '#f8f8f8'
+foreground = '#2a2b33'
+
+[colors.normal]
+black = '#000000'
+red = '#de3d35'
+green = '#3e953a'
+yellow = '#d2b67b'
+blue = '#2f5af3'
+magenta = '#a00095'
+cyan = '#3e953a'
+white = '#bbbbbb'
+
+[colors.bright]
+black = '#000000'
+red = '#de3d35'
+green = '#3e953a'
+yellow = '#d2b67b'
+blue = '#2f5af3'
+magenta = '#a00095'
+cyan = '#3e953a'
+white = '#ffffff'