Skip to content

Commit c0a0394

Browse files
committed
use dark theme as default
1 parent b8f1e82 commit c0a0394

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
A simple, comprehensive and user-friendly development toolkit to boost up your productivity 🚀.
44

5-
![Screenshot-light](cover-light.png)
6-
75
![Screenshot-dark](cover-dark.png)
86

7+
![Screenshot-light](cover-light.png)
8+
99
- terminal emulator: [kitty](https://github.com/kovidgoyal/kitty)
1010
- shell: [zsh](https://www.zsh.org/)
1111
- editor: [neovim](https://github.com/neovim/neovim)
@@ -50,10 +50,10 @@ zsh/zimrc -> ~/.zimrc
5050

5151
## Theme
5252

53-
The default theme of the toolkit is light, if you want to change to dark theme:
53+
The default theme of the toolkit is dark, if you want to change to light theme:
5454

55-
- modify `kitty/kitty.conf`, replace `include latte.conf` with `include mocha.conf`
56-
- modify `nvim/lua/plugins/colorscheme.lua`, replace `flavour = "latte"` with `flavour = "mocha"`.
55+
- modify `kitty/kitty.conf`, replace `include mocha.conf` with `include latte.conf`
56+
- modify `nvim/lua/plugins/colorscheme.lua`, replace `flavour = "mocha"` with `flavour = "latte"`.
5757

5858
## Critical Keymap
5959

kitty/kitty.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include latte.conf
1+
include mocha.conf
22

33
font_family JetBrainsMono NF
44
bold_font JetBrainsMono NF

nvim/lua/plugins/code.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ return {
8787
width = "block",
8888
},
8989
code = {
90+
border = "thin",
91+
above = "",
92+
below = "",
9093
style = "normal",
9194
width = "block",
9295
},

nvim/lua/plugins/colorscheme.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ return {
2323
lazy = false,
2424
opts = {
2525
term_colors = true,
26-
flavour = "latte",
26+
flavour = "mocha",
2727
transparent_background = false,
2828
styles = {
2929
comments = { "italic" },

0 commit comments

Comments
 (0)