主题库(预览版

下面是主题的一些示例。

无缝

Windows Terminal Seamless Theme

{
    "name": "Seamless",
    "tab":
    {
        "background": "terminalBackground",
        "unfocusedBackground": "#FFFFFF00",
        "showCloseButton": "always"
    },
    "tabRow":
    {
        "background": "terminalBackground",
        "unfocusedBackground": "#2C2C2CFF"
    },
    "window":
    {
        "applicationTheme": "dark"
    }
},

正在构建中

Windows Terminal Under Construction Theme

{
    "name": "Under Construction",
    "tab":
    {
        "background": "#FFFF00FF",
        "showCloseButton": "always",
        "unfocusedBackground": "#88440088"
    },
    "tabRow":
    {
        "background": "#FF8800FF",
        "unfocusedBackground": "#202020FF"
    },
    "window":
    {
        "applicationTheme": "light",
        "useMica": true
    }
},

(配色方案基于 Fun Forrest

Chonk

Windows Terminal Chonk Theme

为了获得最佳效果,我们将该主题与全局设置 "alwaysShowTabs": true"showTabsInTitlebar": false 以及 0 的配置文件 opacity 相结合。 你可能还需要在 Windows 设置应用中禁用“在标题栏和窗口边框上显示主题色”设置(在“个性化”>“颜色”下)

    "profiles": {
        "defaults": {
            "opacity": 0
        }
    },
    "alwaysShowTabs": true,
    "showTabsInTitlebar": false,
    "theme": "chonk",
    "themes": [
        {
            "name": "chonk",
            "tab":
            {
                "background": "#00000000",
                "unfocusedBackground": "#00000000",
                "showCloseButton": "hover"
            },
            "tabRow":
            {
                "background": "#00000000",
                "unfocusedBackground": "#00000000",
            },
            "window":
            {
                "applicationTheme": "dark",
                "useMica": true
            }
        }
    ]