试了好多浅色的主题,VSCode Light 、Github Light 、Solarized Light ,Senlenlized Light 之类的。代码看着倒还好,terminal 里面颜色的区分度都很低。zsh 、git 中的一些东西换了浅色主题后看过去很难区分出不同的颜色,求推荐一个好用的浅色主题。
![]() | 1 coolfan 321 天前 默认的 terminal 字体好丑 |
![]() | 2 DonaidTrump 321 天前 ![]() Blue Light Theme |
3 nebkad 321 天前 ![]() Atom One Light |
4 livin2 321 天前 catppuccin Latte |
5 lovestudykid 321 天前 Terminal 敲字的时间短吧,我都是编辑器用浅色,terminal 用深色。深色主要的问题是对散光不友好 |
![]() | 6 jqtmviyu 321 天前 就自带的 QuietLight terminal 用 zsh+p10k |
7 Pqj6MH888z4rI7uw 321 天前 好像所有浅色主题都有看不清字的毛病,我的解决方案: 1. 为 Powershell 添加 profile ``` # Profile of Windows Powershell # Enable color in ls command. Import-Module PSColor # Enable PSReadLine # Settings for PSReadLine Import-Module PSReadLine Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete Set-PSReadLineOption -PredictionSource History Set-PSReadLineOption -Colors @{ Command = 'Black' # Get-Process Number = 'DarkGreen' # 123 Member = 'Black' # object.Method? Operator = 'DarkYellow' # +-*/ Type = 'DarkCyan' # [System.String] Variable = 'DarkBlue' # $profile Parameter = 'DarkYellow' # git --clone COntinuationPrompt= 'DarkRed' # Line Breaks Default = 'Black' # Default InlinePrediction = '#BBBBBB' # Autocomplete } ``` 2. 使用内置的 One Half Light 主题,但是把里面的白色,用黑色的相应颜色替换掉 --- 这样操作下来应该不会再有看不清字的现象,好不好看另说 |
8 Donaldo 321 天前 显示器原因也挺大的,同一个背景,我办公室色彩好一些的 4K 屏看得清清楚楚,家里面打游戏的 vn 1080p 就有些不舒服。 |
9 TabGre 321 天前 via iPhone ayu |
![]() | 10 b1t 321 天前 GitHub Theme 中 beta 版本 |
11 jeffw 321 天前 一直用自带的,挺好的。 |
![]() | 12 94 321 天前 我一直用的 [Noctis Lux]( https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis) |
13 ezrameow 321 天前 默认高对比度的那个浅色不错 |
![]() | 14 bgm004 321 天前 看得清楚才护眼,浅色主题对散光不好。 |
15 lovepocky 321 天前 via iPhone vscode light 就不错。你可能需要调下 terminal 的配色 |
![]() | 16 DiaoWang 321 天前 via iPhone 我用的默认的 Light+ |
17 mistsobscure 321 天前 同求主题,求绿色大背景的 |
![]() | 18 SeaSaltPepper 321 天前 Gruvbox Light Hard |
![]() | 19 ooTwToo 321 天前 深色才护眼吧 |
20 focux 321 天前 公司的破显示器,还真就用 Blue Light Theme 能看清,别的都不大行=。=! |
21 liyifu1994 321 天前 Noctis Lux |
![]() | 22 um1ng 321 天前 Tokyo Night Light |
![]() | 23 sastar 321 天前 VSC 自带的 Quiet Light |
![]() | 24 vruzo 321 天前 Github Light Theme |
![]() | 25 chy2v 321 天前 Dawnfox |
![]() | 26 edwardzcn98 321 天前 Catppuccin Latte (喜欢紫色可以看看 |
![]() | 27 adoal 321 天前 根据我的经验,terminal 还是不要用浅色了。因为 terminal 里除了配色本身的 theme 之外,还有终端应用程序根据 ANSI 16 color 配出来的应用程序 theme ,比如 ls 的 DIR_COLORS ,这种 theme 一般都是根据深色方案设计的,普通文本是暗色,强调文本是亮色,放在深底色上效果很好,放在浅底色上,强调的反而看不清了,因此需要给支持 theme 的终端应用程序逐个做浅色适配,不支持 theme 的就只能忍着。 |
![]() | 8 ethsol 321 天前 Solarized Light 沙漠色,个人感觉不错 |
![]() | 29 Dyon 321 天前 为 Catppuccin 再添一票 |
![]() | 30 Dyon 321 天前 虽然我用的是深色 |
![]() | 31 inhzus 321 天前 |
![]() | 32 june4 321 天前 Brackets Light Pro |
![]() | 33 vst93 321 天前 Cyan Light Theme Fork |
![]() | 34 yhxx 321 天前 Solarized Light |
![]() | 35 rrfeng 321 天前 terminal 可以自己配色,把几个重点的 ansiXX 颜色找一个 terminal 抄出来就行了。 我现在代码是浅色,terminal 还是习惯深色。 "workbench.colorCustomizations": { "terminal.background": "#000000", "terminal.foreground": "#e7e7e7", "terminal.ansiBlack": "#000000", "terminal.ansiBrightBlack": "#676767", "terminal.ansiBlue": "#00a1f9", "terminal.ansiBrightBlue": "#3662dc", "terminal.ansiCyan": "#8BA59B", "terminal.ansiBrightCyan": "#503df4", "terminal.ansiGreen": "#95C085", "terminal.ansiBrightGreen": "#237e02", "terminal.ansiMagenta": "#b93ec1", "terminal.ansiBrightMagenta": "#f07ef8", "erminal.ansiRed": "#FB543F", "terminal.ansiBrightRed": "#FB543F", "terminal.ansiWhite": "#A89984", "terminal.ansiBrightWhite": "#FDF4C1", "terminal.ansiYellow": "#FAC03B", "terminal.ansiBrightYellow": "#FAC03B" }, |
![]() | 36 maxin6 321 天前 [Firefox Theme]( https://marketplace.visualstudio.com/items?itemName=Heron.firefox-devtools-theme) 挺好用的 |
38 Danswerme 321 天前 推荐 Solarized Light ,然后自己在配置文件里改一下终端的颜色就好啦 |
![]() | 39 shintendo 321 天前 深色主题才对散光不好吧 刚入行的时候一直用 dark mode ,几年下来散光深了好多,改用 light mode 就舒服了,现在再看 dark mode 的代码,时间一长就会难受想流泪 |
40 Kobayashi 320 天前 Atom One 主题比较完美的移植,同时支持亮色、暗色。https://marketplace.visualstudio.com/items?itemName=wangweixuan.yithemes terminal 颜色不满意可以用 workbench.colorCustomizations 覆写,有模块自选即可 https://glitchbone.github.io/vscode-base16-term/#/one-light |
![]() | 41 gongquanlin 320 天前 vscode 在 windows 上字体糊,尝试下系统 -> 更改设置 -> 高级 -> 设置 -> 视觉效果调整为最佳外观,有可能可以解决! --- 我的 editor:font family 设置: ``` 'Fira Code','黑体', 'Courier New', monospace ``` Fira Code 真的不错; --- 我的字体大小为 13 ; Line Height 行高为 1.6 ; Console Line Height 为 21 用起来感觉非常不错 |
![]() | 42 magicdawn 311 天前 发几个还没人发的 min light vitesse light |