├── .editorconfig ├── .gitignore ├── LICENSE-CC-BY-4.0 ├── LICENSE-MIT ├── README.md ├── assets ├── .gitkeep ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp └── themes ├── frappe ├── catppuccin-theme-frappe.aseprite-extension └── catppuccin-theme-frappe │ ├── package.json │ ├── sheet.aseprite-data │ ├── sheet.png │ └── theme.xml ├── latte ├── catppuccin-theme-latte.aseprite-extension └── catppuccin-theme-latte │ ├── package.json │ ├── sheet.aseprite-data │ ├── sheet.png │ └── theme.xml ├── macchiato ├── catppuccin-theme-macchiato.aseprite-extension └── catppuccin-theme-macchiato │ ├── package.json │ ├── sheet.aseprite-data │ ├── sheet.png │ └── theme.xml └── mocha ├── catppuccin-theme-mocha.aseprite-extension └── catppuccin-theme-mocha ├── package.json ├── sheet.aseprite-data ├── sheet.png └── theme.xml /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Aseprite generated files 2 | __*.json 3 | -------------------------------------------------------------------------------- /LICENSE-CC-BY-4.0: -------------------------------------------------------------------------------- 1 | Aseprite Default Theme 2 | Copyright (C) 2009-2017 David Capello and Ilija Melentijevic 3 | http://www.aseprite.org/ 4 | 5 | This work is licensed under the Creative Commons Attribution 4.0 6 | International License. To view a copy of this license, visit 7 | http://creativecommons.org/licenses/by/4.0/ or send a letter to 8 | Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. 9 | 10 | --- 11 | 12 | Aseprite Default Theme 13 | Copyright (C) 2009-2017 David Capello and Ilija Melentijevic 14 | http://www.aseprite.org/ 15 | 16 | EnterCommand.ttf made by Font End Dev 17 | https://fontenddev.com/fonts/enter-command/ 18 | 19 | Aseprite Wild Night Theme Copyright (C) 2020 Leonardo "WildLeoKnight" Lourenço. 20 | This work is licensed under the Creative Commons Attribution 4.0 21 | International License. To view a copy of this license, visit 22 | http://creativecommons.org/licenses/by/4.0/ or send a letter to 23 | Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. 24 | -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo
3 | 4 | Catppuccin for Aseprite 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

13 | 14 |

15 | 16 |

17 | 18 | ## Previews 19 | 20 |
21 | 🌻 Latte 22 | 23 |
24 |
25 | 🪴 Frappé 26 | 27 |
28 |
29 | 🌺 Macchiato 30 | 31 |
32 |
33 | 🌿 Mocha 34 | 35 |
36 | 37 | ## Usage 38 | 39 | 1. Download the extension from the [latest release](https://github.com/catppuccin/aseprite/releases/latest). 40 | 2. Unzip the downloaded extension archive. 41 | 3. Open Aseprite and go to **Edit** > **Preferences** > **Themes**. 42 | 4. You can now select the unzipped directory in the themes window. 43 | 44 | ## 💝 Thanks to 45 | 46 | - [Sofy](https://github.com/sofycodes) 47 | - [Cequal](https://github.com/Cequallium) 48 | - [Sharkked](https://github.com/sharkked) 49 | - [Aemogie](https://github.com/aemogie) 50 | 51 |   52 | 53 |

54 | 55 |

56 | 57 |

58 | Copyright © 2021-present Catppuccin Org 59 |

60 | 61 |

62 | 63 |

64 | -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/assets/.gitkeep -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/assets/preview.webp -------------------------------------------------------------------------------- /themes/frappe/catppuccin-theme-frappe.aseprite-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/frappe/catppuccin-theme-frappe.aseprite-extension -------------------------------------------------------------------------------- /themes/frappe/catppuccin-theme-frappe/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "catppuccin-theme-frappe", 3 | "displayName": "Catppuccin Theme Frappe", 4 | "description": "Soothing pastel theme for Aseprite", 5 | "version": "1.2", 6 | "author": { "name": "SofyCat", "email": "", "url": "" }, 7 | "contributors": [ 8 | ], 9 | "publisher": "Catppuccin", 10 | "license": "MIT", 11 | "categories": [ 12 | "Themes" 13 | ], 14 | "contributes": { 15 | "themes": [ 16 | { "id": "Catppuccin Theme Frappe", "path": "." } 17 | ] 18 | } 19 | } -------------------------------------------------------------------------------- /themes/frappe/catppuccin-theme-frappe/sheet.aseprite-data: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/frappe/catppuccin-theme-frappe/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/frappe/catppuccin-theme-frappe/sheet.png -------------------------------------------------------------------------------- /themes/frappe/catppuccin-theme-frappe/theme.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 517 | 521 | 525 | 532 | 538 | 544 | 550 | 556 | 560 | 563 | 566 | 571 | 574 | 577 | 580 | 584 | 588 | 592 | 596 | 600 | 604 | 613 | 618 | 623 | 627 | 631 | 636 | 649 | 662 | 674 | 683 | 689 | 695 | 704 | 709 | 714 | 719 | 723 | 729 | 734 | 737 | 742 | 747 | 751 | 754 | 762 | 767 | 780 | 787 | 793 | 796 | 799 | 803 | 807 | 811 | 815 | 818 | 821 | 827 | 831 | 837 | 840 | 844 | 849 | 854 | 858 | 867 | 872 | 875 | 882 | 888 | 894 | 900 | 906 | 911 | 916 | 921 | 926 | 933 | 940 | 945 | 952 | 957 | 960 | 964 | 968 | 972 | 976 | 980 | 983 | 986 | 989 | 994 | 999 | 1002 | 1005 | 1008 | 1011 | 1014 | 1018 | 1021 | 1024 | 1027 | 1034 | 1037 | 1041 | 1047 | 1056 | 1061 | 1067 | 1072 | 1073 | 1074 | -------------------------------------------------------------------------------- /themes/latte/catppuccin-theme-latte.aseprite-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/latte/catppuccin-theme-latte.aseprite-extension -------------------------------------------------------------------------------- /themes/latte/catppuccin-theme-latte/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "catppuccin-theme-latte", 3 | "displayName": "Catppuccin Theme Latte", 4 | "description": "Soothing pastel theme for Aseprite", 5 | "version": "1.2", 6 | "author": { "name": "SofyCat", "email": "", "url": "" }, 7 | "contributors": [ 8 | ], 9 | "publisher": "Catppuccin", 10 | "license": "MIT", 11 | "categories": [ 12 | "Themes" 13 | ], 14 | "contributes": { 15 | "themes": [ 16 | { "id": "Catppuccin Theme Latte", "path": "." } 17 | ] 18 | } 19 | } -------------------------------------------------------------------------------- /themes/latte/catppuccin-theme-latte/sheet.aseprite-data: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/latte/catppuccin-theme-latte/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/latte/catppuccin-theme-latte/sheet.png -------------------------------------------------------------------------------- /themes/latte/catppuccin-theme-latte/theme.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 517 | 521 | 525 | 532 | 538 | 544 | 550 | 556 | 560 | 563 | 566 | 571 | 574 | 577 | 580 | 584 | 588 | 592 | 596 | 600 | 604 | 613 | 618 | 623 | 627 | 631 | 636 | 649 | 662 | 674 | 683 | 689 | 695 | 704 | 709 | 714 | 719 | 723 | 729 | 734 | 737 | 742 | 747 | 751 | 754 | 762 | 767 | 780 | 787 | 793 | 796 | 799 | 803 | 807 | 811 | 815 | 818 | 821 | 827 | 831 | 837 | 840 | 844 | 849 | 854 | 858 | 867 | 872 | 875 | 882 | 888 | 894 | 900 | 906 | 911 | 916 | 921 | 926 | 933 | 940 | 945 | 952 | 957 | 960 | 964 | 968 | 972 | 976 | 980 | 983 | 986 | 989 | 994 | 999 | 1002 | 1005 | 1008 | 1011 | 1014 | 1018 | 1021 | 1024 | 1027 | 1034 | 1037 | 1041 | 1047 | 1056 | 1061 | 1067 | 1072 | 1073 | 1074 | -------------------------------------------------------------------------------- /themes/macchiato/catppuccin-theme-macchiato.aseprite-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/macchiato/catppuccin-theme-macchiato.aseprite-extension -------------------------------------------------------------------------------- /themes/macchiato/catppuccin-theme-macchiato/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "catppuccin-theme-macchiato", 3 | "displayName": "Catppuccin Theme Macchiato", 4 | "description": "Soothing pastel theme for Aseprite", 5 | "version": "1.2", 6 | "author": { "name": "SofyCat", "email": "", "url": "" }, 7 | "contributors": [ 8 | ], 9 | "publisher": "Catppuccin", 10 | "license": "MIT", 11 | "categories": [ 12 | "Themes" 13 | ], 14 | "contributes": { 15 | "themes": [ 16 | { "id": "Catppuccin Theme Macchiato", "path": "." } 17 | ] 18 | } 19 | } -------------------------------------------------------------------------------- /themes/macchiato/catppuccin-theme-macchiato/sheet.aseprite-data: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/macchiato/catppuccin-theme-macchiato/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/macchiato/catppuccin-theme-macchiato/sheet.png -------------------------------------------------------------------------------- /themes/mocha/catppuccin-theme-mocha.aseprite-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/mocha/catppuccin-theme-mocha.aseprite-extension -------------------------------------------------------------------------------- /themes/mocha/catppuccin-theme-mocha/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "catppuccin-theme-mocha", 3 | "displayName": "Catppuccin Theme Mocha", 4 | "description": "Soothing pastel theme for Aseprite", 5 | "version": "1.2", 6 | "author": { "name": "SofyCat", "email": "", "url": "" }, 7 | "contributors": [ 8 | ], 9 | "publisher": "Catppuccin", 10 | "license": "MIT", 11 | "categories": [ 12 | "Themes" 13 | ], 14 | "contributes": { 15 | "themes": [ 16 | { "id": "Catppuccin Theme Mocha", "path": "." } 17 | ] 18 | } 19 | } -------------------------------------------------------------------------------- /themes/mocha/catppuccin-theme-mocha/sheet.aseprite-data: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /themes/mocha/catppuccin-theme-mocha/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/aseprite/ad2761446f7472587c7d6d04e81eb65aa8589d00/themes/mocha/catppuccin-theme-mocha/sheet.png -------------------------------------------------------------------------------- /themes/mocha/catppuccin-theme-mocha/theme.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 517 | 521 | 525 | 532 | 538 | 544 | 550 | 556 | 560 | 563 | 566 | 571 | 574 | 577 | 580 | 584 | 588 | 592 | 596 | 600 | 604 | 613 | 618 | 623 | 627 | 631 | 636 | 649 | 662 | 674 | 683 | 689 | 695 | 704 | 709 | 714 | 719 | 723 | 729 | 734 | 737 | 742 | 747 | 751 | 754 | 762 | 767 | 780 | 787 | 793 | 796 | 799 | 803 | 807 | 811 | 815 | 818 | 821 | 827 | 831 | 837 | 840 | 844 | 849 | 854 | 858 | 867 | 872 | 875 | 882 | 888 | 894 | 900 | 906 | 911 | 916 | 921 | 926 | 933 | 940 | 945 | 952 | 957 | 960 | 964 | 968 | 972 | 976 | 980 | 983 | 986 | 989 | 994 | 999 | 1002 | 1005 | 1008 | 1011 | 1014 | 1018 | 1021 | 1024 | 1027 | 1034 | 1037 | 1041 | 1047 | 1056 | 1061 | 1067 | 1072 | 1073 | 1074 | --------------------------------------------------------------------------------