V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
cy18
V2EX  ›  Visual Studio Code

听说 VSCode 用浅色主题对眼睛更好,求推荐一款醒目的浅色主题,尤其是 terminal 里面

  •  
  •   cy18 · 1 天前 · 3079 次点击

    试了好多浅色的主题,VSCode Light 、Github Light 、Solarized Light ,Senlenlized Light 之类的。代码看着倒还好,terminal 里面颜色的区分度都很低。zsh 、git 中的一些东西换了浅色主题后看过去很难区分出不同的颜色,求推荐一个好用的浅色主题。

    39 条回复    2024-11-26 22:40:37 +08:00
    coolfan
        1
    coolfan  
       23 小时 31 分钟前
    默认的 terminal 字体好丑
    tulongtou
        2
    tulongtou  
       23 小时 16 分钟前   ❤️ 1
    Blue Light Theme
    nebkad
        3
    nebkad  
       22 小时 22 分钟前   ❤️ 1
    Atom One Light
    livin2
        4
    livin2  
       22 小时 5 分钟前
    catppuccin Latte
    lovestudykid
        5
    lovestudykid  
       20 小时 34 分钟前
    Terminal 敲字的时间短吧,我都是编辑器用浅色,terminal 用深色。深色主要的问题是对散光不友好
    jqtmviyu
        6
    jqtmviyu  
       19 小时 20 分钟前
    就自带的 QuietLight

    terminal 用 zsh+p10k
    LiMee
        7
    LiMee  
       19 小时 19 分钟前
    好像所有浅色主题都有看不清字的毛病,我的解决方案:

    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 主题,但是把里面的白色,用黑色的相应颜色替换掉

    ---

    这样操作下来应该不会再有看不清字的现象,好不好看另说
    Donaldo
        8
    Donaldo  
       19 小时 15 分钟前
    显示器原因也挺大的,同一个背景,我办公室色彩好一些的 4K 屏看得清清楚楚,家里面打游戏的 vn 1080p 就有些不舒服。
    TabGre
        9
    TabGre  
       15 小时 37 分钟前 via iPhone
    ayu
    b1t
        10
    b1t  
       15 小时 25 分钟前
    GitHub Theme 中 beta 版本
    jeffw
        11
    jeffw  
       14 小时 54 分钟前
    一直用自带的,挺好的。
    dfkjgklfdjg
        12
    dfkjgklfdjg  
       14 小时 51 分钟前
    ezrameow
        13
    ezrameow  
       14 小时 28 分钟前
    默认高对比度的那个浅色不错
    Track13
        14
    Track13  
       13 小时 59 分钟前
    看得清楚才护眼,浅色主题对散光不好。
    lovepocky
        15
    lovepocky  
       13 小时 54 分钟前 via iPhone
    vscode light 就不错。你可能需要调下 terminal 的配色
    DiaoWang
        16
    DiaoWang  
       13 小时 47 分钟前 via iPhone
    我用的默认的 Light+
    mistsobscure
        17
    mistsobscure  
       13 小时 39 分钟前
    同求主题,求绿色大背景的
    SeaSaltPepper
        18
    SeaSaltPepper  
       13 小时 37 分钟前
    Gruvbox Light Hard
    ooTwToo
        19
    ooTwToo  
       13 小时 24 分钟前
    深色才护眼吧
    focux
        20
    focux  
       13 小时 22 分钟前
    公司的破显示器,还真就用 Blue Light Theme 能看清,别的都不大行=。=!
    liyifu1994
        21
    liyifu1994  
       13 小时 15 分钟前
    Noctis Lux
    um1ng
        22
    um1ng  
       13 小时 7 分钟前
    Tokyo Night Light
    sastar
        23
    sastar  
       13 小时 2 分钟前
    VSC 自带的 Quiet Light
    vruzo
        24
    vruzo  
       12 小时 57 分钟前
    Github Light Theme
    chy2v
        25
    chy2v  
       12 小时 46 分钟前
    Dawnfox
    edwardzcn98
        26
    edwardzcn98  
       12 小时 43 分钟前
    Catppuccin Latte (喜欢紫色💜可以看看
    adoal
        27
    adoal  
       12 小时 23 分钟前
    根据我的经验,terminal 还是不要用浅色了。因为 terminal 里除了配色本身的 theme 之外,还有终端应用程序根据 ANSI 16 color 配出来的应用程序 theme ,比如 ls 的 DIR_COLORS ,这种 theme 一般都是根据深色方案设计的,普通文本是暗色,强调文本是亮色,放在深底色上效果很好,放在浅底色上,强调的反而看不清了,因此需要给支持 theme 的终端应用程序逐个做浅色适配,不支持 theme 的就只能忍着。
    zong400
        28
    zong400  
       12 小时 10 分钟前
    Solarized Light 沙漠色,个人感觉不错
    Dyon
        29
    Dyon  
       12 小时 10 分钟前
    为 Catppuccin 再添一票
    Dyon
        30
    Dyon  
       12 小时 9 分钟前
    虽然我用的是深色
    inhzus
        31
    inhzus  
       12 小时 1 分钟前
    Visual Studio Light - C/C++
    june4
        32
    june4  
       11 小时 59 分钟前
    Brackets Light Pro
    vst93
        33
    vst93  
       10 小时 59 分钟前
    Cyan Light Theme Fork 😼
    yhxx
        34
    yhxx  
       10 小时 50 分钟前
    Solarized Light
    rrfeng
        35
    rrfeng  
       10 小时 37 分钟前
    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",
    "terminal.ansiRed": "#FB543F",
    "terminal.ansiBrightRed": "#FB543F",
    "terminal.ansiWhite": "#A89984",
    "terminal.ansiBrightWhite": "#FDF4C1",
    "terminal.ansiYellow": "#FAC03B",
    "terminal.ansiBrightYellow": "#FAC03B"
    },
    maxin6
        36
    maxin6  
       5 小时 16 分钟前
    SHF
        37
    SHF  
       1 小时 40 分钟前


    @inhzus 我也来发一个 😂
    Danswerme
        38
    Danswerme  
       1 小时 24 分钟前
    推荐 Solarized Light ,然后自己在配置文件里改一下终端的颜色就好啦
    shintendo
        39
    shintendo  
       11 分钟前
    深色主题才对散光不好吧
    刚入行的时候一直用 dark mode ,几年下来散光深了好多,改用 light mode 就舒服了,现在再看 dark mode 的代码,时间一长就会难受想流泪
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2921 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 14:52 · PVG 22:52 · LAX 06:52 · JFK 09:52
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.