Skip to content

Commit 04b3b55

Browse files
committed
feat(themes): ✨ introduce koda-light palette for light theme support
1 parent c2654f8 commit 04b3b55

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

lazygit/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
quitOnTopLevelReturn: true
23
notARepository: skip
34
promptToReturnFromSubprocess: false

starship/starship.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ add_newline = true
33
format = """$username$directory$linebreak$character"""
44
right_format = """$all"""
55
command_timeout = 1000
6-
palette = 'koda'
6+
palette = 'koda-dark'
77

88
[username]
99
disabled = true
@@ -152,7 +152,7 @@ accent5 = "#b46958" # red/orange/pinkish
152152
accent6 = "#88afa2" # cyan/teal
153153
accent7 = "#d0d0d0" # light gray for folders
154154

155-
[palettes.koda]
155+
[palettes.koda-dark]
156156
white = "#ffffff" # bright white (palette 3, 11, 12)
157157
bg = "#101010" # dark background
158158
fg = "#b0b0b0" # light gray foreground
@@ -165,3 +165,15 @@ accent5 = "#ff7676" # coral red (palette 1)
165165
accent6 = "#a5adce" # lavender blue (palette 7)
166166
accent7 = "#b3b3b3" # light gray (palette 4)
167167

168+
[palettes.koda-light]
169+
white = "#000000" # black for light theme (palette 12)
170+
bg = "#faf9f5" # light background
171+
fg = "#101010" # dark foreground
172+
muted = "#ababab" # muted gray (palette 8)
173+
accent1 = "#009797" # cyan/teal (palette 14)
174+
accent2 = "#407f00" # green (palette 2)
175+
accent3 = "#926200" # golden brown (palette 3)
176+
accent4 = "#a200d1" # purple/magenta (palette 5)
177+
accent5 = "#ca0043" # red (palette 1)
178+
accent6 = "#6a6a6a" # gray blue (palette 7)
179+
accent7 = "#3d3d3d" # dark gray (palette 4)

zsh/.zshrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ eval "$(starship init zsh)"
9696

9797
# Base aliases
9898
alias la=tree
99-
alias cat="bat --theme 1337"
99+
alias cat="bat"
100100
alias cl='clear'
101101
alias l="eza -l --icons --git -a"
102102
alias ls="eza --icons"

0 commit comments

Comments
 (0)