dotfiles.git

commit 706cdc1c3e663ea43cca99520e666056a6d1a7ee

Author: Adam <git@apiote.xyz>

colour theme

 .config/helix/themes/mine.toml | 33 ++++++++++++++++++++++++++++++---
 .config/wezterm/wezterm.lua | 7 ++++---


diff --git a/.config/helix/themes/mine.toml b/.config/helix/themes/mine.toml
index 18bb6c2204033f1659146da7566f83644a5d8434..9b9cfe63cd21475f982268e65f5e2a688d1326a4 100644
--- a/.config/helix/themes/mine.toml
+++ b/.config/helix/themes/mine.toml
@@ -1,9 +1,36 @@
 inherits = "ayu_dark"
 
 "ui.linenr" = { fg = "gray"}
-"ui.linenr.selected" = { fg = "foreground" }
-"ui.virtual.whitespace" = { fg = "gray" }
+"ui.linenr.selected" = { fg = "gray", bg = "black" }
+"ui.virtual.whitespace" = { fg = "light-gray" }
+"ui.virtual.indent-guide" = { fg = "light-gray" }
+"ui.cursor.normal" = { fg = "light-gray", bg = "black" }
+"ui.cursor.insert" = { fg = "light-gray", bg = "black" }
+"ui.cursor.select" = { fg = "light-gray", bg = "black" }
+"ui.cursor.match" = { fg = "black", bg = "blue" }
+"ui.cursor.primary.normal" = { fg = "black", bg = "light-gray" }
+"ui.cursor.primary.insert" = { fg = "black", bg = "green" }
+"ui.cursor.primary.select" = { fg = "black", bg = "yellow" }
+"comment" = { fg = "light-gray" }
 
 [palette]
+# Birds Of Paradise
+black = "#573d26"
+red = "#be2d26"
+green = "#6ba18a"
+yellow = "#e99d2a"
+blue = "#5a86ad"
+magenta = "#ac80a6"
+cyan = "#74a6ad"
+gray = "#e0dbb7"
+light-gray = "#9b6c4a"
+lght-red = "#e84627"
+light-green = "#95d8ba"
+light-yellow = "#d0d150"
+light-blue = "#b8d3ed"
+light-magenta = "#d19ecb"
+light-cyan = "#93cfd7"
+white = "#fff9d5"
+background = "#2a1f1d"
+
 foreground = "#c9ad53"
-background = "#292929"




diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua
index 308209892a6601dea2e0d63194271f18cd7e01fc..e254a99699b326081268a4544b569eb7b9b056af 100644
--- a/.config/wezterm/wezterm.lua
+++ b/.config/wezterm/wezterm.lua
@@ -1,3 +1,5 @@
+-- https://gogh-co.github.io/Gogh/
+
 local wezterm = require 'wezterm';
 
 return {
@@ -8,11 +10,11 @@ 	use_fancy_tab_bar = false,
 	tab_bar_at_bottom = true,
 	window_background_opacity = 0.95,
 	check_for_updates = false,
+	color_scheme = 'BirdsOfParadise',
 	colors={
-		background = '#292929',
 		foreground = '#c9ad53',
+		background = '#2a1f1d',
 
-		ansi = {'#292929', '#ff5c57', '#5af78e', '#ffe3aa', '#00afff', '#bd93f9', '#00ffff', '#d3d7cf'},
 		indexed = {
 			[100] = '#364045',
 			[108] = '#db9d3b',
@@ -31,6 +33,5 @@ 			[113] = '#892b30',
 			[114] = '#317b9f',
 			[115] = '#5d3636'
 		},
-		compose_cursor = "orange",
 	}
 }