diff options
| -rw-r--r-- | dot-config/foot/colors/github_light.ini | 19 | ||||
| -rw-r--r-- | dot-config/foot/foot.ini | 6 | ||||
| -rw-r--r-- | dot-config/nvim/plugin/colorscheme.lua | 2 | ||||
| -rw-r--r-- | dot-config/starship.toml | 6 |
4 files changed, 24 insertions, 9 deletions
diff --git a/dot-config/foot/colors/github_light.ini b/dot-config/foot/colors/github_light.ini new file mode 100644 index 0000000..18f0d6b --- /dev/null +++ b/dot-config/foot/colors/github_light.ini @@ -0,0 +1,19 @@ +[colors] +background=ffffff +foreground=1F2328 +regular0=24292f +regular1=cf222e +regular2=116329 +regular3=4d2d00 +regular4=0969da +regular5=8250df +regular6=1b7c83 +regular7=6e7781 +bright0=57606a +bright1=a40e26 +bright2=1a7f37 +bright3=633c01 +bright4=218bff +bright5=a475f9 +bright6=3192aa +bright7=8c959f diff --git a/dot-config/foot/foot.ini b/dot-config/foot/foot.ini index 8922dac..565590b 100644 --- a/dot-config/foot/foot.ini +++ b/dot-config/foot/foot.ini @@ -6,11 +6,7 @@ pad=15x20 center-when-maximized-and-fullscreen font=TX\-02 Medium UltraCondensed:size=15 # include theme -include=~/.config/foot/colors/github_dark_default.ini - -[colors] -background=000000 -foreground=ffffff +include=~/.config/foot/colors/github_light.ini [bell] system=no diff --git a/dot-config/nvim/plugin/colorscheme.lua b/dot-config/nvim/plugin/colorscheme.lua index 8eb524b..697e538 100644 --- a/dot-config/nvim/plugin/colorscheme.lua +++ b/dot-config/nvim/plugin/colorscheme.lua @@ -8,4 +8,4 @@ require("github-theme").setup({ }, }) -vim.cmd("colorscheme github_dark_default") +vim.cmd("colorscheme github_light") diff --git a/dot-config/starship.toml b/dot-config/starship.toml index 594f691..ec88341 100644 --- a/dot-config/starship.toml +++ b/dot-config/starship.toml @@ -11,17 +11,17 @@ $line_break\ [username] format = "[$user]($style)" show_always = true -style_user = "bright-white" +style_user = "foreground" [hostname] format = "[$hostname]($style)" ssh_only = false -style = "bright-white" +style = "foreground" [directory] format = '[$path]($style)' truncation_length = 1 -style = "bright-white" +style = "foreground" [container] format = '[\[$name\]]($style) ' |
