diff --git a/README.md b/README.md index e45162c..eaf696d 100644 --- a/README.md +++ b/README.md @@ -17,24 +17,16 @@ ## Usage +### Color Schemes +1. Copy the catppuccin folder inside this repo to `C:\Users\\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 (Ctrl + ,) 3. Select **Open JSON file** at bottom left corner (Ctrl + Shift + ,) -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 { @@ -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 diff --git a/catppuccin/catppuccin.json b/catppuccin/catppuccin.json new file mode 100644 index 0000000..f9913dd --- /dev/null +++ b/catppuccin/catppuccin.json @@ -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" + } + ] +} diff --git a/frappe.json b/frappe.json deleted file mode 100644 index 55583d0..0000000 --- a/frappe.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "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" -} diff --git a/latte.json b/latte.json deleted file mode 100644 index 53647ec..0000000 --- a/latte.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "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" -} diff --git a/macchiato.json b/macchiato.json deleted file mode 100644 index b876763..0000000 --- a/macchiato.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "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" -} diff --git a/mocha.json b/mocha.json deleted file mode 100644 index 79f794b..0000000 --- a/mocha.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "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" -}