summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot-config/foot/colors/github_dark_default.ini19
-rw-r--r--dot-config/foot/colors/modus-vivendi.ini25
-rw-r--r--dot-config/foot/foot.ini3
-rw-r--r--dot-config/nvim/nvim-pack-lock.json8
-rw-r--r--dot-config/nvim/plugin/colorscheme.lua16
5 files changed, 30 insertions, 41 deletions
diff --git a/dot-config/foot/colors/github_dark_default.ini b/dot-config/foot/colors/github_dark_default.ini
new file mode 100644
index 0000000..d2cbaa8
--- /dev/null
+++ b/dot-config/foot/colors/github_dark_default.ini
@@ -0,0 +1,19 @@
+[colors]
+background=0d1117
+foreground=e6edf3
+regular0=484f58
+regular1=ff7b72
+regular2=3fb950
+regular3=d29922
+regular4=58a6ff
+regular5=bc8cff
+regular6=39c5cf
+regular7=b1bac4
+bright0=6e7681
+bright1=ffa198
+bright2=56d364
+bright3=e3b341
+bright4=79c0ff
+bright5=d2a8ff
+bright6=56d4dd
+bright7=ffffff
diff --git a/dot-config/foot/colors/modus-vivendi.ini b/dot-config/foot/colors/modus-vivendi.ini
deleted file mode 100644
index 82b1075..0000000
--- a/dot-config/foot/colors/modus-vivendi.ini
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- conf -*-
-#
-# modus-vivendi
-# See: https://protesilaos.com/emacs/modus-themes
-#
-
-[colors]
-background=000000
-foreground=ffffff
-regular0=000000
-regular1=ff8059
-regular2=44bc44
-regular3=d0bc00
-regular4=2fafff
-regular5=feacd0
-regular6=00d3d0
-regular7=bfbfbf
-bright0=595959
-bright1=ef8b50
-bright2=70b900
-bright3=c0c530
-bright4=79a8ff
-bright5=b6a0ff
-bright6=6ae4b9
-bright7=ffffff
diff --git a/dot-config/foot/foot.ini b/dot-config/foot/foot.ini
index a001bf4..8922dac 100644
--- a/dot-config/foot/foot.ini
+++ b/dot-config/foot/foot.ini
@@ -6,10 +6,11 @@ pad=15x20 center-when-maximized-and-fullscreen
font=TX\-02 Medium UltraCondensed:size=15
# include theme
-include=~/.config/foot/colors/modus-vivendi.ini
+include=~/.config/foot/colors/github_dark_default.ini
[colors]
background=000000
+foreground=ffffff
[bell]
system=no
diff --git a/dot-config/nvim/nvim-pack-lock.json b/dot-config/nvim/nvim-pack-lock.json
index ddcaa63..231189b 100644
--- a/dot-config/nvim/nvim-pack-lock.json
+++ b/dot-config/nvim/nvim-pack-lock.json
@@ -8,6 +8,10 @@
"rev": "b1d2b0dc146cb9260209da4d7ab754adb0a2653d",
"src": "https://github.com/ibhagwan/fzf-lua"
},
+ "github-nvim-theme": {
+ "rev": "c106c9472154d6b2c74b74565616b877ae8ed31d",
+ "src": "https://github.com/projekt0n/github-nvim-theme"
+ },
"gitsigns.nvim": {
"rev": "5813e4878748805f1518cee7abb50fd7205a3a48",
"src": "https://github.com/lewis6991/gitsigns.nvim"
@@ -24,10 +28,6 @@
"rev": "57e5a8addb8c71fb063ee4acda466c7cf6ad2800",
"src": "https://github.com/mason-org/mason.nvim"
},
- "modus-themes.nvim": {
- "rev": "c57c2c5",
- "src": "https://github.com/miikanissi/modus-themes.nvim"
- },
"nui.nvim": {
"rev": "de74099",
"src": "https://github.com/MunifTanjim/nui.nvim"
diff --git a/dot-config/nvim/plugin/colorscheme.lua b/dot-config/nvim/plugin/colorscheme.lua
index 18c2ac0..8eb524b 100644
--- a/dot-config/nvim/plugin/colorscheme.lua
+++ b/dot-config/nvim/plugin/colorscheme.lua
@@ -1,17 +1,11 @@
vim.pack.add({
- "https://github.com/miikanissi/modus-themes.nvim",
+ "https://github.com/projekt0n/github-nvim-theme",
})
-require("modus-themes").setup({
- transparent = true,
- line_nr_column_background = false,
- sign_column_background = false,
- styles = {
- comments = { italic = false },
- keywords = { italic = false },
- functions = {},
- variables = {},
+require("github-theme").setup({
+ options = {
+ transparent = true,
},
})
-vim.cmd("colorscheme modus_vivendi")
+vim.cmd("colorscheme github_dark_default")