Galeria de temas (versão prévia)

Abaixo estão alguns exemplos de Temas.

Continuidade

Windows Terminal Seamless Theme

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

Em construção

Windows Terminal Under Construction Theme

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

(O esquema de cores é baseado em Floresta Divertida)

Fragmento

Windows Terminal Chonk Theme

Para obter melhores resultados, este tema é combinado com as configurações globais "alwaysShowTabs": true e "showTabsInTitlebar": false, e um perfil opacity de 0. Talvez você queira desabilitar também a configuração "Mostrar cor de destaque em barras de título e bordas de janelas" no aplicativo de configurações do Windows (em "Cores de Personalização > ")

    "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
            }
        }
    ]