Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Combined all the scheme files into a single json fragment extension #18

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 10 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,16 @@

## Usage

### Color Schemes
1. Copy the catppuccin folder inside this repo to `C:\Users\<user>\AppData\Local\Microsoft\Windows Terminal\Fragments`

Note: If the `Windows Terminal\Fragments` directory does not exist, the installer should create it.

### Themes
1. Launch Windows Terminal
2. Open the **Settings** panel (<kbd>Ctrl + ,</kbd>)
3. Select **Open JSON file** at bottom left corner (<kbd>Ctrl + Shift + ,</kbd>)
4. Choose your _flavour_ (frappe, latte, macchiato, mocha)
5. Copy the contents of _flavour_.json (example: frappe.json) into the opened JSON file under **"schemes"**:

```json
{
..default layout
"schemes":
[
..catppuccin flavour
..other schemes
],
}
```

6. Copy the contents of _flavourTheme_.json (example: frappeTheme.json) into the opened JSON file under **"themes"**:
4. Copy the contents of _flavourTheme_.json (example: frappeTheme.json) into the opened JSON file under **"themes"**:

```json
{
Expand All @@ -47,10 +39,9 @@
}
```

7. Save and exit
8. In the **Settings** panel under Profiles, select the profile you want to apply the theme to. **Defaults** will apply theme to all profiles.
9. Select **Appearance**
10. Choose your _catppuccin flavor_ in the **Color scheme** drop down menu
5. Save and exit
6. In the **Settings** panel, go to **Appearance**
10. Choose your _catppuccin flavor_ in the **Application Theme** drop down menu
11. Click on **Save**, enjoy! ✨

## 💝 Thanks to
Expand Down
112 changes: 112 additions & 0 deletions catppuccin/catppuccin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
{
"schemes": [
{
"name": "Catppuccin Latte",

"cursorColor": "#DC8A78",
"selectionBackground": "#ACB0BE",

"background": "#EFF1F5",
"foreground": "#4C4F69",

"black": "#5C5F77",
"red": "#D20F39",
"green": "#40A02B",
"yellow": "#DF8E1D",
"blue": "#1E66F5",
"purple": "#EA76CB",
"cyan": "#179299",
"white": "#ACB0BE",

"brightBlack": "#ACB0BE",
"brightRed": "#D20F39",
"brightGreen": "#40A02B",
"brightYellow": "#DF8E1D",
"brightBlue": "#1E66F5",
"brightPurple": "#EA76CB",
"brightCyan": "#179299",
"brightWhite": "#BCC0CC"
},
{
"name": "Catppuccin Frappe",

"cursorColor": "#F2D5CF",
"selectionBackground": "#626880",

"background": "#303446",
"foreground": "#C6D0F5",

"black": "#51576D",
"red": "#E78284",
"green": "#A6D189",
"yellow": "#E5C890",
"blue": "#8CAAEE",
"purple": "#F4B8E4",
"cyan": "#81C8BE",
"white": "#B5BFE2",

"brightBlack": "#626880",
"brightRed": "#E78284",
"brightGreen": "#A6D189",
"brightYellow": "#E5C890",
"brightBlue": "#8CAAEE",
"brightPurple": "#F4B8E4",
"brightCyan": "#81C8BE",
"brightWhite": "#A5ADCE"
},
{
"name": "Catppuccin Macchiato",

"cursorColor": "#F4DBD6",
"selectionBackground": "#5B6078",

"background": "#24273A",
"foreground": "#CAD3F5",

"black": "#494D64",
"red": "#ED8796",
"green": "#A6DA95",
"yellow": "#EED49F",
"blue": "#8AADF4",
"purple": "#F5BDE6",
"cyan": "#8BD5CA",
"white": "#B8C0E0",

"brightBlack": "#5B6078",
"brightRed": "#ED8796",
"brightGreen": "#A6DA95",
"brightYellow": "#EED49F",
"brightBlue": "#8AADF4",
"brightPurple": "#F5BDE6",
"brightCyan": "#8BD5CA",
"brightWhite": "#A5ADCB"
},
{
"name": "Catppuccin Mocha",

"cursorColor": "#F5E0DC",
"selectionBackground": "#585B70",

"background": "#1E1E2E",
"foreground": "#CDD6F4",

"black": "#45475A",
"red": "#F38BA8",
"green": "#A6E3A1",
"yellow": "#F9E2AF",
"blue": "#89B4FA",
"purple": "#F5C2E7",
"cyan": "#94E2D5",
"white": "#BAC2DE",

"brightBlack": "#585B70",
"brightRed": "#F38BA8",
"brightGreen": "#A6E3A1",
"brightYellow": "#F9E2AF",
"brightBlue": "#89B4FA",
"brightPurple": "#F5C2E7",
"brightCyan": "#94E2D5",
"brightWhite": "#A6ADC8"
}
]
}
27 changes: 0 additions & 27 deletions frappe.json

This file was deleted.

27 changes: 0 additions & 27 deletions latte.json

This file was deleted.

27 changes: 0 additions & 27 deletions macchiato.json

This file was deleted.

27 changes: 0 additions & 27 deletions mocha.json

This file was deleted.