Skip to content
Subway SeatSubway SeatSubway Seat
← All ports

Terminals

Windows Terminal

Each flavor is a color scheme plus a theme for the tab row, tabs and window frame. The fragment adds all three schemes on its own; the themes still go into settings.json.

Showing WalnutTunnelEnamelMoquetteDeep LevelPortlandGuimardCatacombesCarrelage. Switch flavors with the bullets up top.

Windows Terminal Report a problem with this portReport a problem with this portReport a problem with this portReport a problem with this portReport a problem with this portReport a problem with this portReport a problem with this portReport a problem with this portReport a problem with this port

Turn it on

In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "Subway Seat",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "Subway Seat"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "Subway Seat Tunnel",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "Subway Seat Tunnel"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "Subway Seat Enamel",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "Subway Seat Enamel"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "London Moquette",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "London Moquette"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "London Deep Level",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "London Deep Level"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "London Portland",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "London Portland"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "Paris Guimard",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "Paris Guimard"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "Paris Catacombes",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "Paris Catacombes"
In settings.json (Settings › Open JSON file), after merging the schemes and themes entries
// at the top level
"theme": "Paris Carrelage",
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": "Paris Carrelage"

Follow light and dark

One setting that changes with your system’s light and dark mode, no switching by hand.

In settings.json, with every flavor's schemes and themes merged (subway-seat-all.json)
// at the top level
"theme": { "light": "Subway Seat Enamel", "dark": "Subway Seat" },
// inside your existing "profiles": { "defaults": { … } }
"colorScheme": { "light": "Subway Seat Enamel", "dark": "Subway Seat" }
subway-seat.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Subway Seat",
            "background": "#362619",
            "foreground": "#EDDCBC",
            "cursorColor": "#F3BF45",
            "selectionBackground": "#634932",
            "black": "#513B27",
            "red": "#E05C45",
            "green": "#ADB956",
            "yellow": "#F3BF45",
            "blue": "#7F9BAE",
            "purple": "#EC7F31",
            "cyan": "#86AD95",
            "white": "#D9C6A3",
            "brightBlack": "#967B5C",
            "brightRed": "#FF8373",
            "brightGreen": "#BFCB63",
            "brightYellow": "#FFD36B",
            "brightBlue": "#9DB6C6",
            "brightPurple": "#FF9D55",
            "brightCyan": "#A5C9B0",
            "brightWhite": "#F8ECD4"
        }
    ],
    "themes": [
        {
            "name": "Subway Seat",
            "window": {
                "applicationTheme": "dark",
                "useMica": false,
                "frame": "#20160EFF",
                "unfocusedFrame": "#20160EFF"
            },
            "tabRow": {
                "background": "#20160EFF",
                "unfocusedBackground": "#20160EFF"
            },
            "tab": {
                "background": "#362619FF",
                "unfocusedBackground": "#2A1D13FF"
            }
        }
    ]
}
subway-seat-tunnel.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Subway Seat Tunnel",
            "background": "#24180E",
            "foreground": "#E9D8B6",
            "cursorColor": "#F3BF45",
            "selectionBackground": "#4F3927",
            "black": "#3D2C1D",
            "red": "#E05C45",
            "green": "#ADB956",
            "yellow": "#F3BF45",
            "blue": "#7F9BAE",
            "purple": "#EC7F31",
            "cyan": "#86AD95",
            "white": "#D6C3A0",
            "brightBlack": "#917759",
            "brightRed": "#FF8373",
            "brightGreen": "#BFCB63",
            "brightYellow": "#FFD36B",
            "brightBlue": "#9DB6C6",
            "brightPurple": "#FF9D55",
            "brightCyan": "#A5C9B0",
            "brightWhite": "#F6EAD1"
        }
    ],
    "themes": [
        {
            "name": "Subway Seat Tunnel",
            "window": {
                "applicationTheme": "dark",
                "useMica": false,
                "frame": "#140D07FF",
                "unfocusedFrame": "#140D07FF"
            },
            "tabRow": {
                "background": "#140D07FF",
                "unfocusedBackground": "#140D07FF"
            },
            "tab": {
                "background": "#24180EFF",
                "unfocusedBackground": "#1B120AFF"
            }
        }
    ]
}
subway-seat-enamel.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Subway Seat Enamel",
            "background": "#F8EFDF",
            "foreground": "#3E2C1E",
            "cursorColor": "#A04800",
            "selectionBackground": "#CBB898",
            "black": "#54402F",
            "red": "#992418",
            "green": "#66740F",
            "yellow": "#976608",
            "blue": "#3F6480",
            "purple": "#A04800",
            "cyan": "#3E7157",
            "white": "#BAA380",
            "brightBlack": "#8C7254",
            "brightRed": "#BF4233",
            "brightGreen": "#697813",
            "brightYellow": "#A9720A",
            "brightBlue": "#517791",
            "brightPurple": "#BA4D0A",
            "brightCyan": "#4C8367",
            "brightWhite": "#CBB898"
        }
    ],
    "themes": [
        {
            "name": "Subway Seat Enamel",
            "window": {
                "applicationTheme": "light",
                "useMica": false,
                "frame": "#E4D8C0FF",
                "unfocusedFrame": "#E4D8C0FF"
            },
            "tabRow": {
                "background": "#E4D8C0FF",
                "unfocusedBackground": "#E4D8C0FF"
            },
            "tab": {
                "background": "#F8EFDFFF",
                "unfocusedBackground": "#EEE4D0FF"
            }
        }
    ]
}
london-moquette.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "London Moquette",
            "background": "#1E2941",
            "foreground": "#D8DEEA",
            "cursorColor": "#F2C03F",
            "selectionBackground": "#3D4F72",
            "black": "#303F61",
            "red": "#DB6052",
            "green": "#77C581",
            "yellow": "#F2C03F",
            "blue": "#7595DA",
            "purple": "#DE8946",
            "cyan": "#54B4B5",
            "white": "#C1C9D8",
            "brightBlack": "#73819C",
            "brightRed": "#FE8474",
            "brightGreen": "#9AD2A0",
            "brightYellow": "#FFD36C",
            "brightBlue": "#8BB0FF",
            "brightPurple": "#E5AA7F",
            "brightCyan": "#72D1D3",
            "brightWhite": "#E9EDF5"
        }
    ],
    "themes": [
        {
            "name": "London Moquette",
            "window": {
                "applicationTheme": "dark",
                "useMica": false,
                "frame": "#121826FF",
                "unfocusedFrame": "#121826FF"
            },
            "tabRow": {
                "background": "#121826FF",
                "unfocusedBackground": "#121826FF"
            },
            "tab": {
                "background": "#1E2941FF",
                "unfocusedBackground": "#172032FF"
            }
        }
    ]
}
london-deep-level.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "London Deep Level",
            "background": "#121A2D",
            "foreground": "#D4DAE7",
            "cursorColor": "#F2C03F",
            "selectionBackground": "#303E5B",
            "black": "#232F49",
            "red": "#DB6052",
            "green": "#77C581",
            "yellow": "#F2C03F",
            "blue": "#7595DA",
            "purple": "#DE8946",
            "cyan": "#54B4B5",
            "white": "#BEC6D5",
            "brightBlack": "#6F7C97",
            "brightRed": "#FE8474",
            "brightGreen": "#9AD2A0",
            "brightYellow": "#FFD36C",
            "brightBlue": "#8BB0FF",
            "brightPurple": "#E5AA7F",
            "brightCyan": "#72D1D3",
            "brightWhite": "#E7EBF3"
        }
    ],
    "themes": [
        {
            "name": "London Deep Level",
            "window": {
                "applicationTheme": "dark",
                "useMica": false,
                "frame": "#0A0E18FF",
                "unfocusedFrame": "#0A0E18FF"
            },
            "tabRow": {
                "background": "#0A0E18FF",
                "unfocusedBackground": "#0A0E18FF"
            },
            "tab": {
                "background": "#121A2DFF",
                "unfocusedBackground": "#0D1421FF"
            }
        }
    ]
}
london-portland.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "London Portland",
            "background": "#E8F0FF",
            "foreground": "#293040",
            "cursorColor": "#A54300",
            "selectionBackground": "#A8BBE2",
            "black": "#3C4557",
            "red": "#9B211A",
            "green": "#0D8131",
            "yellow": "#8D6C08",
            "blue": "#0019A8",
            "purple": "#A54300",
            "cyan": "#007376",
            "white": "#93A7CF",
            "brightBlack": "#697794",
            "brightRed": "#CC2E25",
            "brightGreen": "#008730",
            "brightYellow": "#9B770A",
            "brightBlue": "#4A6EBD",
            "brightPurple": "#AC5A00",
            "brightCyan": "#008688",
            "brightWhite": "#A8BBE2"
        }
    ],
    "themes": [
        {
            "name": "London Portland",
            "window": {
                "applicationTheme": "light",
                "useMica": false,
                "frame": "#CCDAF2FF",
                "unfocusedFrame": "#CCDAF2FF"
            },
            "tabRow": {
                "background": "#CCDAF2FF",
                "unfocusedBackground": "#CCDAF2FF"
            },
            "tab": {
                "background": "#E8F0FFFF",
                "unfocusedBackground": "#DCE5F7FF"
            }
        }
    ]
}
paris-guimard.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Paris Guimard",
            "background": "#1E2E26",
            "foreground": "#D9E1DB",
            "cursorColor": "#F1BF4B",
            "selectionBackground": "#3E554A",
            "black": "#30463B",
            "red": "#C7665B",
            "green": "#70CAA9",
            "yellow": "#F1BF4B",
            "blue": "#709BC8",
            "purple": "#CA9245",
            "cyan": "#549B9F",
            "white": "#C2CBC5",
            "brightBlack": "#74857C",
            "brightRed": "#E7877B",
            "brightGreen": "#89DEBE",
            "brightYellow": "#FFD57A",
            "brightBlue": "#8DB6E2",
            "brightPurple": "#DFAA61",
            "brightCyan": "#70B5B9",
            "brightWhite": "#E9EEEC"
        }
    ],
    "themes": [
        {
            "name": "Paris Guimard",
            "window": {
                "applicationTheme": "dark",
                "useMica": false,
                "frame": "#131A17FF",
                "unfocusedFrame": "#131A17FF"
            },
            "tabRow": {
                "background": "#131A17FF",
                "unfocusedBackground": "#131A17FF"
            },
            "tab": {
                "background": "#1E2E26FF",
                "unfocusedBackground": "#18241DFF"
            }
        }
    ]
}
paris-catacombes.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Paris Catacombes",
            "background": "#121E19",
            "foreground": "#D4DDD7",
            "cursorColor": "#F1BF4B",
            "selectionBackground": "#31433A",
            "black": "#24342C",
            "red": "#C7665B",
            "green": "#70CAA9",
            "yellow": "#F1BF4B",
            "blue": "#709BC8",
            "purple": "#CA9245",
            "cyan": "#549B9F",
            "white": "#BFC8C2",
            "brightBlack": "#708178",
            "brightRed": "#E7877B",
            "brightGreen": "#89DEBE",
            "brightYellow": "#FFD57A",
            "brightBlue": "#8DB6E2",
            "brightPurple": "#DFAA61",
            "brightCyan": "#70B5B9",
            "brightWhite": "#E7ECEA"
        }
    ],
    "themes": [
        {
            "name": "Paris Catacombes",
            "window": {
                "applicationTheme": "dark",
                "useMica": false,
                "frame": "#0A100DFF",
                "unfocusedFrame": "#0A100DFF"
            },
            "tabRow": {
                "background": "#0A100DFF",
                "unfocusedBackground": "#0A100DFF"
            },
            "tab": {
                "background": "#121E19FF",
                "unfocusedBackground": "#0D1711FF"
            }
        }
    ]
}
paris-carrelage.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Paris Carrelage",
            "background": "#EEF2F1",
            "foreground": "#27342F",
            "cursorColor": "#764C00",
            "selectionBackground": "#B0BFBB",
            "black": "#3B4742",
            "red": "#88251E",
            "green": "#218366",
            "yellow": "#916D07",
            "blue": "#25629B",
            "purple": "#764C00",
            "cyan": "#006267",
            "white": "#99ABA6",
            "brightBlack": "#6C7C76",
            "brightRed": "#AC3B32",
            "brightGreen": "#278D6E",
            "brightYellow": "#A07A12",
            "brightBlue": "#3D75AD",
            "brightPurple": "#885A00",
            "brightCyan": "#027479",
            "brightWhite": "#B0BFBB"
        }
    ],
    "themes": [
        {
            "name": "Paris Carrelage",
            "window": {
                "applicationTheme": "light",
                "useMica": false,
                "frame": "#D5DBDAFF",
                "unfocusedFrame": "#D5DBDAFF"
            },
            "tabRow": {
                "background": "#D5DBDAFF",
                "unfocusedBackground": "#D5DBDAFF"
            },
            "tab": {
                "background": "#EEF2F1FF",
                "unfocusedBackground": "#E1E6E5FF"
            }
        }
    ]
}

These are shared by all three flavors.

subway-seat-all.jsonMerge into the top-level schemes and themes arrays of settings.json (Settings › Open JSON file)
{
    "schemes": [
        {
            "name": "Subway Seat",
            "background": "#362619",
            "foreground": "#EDDCBC",
            "cursorColor": "#F3BF45",
            "selectionBackground": "#634932",
            "black": "#513B27",
            "red": "#E05C45",
            "green": "#ADB956",
            "yellow": "#F3BF45",
            "blue": "#7F9BAE",
            "purple": "#EC7F31",
            "cyan": "#86AD95",
            "white": "#D9C6A3",
            "brightBlack": "#967B5C",
            "brightRed": "#FF8373",
            "brightGreen": "#BFCB63",
            "brightYellow": "#FFD36B",
            "brightBlue": "#9DB6C6",
            "brightPurple": "#FF9D55",
            "brightCyan": "#A5C9B0",
            "brightWhite": "#F8ECD4"
        },
        {
            "name": "Subway Seat Tunnel",
            "background": "#24180E",
            "foreground": "#E9D8B6",
            "cursorColor": "#F3BF45",
            "selectionBackground": "#4F3927",
            "black": "#3D2C1D",
            "red": "#E05C45",
            "green": "#ADB956",
            "yellow": "#F3BF45",
            "blue": "#7F9BAE",
            "purple": "#EC7F31",
            "cyan": "#86AD95",
            "white": "#D6C3A0",
            "brightBlack": "#917759",
            "brightRed": "#FF8373",
            "brightGreen": "#BFCB63",
            "brightYellow": "#FFD36B",
            "brightBlue": "#9DB6C6",
            "brightPurple": "#FF9D55",
            "brightCyan": "#A5C9B0",
            "brightWhite": "#F6EAD1"
        },
        {
            "name": "Subway Seat Enamel",
            "background": "#F8EFDF",
            "foreground": "#3E2C1E",
            "cursorColor": "#A04800",
            "selectionBackground": "#CBB898",
            "black": "#54402F",
            "red": "#992418",
            "green": "#66740F",
            "yellow": "#976608",
            "blue": "#3F6480",
            "purple": "#A04800",
            "cyan": "#3E7157",
            "white": "#BAA380",
            "brightBlack": "#8C7254",
            "brightRed": "#BF4233",
            "brightGreen": "#697813",
            "brightYellow": "#A9720A",
            "brightBlue": "#517791",
            "brightPurple": "#BA4D0A",
            "brightCyan": "#4C8367",
            "brightWhite": "#CBB898"
        },
        {
            "name": "London Moquette",
            "background": "#1E2941",
            "foreground": "#D8DEEA",
            "cursorColor": "#F2C03F",
            "selectionBackground": "#3D4F72",
            "black": "#303F61",
            "red": "#DB6052",
            "green": "#77C581",
            "yellow": "#F2C03F",
            "blue": "#7595DA",
            "purple": "#DE8946",
            "cyan": "#54B4B5",
            "white": "#C1C9D8",
            "brightBlack": "#73819C",
            "brightRed": "#FE8474",
            "brightGreen": "#9AD2A0",
            "brightYellow": "#FFD36C",
            "brightBlue": "#8BB0FF",
            "brightPurple": "#E5AA7F",
            "brightCyan": "#72D1D3",
            "brightWhite": "#E9EDF5"
        },
        {
            "name": "London Deep Level",
            "background": "#121A2D",
            "foreground": "#D4DAE7",
            "cursorColor": "#F2C03F",
            "selectionBackground": "#303E5B",
            "black": "#232F49",
            "red": "#DB6052",
            "green": "#77C581",
            "yellow": "#F2C03F",
            "blue": "#7595DA",
            "purple": "#DE8946",
            "cyan": "#54B4B5",
            "white": "#BEC6D5",
            "brightBlack": "#6F7C97",
            "brightRed": "#FE8474",
            "brightGreen": "#9AD2A0",
            "brightYellow": "#FFD36C",
            "brightBlue": "#8BB0FF",
            "brightPurple": "#E5AA7F",
            "brightCyan": "#72D1D3",
            "brightWhite": "#E7EBF3"
        },
        {
            "name": "London Portland",
            "background": "#E8F0FF",
            "foreground": "#293040",
            "cursorColor": "#A54300",
            "selectionBackground": "#A8BBE2",
            "black": "#3C4557",
            "red": "#9B211A",
            "green": "#0D8131",
            "yellow": "#8D6C08",
            "blue": "#0019A8",
            "purple": "#A54300",
            "cyan": "#007376",
            "white": "#93A7CF",
            "brightBlack": "#697794",
            "brightRed": "#CC2E25",
            "brightGreen": "#008730",
            "brightYellow": "#9B770A",
            "brightBlue": "#4A6EBD",
            "brightPurple": "#AC5A00",
            "brightCyan": "#008688",
            "brightWhite": "#A8BBE2"
        },
        {
            "name": "Paris Guimard",
            "background": "#1E2E26",
            "foreground": "#D9E1DB",
            "cursorColor": "#F1BF4B",
            "selectionBackground": "#3E554A",
            "black": "#30463B",
            "red": "#C7665B",
            "green": "#70CAA9",
            "yellow": "#F1BF4B",

Showing 150 of 366 lines.

fragment/subway-seat.jsonsave as %LOCALAPPDATA%\Microsoft\Windows Terminal\Fragments\SubwaySeat\subway-seat.json
{
    "schemes": [
        {
            "name": "Subway Seat",
            "background": "#362619",
            "foreground": "#EDDCBC",
            "cursorColor": "#F3BF45",
            "selectionBackground": "#634932",
            "black": "#513B27",
            "red": "#E05C45",
            "green": "#ADB956",
            "yellow": "#F3BF45",
            "blue": "#7F9BAE",
            "purple": "#EC7F31",
            "cyan": "#86AD95",
            "white": "#D9C6A3",
            "brightBlack": "#967B5C",
            "brightRed": "#FF8373",
            "brightGreen": "#BFCB63",
            "brightYellow": "#FFD36B",
            "brightBlue": "#9DB6C6",
            "brightPurple": "#FF9D55",
            "brightCyan": "#A5C9B0",
            "brightWhite": "#F8ECD4"
        },
        {
            "name": "Subway Seat Tunnel",
            "background": "#24180E",
            "foreground": "#E9D8B6",
            "cursorColor": "#F3BF45",
            "selectionBackground": "#4F3927",
            "black": "#3D2C1D",
            "red": "#E05C45",
            "green": "#ADB956",
            "yellow": "#F3BF45",
            "blue": "#7F9BAE",
            "purple": "#EC7F31",
            "cyan": "#86AD95",
            "white": "#D6C3A0",
            "brightBlack": "#917759",
            "brightRed": "#FF8373",
            "brightGreen": "#BFCB63",
            "brightYellow": "#FFD36B",
            "brightBlue": "#9DB6C6",
            "brightPurple": "#FF9D55",
            "brightCyan": "#A5C9B0",
            "brightWhite": "#F6EAD1"
        },
        {
            "name": "Subway Seat Enamel",
            "background": "#F8EFDF",
            "foreground": "#3E2C1E",
            "cursorColor": "#A04800",
            "selectionBackground": "#CBB898",
            "black": "#54402F",
            "red": "#992418",
            "green": "#66740F",
            "yellow": "#976608",
            "blue": "#3F6480",
            "purple": "#A04800",
            "cyan": "#3E7157",
            "white": "#BAA380",
            "brightBlack": "#8C7254",
            "brightRed": "#BF4233",
            "brightGreen": "#697813",
            "brightYellow": "#A9720A",
            "brightBlue": "#517791",
            "brightPurple": "#BA4D0A",
            "brightCyan": "#4C8367",
            "brightWhite": "#CBB898"
        },
        {
            "name": "London Moquette",
            "background": "#1E2941",
            "foreground": "#D8DEEA",
            "cursorColor": "#F2C03F",
            "selectionBackground": "#3D4F72",
            "black": "#303F61",
            "red": "#DB6052",
            "green": "#77C581",
            "yellow": "#F2C03F",
            "blue": "#7595DA",
            "purple": "#DE8946",
            "cyan": "#54B4B5",
            "white": "#C1C9D8",
            "brightBlack": "#73819C",
            "brightRed": "#FE8474",
            "brightGreen": "#9AD2A0",
            "brightYellow": "#FFD36C",
            "brightBlue": "#8BB0FF",
            "brightPurple": "#E5AA7F",
            "brightCyan": "#72D1D3",
            "brightWhite": "#E9EDF5"
        },
        {
            "name": "London Deep Level",
            "background": "#121A2D",
            "foreground": "#D4DAE7",
            "cursorColor": "#F2C03F",
            "selectionBackground": "#303E5B",
            "black": "#232F49",
            "red": "#DB6052",
            "green": "#77C581",
            "yellow": "#F2C03F",
            "blue": "#7595DA",
            "purple": "#DE8946",
            "cyan": "#54B4B5",
            "white": "#BEC6D5",
            "brightBlack": "#6F7C97",
            "brightRed": "#FE8474",
            "brightGreen": "#9AD2A0",
            "brightYellow": "#FFD36C",
            "brightBlue": "#8BB0FF",
            "brightPurple": "#E5AA7F",
            "brightCyan": "#72D1D3",
            "brightWhite": "#E7EBF3"
        },
        {
            "name": "London Portland",
            "background": "#E8F0FF",
            "foreground": "#293040",
            "cursorColor": "#A54300",
            "selectionBackground": "#A8BBE2",
            "black": "#3C4557",
            "red": "#9B211A",
            "green": "#0D8131",
            "yellow": "#8D6C08",
            "blue": "#0019A8",
            "purple": "#A54300",
            "cyan": "#007376",
            "white": "#93A7CF",
            "brightBlack": "#697794",
            "brightRed": "#CC2E25",
            "brightGreen": "#008730",
            "brightYellow": "#9B770A",
            "brightBlue": "#4A6EBD",
            "brightPurple": "#AC5A00",
            "brightCyan": "#008688",
            "brightWhite": "#A8BBE2"
        },
        {
            "name": "Paris Guimard",
            "background": "#1E2E26",
            "foreground": "#D9E1DB",
            "cursorColor": "#F1BF4B",
            "selectionBackground": "#3E554A",
            "black": "#30463B",
            "red": "#C7665B",
            "green": "#70CAA9",
            "yellow": "#F1BF4B",

Showing 150 of 211 lines.