Skip to content

Latest commit

 

History

History
68 lines (66 loc) · 1.76 KB

INSTALL.md

File metadata and controls

68 lines (66 loc) · 1.76 KB

Install

  1. Copy the following code and paste it into your Windows Terminal configuration file (You can find it in the settings page pressing Ctrl+, and paste it inside schemes):
{
    "name": "Ballerini",
    "cursorColor": "#FFF2E7",
    "selectionBackground": "#583C38",
    "background": "#261C1E",
    "foreground": "#FFF2E7",
    "black": "#0C0C0C",
    "blue": "#4B9DE0",
    "cyan": "#55EDC4",
    "green": "#67E480",
    "purple": "#881798",
    "red": "#C54648",
    "white": "#CCCCCC",
    "yellow": "#F0BD3C",
    "brightBlack": "#767676",
    "brightBlue": "#98D3D9",
    "brightCyan": "#A6EDDA",
    "brightGreen": "#C1E1C1",
    "brightPurple": "#B4009E",
    "brightRed": "#E68E7B",
    "brightWhite": "#F2F2F2",
    "brightYellow": "#EFC764"
}
  1. Example of how the settings.json schemes list looks like:
"schemes": 
[
    {
        // Code goes here
    }
]
  1. Now, you just need to paste it inside, make sure to place it at the bottom, or add a comma to the end bracket ( } ).
"schemes": 
[
    {
        "name": "Ballerini",
        "cursorColor": "#FFF2E7",
        "selectionBackground": "#583C38",
        "background": "#261C1E",
        "foreground": "#FFF2E7",
        "black": "#0C0C0C",
        "blue": "#4B9DE0",
        "cyan": "#55EDC4",
        "green": "#67E480",
        "purple": "#881798",
        "red": "#C54648",
        "white": "#CCCCCC",
        "yellow": "#F0BD3C",
        "brightBlack": "#767676",
        "brightBlue": "#98D3D9",
        "brightCyan": "#A6EDDA",
        "brightGreen": "#C1E1C1",
        "brightPurple": "#B4009E",
        "brightRed": "#E68E7B",
        "brightWhite": "#F2F2F2",
        "brightYellow": "#EFC764"
    }
]