Gruvbox Material
~/projects $ ls README.md src/ config.toml themes/ ~/projects $ git status On branch main Changes not staged for commit: modified: src/main.go modified: config.toml ~/projects $ echo "hello world" hello world
package main import "fmt" // fibonacci returns the nth Fibonacci number func fibonacci(n int) int { if n <= 1 { return n } return fibonacci(n-1) + fibonacci(n-2) } func main() { for i := 0; i < 10; i++ { fmt.Printf("fib(%d) = %d\n", i, fibonacci(i)) } }
,xNMM. user@host .OMMMMo ----------------------------- lMM" OS: macOS 15.3 arm64 .;loddo:. .olloddol;. Host: MacBook Pro (14-inch) cKMMMMMMMMMMNWMMMMMMMMMM0: Kernel: Darwin 24.3.0 .KMMMMMMMMMMMMMMMMMMMMMMMWd. Uptime: 3 hours, 42 mins XMMMMMMMMMMMMMMMMMMMMMMMX. Shell: zsh 5.9 ;MMMMMMMMMMMMMMMMMMMMMMMM: Terminal: ghostty :MMMMMMMMMMMMMMMMMMMMMMMM: Theme: Gruvbox Material .MMMMMMMMMMMMMMMMMMMMMMMMX. CPU: Apple M1 Pro (8) @ 3.23 GHz kMMMMMMMMMMMMMMMMMMMMMMMMWd. GPU: Apple M1 Pro (14) 'XMMMMMMMMMMMMMMMMMMMMMMMMMMk Memory: 10.02 GiB / 16.00 GiB (63%) 'XMMMMMMMMMMMMMMMMMMMMMMMMK. Disk (/): 245 GiB / 460 GiB (53%) kMMMMMMMMMMMMMMMMMMMMMMd Local IP: 192.168.1.42 ;KMMMMMMMWXXWMMMMMMMk. Battery: 71% "cooc*" "*coo'" Locale: en_US.UTF-8 ● ● ● ● ● ● ● ●
调色板
fg
bg
cur
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
配置
在终端中运行以下命令。重新加载已打开的终端即可应用主题。
cmux themes set --dark "Gruvbox Material"
Ghostty 配置
将以下内容添加到 ~/.config/ghostty/config:
foreground = #d4be98 background = #1d2021 cursor-color = #ffffff palette = 0=#141617 palette = 1=#ea6926 palette = 2=#c1d041 palette = 3=#eecf75 palette = 4=#6da3ec palette = 5=#fd9bc1 palette = 6=#fe9d6e palette = 7=#ffffff palette = 8=#4c4c4c palette = 9=#d3573b palette = 10=#c1d041 palette = 11=#eecf75 palette = 12=#2c86ff palette = 13=#fd9bc1 palette = 14=#92a5df palette = 15=#ffffff
相似主题
~/projects $ ls README.md src/ config.toml themes/ ~/projects $ git status On branch main Changes not staged for commit: modified: src/main.go modified: config.toml ~/projects $ echo "hello world" hello world
Gruvbox Dark
~/projects $ ls README.md src/ config.toml themes/ ~/projects $ git status On branch main Changes not staged for commit: modified: src/main.go modified: config.toml ~/projects $ echo "hello world" hello world
Gruvbox Dark Hard
~/projects $ ls README.md src/ config.toml themes/ ~/projects $ git status On branch main Changes not staged for commit: modified: src/main.go modified: config.toml ~/projects $ echo "hello world" hello world
Gruvbox Material Dark
~/projects $ ls README.md src/ config.toml themes/ ~/projects $ git status On branch main Changes not staged for commit: modified: src/main.go modified: config.toml ~/projects $ echo "hello world" hello world