├── .editorconfig ├── .envrc ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── assets ├── catppuccin-frappe-blue.webp ├── catppuccin-latte-blue.webp ├── catppuccin-macchiato-blue.webp ├── catppuccin-mocha-blue.webp └── preview.webp ├── fcitx5-android.tera ├── flake.lock ├── flake.nix ├── justfile ├── preview.rb └── themes ├── Frappé ├── Blue │ ├── README.md │ ├── catppuccin-frappe-blue.webp │ └── catppuccin-frappe-blue.zip ├── Flamingo │ ├── README.md │ ├── catppuccin-frappe-flamingo.webp │ └── catppuccin-frappe-flamingo.zip ├── Green │ ├── README.md │ ├── catppuccin-frappe-green.webp │ └── catppuccin-frappe-green.zip ├── Lavender │ ├── README.md │ ├── catppuccin-frappe-lavender.webp │ └── catppuccin-frappe-lavender.zip ├── Maroon │ ├── README.md │ ├── catppuccin-frappe-maroon.webp │ └── catppuccin-frappe-maroon.zip ├── Mauve │ ├── README.md │ ├── catppuccin-frappe-mauve.webp │ └── catppuccin-frappe-mauve.zip ├── Peach │ ├── README.md │ ├── catppuccin-frappe-peach.webp │ └── catppuccin-frappe-peach.zip ├── Pink │ ├── README.md │ ├── catppuccin-frappe-pink.webp │ └── catppuccin-frappe-pink.zip ├── Red │ ├── README.md │ ├── catppuccin-frappe-red.webp │ └── catppuccin-frappe-red.zip ├── Rosewater │ ├── README.md │ ├── catppuccin-frappe-rosewater.webp │ └── catppuccin-frappe-rosewater.zip ├── Sapphire │ ├── README.md │ ├── catppuccin-frappe-sapphire.webp │ └── catppuccin-frappe-sapphire.zip ├── Sky │ ├── README.md │ ├── catppuccin-frappe-sky.webp │ └── catppuccin-frappe-sky.zip ├── Teal │ ├── README.md │ ├── catppuccin-frappe-teal.webp │ └── catppuccin-frappe-teal.zip └── Yellow │ ├── README.md │ ├── catppuccin-frappe-yellow.webp │ └── catppuccin-frappe-yellow.zip ├── Latte ├── Blue │ ├── README.md │ ├── catppuccin-latte-blue.webp │ └── catppuccin-latte-blue.zip ├── Flamingo │ ├── README.md │ ├── catppuccin-latte-flamingo.webp │ └── catppuccin-latte-flamingo.zip ├── Green │ ├── README.md │ ├── catppuccin-latte-green.webp │ └── catppuccin-latte-green.zip ├── Lavender │ ├── README.md │ ├── catppuccin-latte-lavender.webp │ └── catppuccin-latte-lavender.zip ├── Maroon │ ├── README.md │ ├── catppuccin-latte-maroon.webp │ └── catppuccin-latte-maroon.zip ├── Mauve │ ├── README.md │ ├── catppuccin-latte-mauve.webp │ └── catppuccin-latte-mauve.zip ├── Peach │ ├── README.md │ ├── catppuccin-latte-peach.webp │ └── catppuccin-latte-peach.zip ├── Pink │ ├── README.md │ ├── catppuccin-latte-pink.webp │ └── catppuccin-latte-pink.zip ├── Red │ ├── README.md │ ├── catppuccin-latte-red.webp │ └── catppuccin-latte-red.zip ├── Rosewater │ ├── README.md │ ├── catppuccin-latte-rosewater.webp │ └── catppuccin-latte-rosewater.zip ├── Sapphire │ ├── README.md │ ├── catppuccin-latte-sapphire.webp │ └── catppuccin-latte-sapphire.zip ├── Sky │ ├── README.md │ ├── catppuccin-latte-sky.webp │ └── catppuccin-latte-sky.zip ├── Teal │ ├── README.md │ ├── catppuccin-latte-teal.webp │ └── catppuccin-latte-teal.zip └── Yellow │ ├── README.md │ ├── catppuccin-latte-yellow.webp │ └── catppuccin-latte-yellow.zip ├── Macchiato ├── Blue │ ├── README.md │ ├── catppuccin-macchiato-blue.webp │ └── catppuccin-macchiato-blue.zip ├── Flamingo │ ├── README.md │ ├── catppuccin-macchiato-flamingo.webp │ └── catppuccin-macchiato-flamingo.zip ├── Green │ ├── README.md │ ├── catppuccin-macchiato-green.webp │ └── catppuccin-macchiato-green.zip ├── Lavender │ ├── README.md │ ├── catppuccin-macchiato-lavender.webp │ └── catppuccin-macchiato-lavender.zip ├── Maroon │ ├── README.md │ ├── catppuccin-macchiato-maroon.webp │ └── catppuccin-macchiato-maroon.zip ├── Mauve │ ├── README.md │ ├── catppuccin-macchiato-mauve.webp │ └── catppuccin-macchiato-mauve.zip ├── Peach │ ├── README.md │ ├── catppuccin-macchiato-peach.webp │ └── catppuccin-macchiato-peach.zip ├── Pink │ ├── README.md │ ├── catppuccin-macchiato-pink.webp │ └── catppuccin-macchiato-pink.zip ├── Red │ ├── README.md │ ├── catppuccin-macchiato-red.webp │ └── catppuccin-macchiato-red.zip ├── Rosewater │ ├── README.md │ ├── catppuccin-macchiato-rosewater.webp │ └── catppuccin-macchiato-rosewater.zip ├── Sapphire │ ├── README.md │ ├── catppuccin-macchiato-sapphire.webp │ └── catppuccin-macchiato-sapphire.zip ├── Sky │ ├── README.md │ ├── catppuccin-macchiato-sky.webp │ └── catppuccin-macchiato-sky.zip ├── Teal │ ├── README.md │ ├── catppuccin-macchiato-teal.webp │ └── catppuccin-macchiato-teal.zip └── Yellow │ ├── README.md │ ├── catppuccin-macchiato-yellow.webp │ └── catppuccin-macchiato-yellow.zip └── Mocha ├── Blue ├── README.md ├── catppuccin-mocha-blue.webp └── catppuccin-mocha-blue.zip ├── Flamingo ├── README.md ├── catppuccin-mocha-flamingo.webp └── catppuccin-mocha-flamingo.zip ├── Green ├── README.md ├── catppuccin-mocha-green.webp └── catppuccin-mocha-green.zip ├── Lavender ├── README.md ├── catppuccin-mocha-lavender.webp └── catppuccin-mocha-lavender.zip ├── Maroon ├── README.md ├── catppuccin-mocha-maroon.webp └── catppuccin-mocha-maroon.zip ├── Mauve ├── README.md ├── catppuccin-mocha-mauve.webp └── catppuccin-mocha-mauve.zip ├── Peach ├── README.md ├── catppuccin-mocha-peach.webp └── catppuccin-mocha-peach.zip ├── Pink ├── README.md ├── catppuccin-mocha-pink.webp └── catppuccin-mocha-pink.zip ├── Red ├── README.md ├── catppuccin-mocha-red.webp └── catppuccin-mocha-red.zip ├── Rosewater ├── README.md ├── catppuccin-mocha-rosewater.webp └── catppuccin-mocha-rosewater.zip ├── Sapphire ├── README.md ├── catppuccin-mocha-sapphire.webp └── catppuccin-mocha-sapphire.zip ├── Sky ├── README.md ├── catppuccin-mocha-sky.webp └── catppuccin-mocha-sky.zip ├── Teal ├── README.md ├── catppuccin-mocha-teal.webp └── catppuccin-mocha-teal.zip └── Yellow ├── README.md ├── catppuccin-mocha-yellow.webp └── catppuccin-mocha-yellow.zip /.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 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv/ 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | gem "selenium-webdriver", "~> 4.27" 6 | gem "webp-ffi", "~> 0.4.0" 7 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | base64 (0.2.0) 5 | ffi (1.17.0) 6 | ffi (1.17.0-x86_64-darwin) 7 | ffi-compiler (1.3.2) 8 | ffi (>= 1.15.5) 9 | rake 10 | logger (1.6.2) 11 | rake (13.2.1) 12 | rexml (3.3.9) 13 | rubyzip (2.3.2) 14 | selenium-webdriver (4.27.0) 15 | base64 (~> 0.2) 16 | logger (~> 1.4) 17 | rexml (~> 3.2, >= 3.2.5) 18 | rubyzip (>= 1.2.2, < 3.0) 19 | websocket (~> 1.0) 20 | webp-ffi (0.4.0) 21 | ffi (>= 1.9.0) 22 | ffi-compiler (>= 0.1.2) 23 | websocket (1.2.11) 24 | 25 | PLATFORMS 26 | ruby 27 | x86_64-darwin-24 28 | 29 | DEPENDENCIES 30 | selenium-webdriver (~> 4.27) 31 | webp-ffi (~> 0.4.0) 32 | 33 | BUNDLED WITH 34 | 2.5.22 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 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 fcitx5-android 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 your flavor of choice from [`themes/`](./themes/). 40 | 2. Open fcitx5-android and go to **Theme** > **New theme** > **Import from file...**. 41 | 3. Select the downloaded flavor file. 42 | 43 | ## 💝 Thanks to 44 | 45 | - [XYenon](https://github.com/XYenon) 46 | 47 |   48 | 49 |

50 | 51 |

52 | 53 |

54 | Copyright © 2021-present Catppuccin Org 55 |

56 | 57 |

58 | 59 |

60 | -------------------------------------------------------------------------------- /assets/catppuccin-frappe-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/assets/catppuccin-frappe-blue.webp -------------------------------------------------------------------------------- /assets/catppuccin-latte-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/assets/catppuccin-latte-blue.webp -------------------------------------------------------------------------------- /assets/catppuccin-macchiato-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/assets/catppuccin-macchiato-blue.webp -------------------------------------------------------------------------------- /assets/catppuccin-mocha-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/assets/catppuccin-mocha-blue.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/assets/preview.webp -------------------------------------------------------------------------------- /fcitx5-android.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.5.1 4 | matrix: 5 | - flavor 6 | - accent 7 | filename: "themes/{{ flavor.name }}/{{ flavor.colors[accent].name }}/catppuccin-{{ flavor.identifier }}-{{ accent }}.json" 8 | --- 9 | {% if flavor.light %} 10 | {% set backgroundColor = crust.sint32 %} 11 | {% set barColor = surface0.sint32 %} 12 | {% set keyBackgroundColor = base.sint32 %} 13 | {% set keyShadowColor = surface0.sint32 %} 14 | {% else %} 15 | {% set backgroundColor = mantle.sint32 %} 16 | {% set barColor = base.sint32 %} 17 | {% set keyBackgroundColor = surface0.sint32 %} 18 | {% set keyShadowColor = crust.sint32 %} 19 | {% endif %} 20 | {% set keyboardColor = backgroundColor %} 21 | {% set keyTextColor = text.sint32 %} 22 | {% set candidateTextColor = keyTextColor %} 23 | {% set candidateLabelColor = keyTextColor %} 24 | {% set candidateCommentColor = subtext0.sint32 %} 25 | {% set altKeyBackgroundColor = barColor %} 26 | {% set altKeyTextColor = candidateCommentColor %} 27 | {% set accentKeyBackgroundColor = flavor.colors[accent].sint32 %} 28 | {% set accentKeyTextColor = base.sint32 %} 29 | {% set keyPressHighlightColor = overlay2 | mod(opacity=0.7) | get(key='sint32') %} 30 | {% set popupBackgroundColor = altKeyBackgroundColor %} 31 | {% set popupTextColor = text.sint32 %} 32 | {% set spaceBarColor = surface1.sint32 %} 33 | {% set dividerColor = surface1.sint32 %} 34 | {% set clipboardEntryColor = keyBackgroundColor %} 35 | { 36 | "version": "2.1", 37 | "name": "catppuccin-{{ flavor.identifier }}-{{ accent }}", 38 | "isDark": {{ flavor.dark }}, 39 | "backgroundColor": {{ backgroundColor }}, 40 | "barColor": {{ barColor }}, 41 | "keyboardColor": {{ keyboardColor }}, 42 | "keyBackgroundColor": {{ keyBackgroundColor }}, 43 | "keyTextColor": {{ keyTextColor }}, 44 | "candidateTextColor": {{ candidateTextColor }}, 45 | "candidateLabelColor": {{ candidateLabelColor }}, 46 | "candidateCommentColor": {{ candidateCommentColor }}, 47 | "altKeyBackgroundColor": {{ altKeyBackgroundColor }}, 48 | "altKeyTextColor": {{ altKeyTextColor }}, 49 | "accentKeyBackgroundColor": {{ accentKeyBackgroundColor }}, 50 | "accentKeyTextColor": {{ accentKeyTextColor }}, 51 | "keyPressHighlightColor": {{ keyPressHighlightColor }}, 52 | "keyShadowColor": {{ keyShadowColor }}, 53 | "popupBackgroundColor": {{ popupBackgroundColor }}, 54 | "popupTextColor": {{ popupTextColor }}, 55 | "spaceBarColor": {{ spaceBarColor }}, 56 | "dividerColor": {{ dividerColor }}, 57 | "clipboardEntryColor": {{ clipboardEntryColor }}, 58 | "genericActiveBackgroundColor": {{ flavor.colors[accent].sint32 }}, 59 | "genericActiveForegroundColor": {{ base.sint32 }}, 60 | "backgroundImage": null 61 | } 62 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { 3 | "flake-utils": { 4 | "inputs": { 5 | "systems": "systems" 6 | }, 7 | "locked": { 8 | "lastModified": 1731533236, 9 | "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 10 | "owner": "numtide", 11 | "repo": "flake-utils", 12 | "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 13 | "type": "github" 14 | }, 15 | "original": { 16 | "owner": "numtide", 17 | "repo": "flake-utils", 18 | "type": "github" 19 | } 20 | }, 21 | "nixpkgs": { 22 | "locked": { 23 | "lastModified": 1743076231, 24 | "narHash": "sha256-yQugdVfi316qUfqzN8JMaA2vixl+45GxNm4oUfXlbgw=", 25 | "owner": "NixOS", 26 | "repo": "nixpkgs", 27 | "rev": "6c5963357f3c1c840201eda129a99d455074db04", 28 | "type": "github" 29 | }, 30 | "original": { 31 | "owner": "NixOS", 32 | "ref": "nixpkgs-unstable", 33 | "repo": "nixpkgs", 34 | "type": "github" 35 | } 36 | }, 37 | "root": { 38 | "inputs": { 39 | "flake-utils": "flake-utils", 40 | "nixpkgs": "nixpkgs" 41 | } 42 | }, 43 | "systems": { 44 | "locked": { 45 | "lastModified": 1681028828, 46 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 47 | "owner": "nix-systems", 48 | "repo": "default", 49 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 50 | "type": "github" 51 | }, 52 | "original": { 53 | "owner": "nix-systems", 54 | "repo": "default", 55 | "type": "github" 56 | } 57 | } 58 | }, 59 | "root": "root", 60 | "version": 7 61 | } 62 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | inputs = { 3 | nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 4 | flake-utils.url = "github:numtide/flake-utils"; 5 | }; 6 | 7 | outputs = 8 | { 9 | self, 10 | nixpkgs, 11 | flake-utils, 12 | }: 13 | flake-utils.lib.eachDefaultSystem ( 14 | system: 15 | let 16 | pkgs = nixpkgs.legacyPackages.${system}; 17 | in 18 | { 19 | formatter = pkgs.nixpkgs-fmt; 20 | devShells.default = pkgs.mkShell { 21 | packages = with pkgs; [ 22 | just 23 | catppuccin-whiskers 24 | catppuccin-catwalk 25 | ruby 26 | rubocop 27 | ]; 28 | buildInputs = with pkgs; [ 29 | libjpeg 30 | libpng 31 | libtiff 32 | libwebp 33 | ]; 34 | }; 35 | } 36 | ); 37 | } 38 | -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | #!/usr/bin/env bash 6 | set -euo pipefail 7 | whiskers fcitx5-android.tera 8 | for flavor in $(whiskers --list-flavors | jq -rc '.[]'); do 9 | for accent in $(whiskers --list-accents | jq -rc '.[]'); do 10 | flavor_name=$(echo "$flavor" | jq -r '.name') 11 | flavor_identifier=$(echo "$flavor" | jq -r '.identifier') 12 | accent_name=$(echo "$accent" | jq -r '.name') 13 | accent_identifier=$(echo "$accent" | jq -r '.identifier') 14 | pushd "themes/${flavor_name}/${accent_name}" > /dev/null 15 | theme_name="catppuccin-${flavor_identifier}-${accent_identifier}" 16 | zip "${theme_name}.zip" "${theme_name}.json" 17 | rm "${theme_name}.json" 18 | popd > /dev/null 19 | done 20 | done 21 | 22 | generate-preview: 23 | bundle exec ruby preview.rb $(fd --extension zip '' themes) 24 | cp 'themes/Latte/Blue/catppuccin-latte-blue.webp' 'assets/catppuccin-latte-blue.webp' 25 | cp 'themes/Frappé/Blue/catppuccin-frappe-blue.webp' 'assets/catppuccin-frappe-blue.webp' 26 | cp 'themes/Macchiato/Blue/catppuccin-macchiato-blue.webp' 'assets/catppuccin-macchiato-blue.webp' 27 | cp 'themes/Mocha/Blue/catppuccin-mocha-blue.webp' 'assets/catppuccin-mocha-blue.webp' 28 | catwalk --directory 'assets' \ 29 | 'catppuccin-latte-blue.webp' \ 30 | 'catppuccin-frappe-blue.webp' \ 31 | 'catppuccin-macchiato-blue.webp' \ 32 | 'catppuccin-mocha-blue.webp' 33 | -------------------------------------------------------------------------------- /preview.rb: -------------------------------------------------------------------------------- 1 | #!/use/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | require 'selenium-webdriver' 5 | require 'webp-ffi' 6 | 7 | options = Selenium::WebDriver::Options.firefox 8 | options.args << '-headless' 9 | driver = Selenium::WebDriver.for :firefox, options: options 10 | 11 | driver.get('https://fcitx5-android.github.io/theme-designer/') 12 | 13 | preview_div = driver.find_element(css: 'div[class="input-view"]') 14 | driver.execute_script('arguments[0].style.zoom = "4";', preview_div) 15 | border_checkbox = driver.find_element(css: 'input[id="border"][type="checkbox"]') 16 | border_checkbox.click unless border_checkbox.selected? 17 | import_input = driver.find_element(css: 'input[type="file"]') 18 | 19 | temp_file = Tempfile.new(%w[preview .png]) 20 | ARGV.each do |theme_path| 21 | abs_path = File.expand_path(theme_path) 22 | dir, _ = File.split(abs_path) 23 | import_input.send_keys(abs_path) 24 | preview_div.save_screenshot(temp_file.path) 25 | preview_path = "#{abs_path.delete_suffix('.zip')}.webp" 26 | WebP.encode(temp_file.path, preview_path) 27 | File.open("#{dir}/README.md", 'w') do |readme| 28 | readme.puts <<~README 29 | ![preview](#{File.basename(preview_path)}) 30 | README 31 | end 32 | end 33 | temp_file.close 34 | temp_file.unlink 35 | 36 | driver.quit 37 | -------------------------------------------------------------------------------- /themes/Frappé/Blue/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-blue.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Blue/catppuccin-frappe-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Blue/catppuccin-frappe-blue.webp -------------------------------------------------------------------------------- /themes/Frappé/Blue/catppuccin-frappe-blue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Blue/catppuccin-frappe-blue.zip -------------------------------------------------------------------------------- /themes/Frappé/Flamingo/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-flamingo.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Flamingo/catppuccin-frappe-flamingo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Flamingo/catppuccin-frappe-flamingo.webp -------------------------------------------------------------------------------- /themes/Frappé/Flamingo/catppuccin-frappe-flamingo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Flamingo/catppuccin-frappe-flamingo.zip -------------------------------------------------------------------------------- /themes/Frappé/Green/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-green.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Green/catppuccin-frappe-green.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Green/catppuccin-frappe-green.webp -------------------------------------------------------------------------------- /themes/Frappé/Green/catppuccin-frappe-green.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Green/catppuccin-frappe-green.zip -------------------------------------------------------------------------------- /themes/Frappé/Lavender/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-lavender.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Lavender/catppuccin-frappe-lavender.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Lavender/catppuccin-frappe-lavender.webp -------------------------------------------------------------------------------- /themes/Frappé/Lavender/catppuccin-frappe-lavender.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Lavender/catppuccin-frappe-lavender.zip -------------------------------------------------------------------------------- /themes/Frappé/Maroon/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-maroon.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Maroon/catppuccin-frappe-maroon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Maroon/catppuccin-frappe-maroon.webp -------------------------------------------------------------------------------- /themes/Frappé/Maroon/catppuccin-frappe-maroon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Maroon/catppuccin-frappe-maroon.zip -------------------------------------------------------------------------------- /themes/Frappé/Mauve/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-mauve.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Mauve/catppuccin-frappe-mauve.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Mauve/catppuccin-frappe-mauve.webp -------------------------------------------------------------------------------- /themes/Frappé/Mauve/catppuccin-frappe-mauve.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Mauve/catppuccin-frappe-mauve.zip -------------------------------------------------------------------------------- /themes/Frappé/Peach/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-peach.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Peach/catppuccin-frappe-peach.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Peach/catppuccin-frappe-peach.webp -------------------------------------------------------------------------------- /themes/Frappé/Peach/catppuccin-frappe-peach.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Peach/catppuccin-frappe-peach.zip -------------------------------------------------------------------------------- /themes/Frappé/Pink/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-pink.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Pink/catppuccin-frappe-pink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Pink/catppuccin-frappe-pink.webp -------------------------------------------------------------------------------- /themes/Frappé/Pink/catppuccin-frappe-pink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Pink/catppuccin-frappe-pink.zip -------------------------------------------------------------------------------- /themes/Frappé/Red/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-red.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Red/catppuccin-frappe-red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Red/catppuccin-frappe-red.webp -------------------------------------------------------------------------------- /themes/Frappé/Red/catppuccin-frappe-red.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Red/catppuccin-frappe-red.zip -------------------------------------------------------------------------------- /themes/Frappé/Rosewater/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-rosewater.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Rosewater/catppuccin-frappe-rosewater.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Rosewater/catppuccin-frappe-rosewater.webp -------------------------------------------------------------------------------- /themes/Frappé/Rosewater/catppuccin-frappe-rosewater.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Rosewater/catppuccin-frappe-rosewater.zip -------------------------------------------------------------------------------- /themes/Frappé/Sapphire/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-sapphire.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Sapphire/catppuccin-frappe-sapphire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Sapphire/catppuccin-frappe-sapphire.webp -------------------------------------------------------------------------------- /themes/Frappé/Sapphire/catppuccin-frappe-sapphire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Sapphire/catppuccin-frappe-sapphire.zip -------------------------------------------------------------------------------- /themes/Frappé/Sky/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-sky.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Sky/catppuccin-frappe-sky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Sky/catppuccin-frappe-sky.webp -------------------------------------------------------------------------------- /themes/Frappé/Sky/catppuccin-frappe-sky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Sky/catppuccin-frappe-sky.zip -------------------------------------------------------------------------------- /themes/Frappé/Teal/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-teal.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Teal/catppuccin-frappe-teal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Teal/catppuccin-frappe-teal.webp -------------------------------------------------------------------------------- /themes/Frappé/Teal/catppuccin-frappe-teal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Teal/catppuccin-frappe-teal.zip -------------------------------------------------------------------------------- /themes/Frappé/Yellow/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-frappe-yellow.webp) 2 | -------------------------------------------------------------------------------- /themes/Frappé/Yellow/catppuccin-frappe-yellow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Yellow/catppuccin-frappe-yellow.webp -------------------------------------------------------------------------------- /themes/Frappé/Yellow/catppuccin-frappe-yellow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Frappé/Yellow/catppuccin-frappe-yellow.zip -------------------------------------------------------------------------------- /themes/Latte/Blue/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-blue.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Blue/catppuccin-latte-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Blue/catppuccin-latte-blue.webp -------------------------------------------------------------------------------- /themes/Latte/Blue/catppuccin-latte-blue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Blue/catppuccin-latte-blue.zip -------------------------------------------------------------------------------- /themes/Latte/Flamingo/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-flamingo.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Flamingo/catppuccin-latte-flamingo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Flamingo/catppuccin-latte-flamingo.webp -------------------------------------------------------------------------------- /themes/Latte/Flamingo/catppuccin-latte-flamingo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Flamingo/catppuccin-latte-flamingo.zip -------------------------------------------------------------------------------- /themes/Latte/Green/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-green.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Green/catppuccin-latte-green.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Green/catppuccin-latte-green.webp -------------------------------------------------------------------------------- /themes/Latte/Green/catppuccin-latte-green.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Green/catppuccin-latte-green.zip -------------------------------------------------------------------------------- /themes/Latte/Lavender/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-lavender.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Lavender/catppuccin-latte-lavender.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Lavender/catppuccin-latte-lavender.webp -------------------------------------------------------------------------------- /themes/Latte/Lavender/catppuccin-latte-lavender.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Lavender/catppuccin-latte-lavender.zip -------------------------------------------------------------------------------- /themes/Latte/Maroon/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-maroon.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Maroon/catppuccin-latte-maroon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Maroon/catppuccin-latte-maroon.webp -------------------------------------------------------------------------------- /themes/Latte/Maroon/catppuccin-latte-maroon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Maroon/catppuccin-latte-maroon.zip -------------------------------------------------------------------------------- /themes/Latte/Mauve/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-mauve.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Mauve/catppuccin-latte-mauve.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Mauve/catppuccin-latte-mauve.webp -------------------------------------------------------------------------------- /themes/Latte/Mauve/catppuccin-latte-mauve.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Mauve/catppuccin-latte-mauve.zip -------------------------------------------------------------------------------- /themes/Latte/Peach/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-peach.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Peach/catppuccin-latte-peach.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Peach/catppuccin-latte-peach.webp -------------------------------------------------------------------------------- /themes/Latte/Peach/catppuccin-latte-peach.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Peach/catppuccin-latte-peach.zip -------------------------------------------------------------------------------- /themes/Latte/Pink/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-pink.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Pink/catppuccin-latte-pink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Pink/catppuccin-latte-pink.webp -------------------------------------------------------------------------------- /themes/Latte/Pink/catppuccin-latte-pink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Pink/catppuccin-latte-pink.zip -------------------------------------------------------------------------------- /themes/Latte/Red/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-red.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Red/catppuccin-latte-red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Red/catppuccin-latte-red.webp -------------------------------------------------------------------------------- /themes/Latte/Red/catppuccin-latte-red.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Red/catppuccin-latte-red.zip -------------------------------------------------------------------------------- /themes/Latte/Rosewater/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-rosewater.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Rosewater/catppuccin-latte-rosewater.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Rosewater/catppuccin-latte-rosewater.webp -------------------------------------------------------------------------------- /themes/Latte/Rosewater/catppuccin-latte-rosewater.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Rosewater/catppuccin-latte-rosewater.zip -------------------------------------------------------------------------------- /themes/Latte/Sapphire/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-sapphire.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Sapphire/catppuccin-latte-sapphire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Sapphire/catppuccin-latte-sapphire.webp -------------------------------------------------------------------------------- /themes/Latte/Sapphire/catppuccin-latte-sapphire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Sapphire/catppuccin-latte-sapphire.zip -------------------------------------------------------------------------------- /themes/Latte/Sky/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-sky.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Sky/catppuccin-latte-sky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Sky/catppuccin-latte-sky.webp -------------------------------------------------------------------------------- /themes/Latte/Sky/catppuccin-latte-sky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Sky/catppuccin-latte-sky.zip -------------------------------------------------------------------------------- /themes/Latte/Teal/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-teal.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Teal/catppuccin-latte-teal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Teal/catppuccin-latte-teal.webp -------------------------------------------------------------------------------- /themes/Latte/Teal/catppuccin-latte-teal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Teal/catppuccin-latte-teal.zip -------------------------------------------------------------------------------- /themes/Latte/Yellow/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-latte-yellow.webp) 2 | -------------------------------------------------------------------------------- /themes/Latte/Yellow/catppuccin-latte-yellow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Yellow/catppuccin-latte-yellow.webp -------------------------------------------------------------------------------- /themes/Latte/Yellow/catppuccin-latte-yellow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Latte/Yellow/catppuccin-latte-yellow.zip -------------------------------------------------------------------------------- /themes/Macchiato/Blue/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-blue.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Blue/catppuccin-macchiato-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Blue/catppuccin-macchiato-blue.webp -------------------------------------------------------------------------------- /themes/Macchiato/Blue/catppuccin-macchiato-blue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Blue/catppuccin-macchiato-blue.zip -------------------------------------------------------------------------------- /themes/Macchiato/Flamingo/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-flamingo.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Flamingo/catppuccin-macchiato-flamingo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Flamingo/catppuccin-macchiato-flamingo.webp -------------------------------------------------------------------------------- /themes/Macchiato/Flamingo/catppuccin-macchiato-flamingo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Flamingo/catppuccin-macchiato-flamingo.zip -------------------------------------------------------------------------------- /themes/Macchiato/Green/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-green.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Green/catppuccin-macchiato-green.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Green/catppuccin-macchiato-green.webp -------------------------------------------------------------------------------- /themes/Macchiato/Green/catppuccin-macchiato-green.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Green/catppuccin-macchiato-green.zip -------------------------------------------------------------------------------- /themes/Macchiato/Lavender/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-lavender.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Lavender/catppuccin-macchiato-lavender.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Lavender/catppuccin-macchiato-lavender.webp -------------------------------------------------------------------------------- /themes/Macchiato/Lavender/catppuccin-macchiato-lavender.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Lavender/catppuccin-macchiato-lavender.zip -------------------------------------------------------------------------------- /themes/Macchiato/Maroon/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-maroon.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Maroon/catppuccin-macchiato-maroon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Maroon/catppuccin-macchiato-maroon.webp -------------------------------------------------------------------------------- /themes/Macchiato/Maroon/catppuccin-macchiato-maroon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Maroon/catppuccin-macchiato-maroon.zip -------------------------------------------------------------------------------- /themes/Macchiato/Mauve/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-mauve.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Mauve/catppuccin-macchiato-mauve.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Mauve/catppuccin-macchiato-mauve.webp -------------------------------------------------------------------------------- /themes/Macchiato/Mauve/catppuccin-macchiato-mauve.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Mauve/catppuccin-macchiato-mauve.zip -------------------------------------------------------------------------------- /themes/Macchiato/Peach/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-peach.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Peach/catppuccin-macchiato-peach.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Peach/catppuccin-macchiato-peach.webp -------------------------------------------------------------------------------- /themes/Macchiato/Peach/catppuccin-macchiato-peach.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Peach/catppuccin-macchiato-peach.zip -------------------------------------------------------------------------------- /themes/Macchiato/Pink/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-pink.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Pink/catppuccin-macchiato-pink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Pink/catppuccin-macchiato-pink.webp -------------------------------------------------------------------------------- /themes/Macchiato/Pink/catppuccin-macchiato-pink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Pink/catppuccin-macchiato-pink.zip -------------------------------------------------------------------------------- /themes/Macchiato/Red/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-red.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Red/catppuccin-macchiato-red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Red/catppuccin-macchiato-red.webp -------------------------------------------------------------------------------- /themes/Macchiato/Red/catppuccin-macchiato-red.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Red/catppuccin-macchiato-red.zip -------------------------------------------------------------------------------- /themes/Macchiato/Rosewater/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-rosewater.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Rosewater/catppuccin-macchiato-rosewater.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Rosewater/catppuccin-macchiato-rosewater.webp -------------------------------------------------------------------------------- /themes/Macchiato/Rosewater/catppuccin-macchiato-rosewater.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Rosewater/catppuccin-macchiato-rosewater.zip -------------------------------------------------------------------------------- /themes/Macchiato/Sapphire/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-sapphire.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Sapphire/catppuccin-macchiato-sapphire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Sapphire/catppuccin-macchiato-sapphire.webp -------------------------------------------------------------------------------- /themes/Macchiato/Sapphire/catppuccin-macchiato-sapphire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Sapphire/catppuccin-macchiato-sapphire.zip -------------------------------------------------------------------------------- /themes/Macchiato/Sky/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-sky.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Sky/catppuccin-macchiato-sky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Sky/catppuccin-macchiato-sky.webp -------------------------------------------------------------------------------- /themes/Macchiato/Sky/catppuccin-macchiato-sky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Sky/catppuccin-macchiato-sky.zip -------------------------------------------------------------------------------- /themes/Macchiato/Teal/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-teal.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Teal/catppuccin-macchiato-teal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Teal/catppuccin-macchiato-teal.webp -------------------------------------------------------------------------------- /themes/Macchiato/Teal/catppuccin-macchiato-teal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Teal/catppuccin-macchiato-teal.zip -------------------------------------------------------------------------------- /themes/Macchiato/Yellow/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-macchiato-yellow.webp) 2 | -------------------------------------------------------------------------------- /themes/Macchiato/Yellow/catppuccin-macchiato-yellow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Yellow/catppuccin-macchiato-yellow.webp -------------------------------------------------------------------------------- /themes/Macchiato/Yellow/catppuccin-macchiato-yellow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Macchiato/Yellow/catppuccin-macchiato-yellow.zip -------------------------------------------------------------------------------- /themes/Mocha/Blue/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-blue.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Blue/catppuccin-mocha-blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Blue/catppuccin-mocha-blue.webp -------------------------------------------------------------------------------- /themes/Mocha/Blue/catppuccin-mocha-blue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Blue/catppuccin-mocha-blue.zip -------------------------------------------------------------------------------- /themes/Mocha/Flamingo/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-flamingo.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Flamingo/catppuccin-mocha-flamingo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Flamingo/catppuccin-mocha-flamingo.webp -------------------------------------------------------------------------------- /themes/Mocha/Flamingo/catppuccin-mocha-flamingo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Flamingo/catppuccin-mocha-flamingo.zip -------------------------------------------------------------------------------- /themes/Mocha/Green/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-green.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Green/catppuccin-mocha-green.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Green/catppuccin-mocha-green.webp -------------------------------------------------------------------------------- /themes/Mocha/Green/catppuccin-mocha-green.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Green/catppuccin-mocha-green.zip -------------------------------------------------------------------------------- /themes/Mocha/Lavender/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-lavender.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Lavender/catppuccin-mocha-lavender.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Lavender/catppuccin-mocha-lavender.webp -------------------------------------------------------------------------------- /themes/Mocha/Lavender/catppuccin-mocha-lavender.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Lavender/catppuccin-mocha-lavender.zip -------------------------------------------------------------------------------- /themes/Mocha/Maroon/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-maroon.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Maroon/catppuccin-mocha-maroon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Maroon/catppuccin-mocha-maroon.webp -------------------------------------------------------------------------------- /themes/Mocha/Maroon/catppuccin-mocha-maroon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Maroon/catppuccin-mocha-maroon.zip -------------------------------------------------------------------------------- /themes/Mocha/Mauve/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-mauve.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Mauve/catppuccin-mocha-mauve.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Mauve/catppuccin-mocha-mauve.webp -------------------------------------------------------------------------------- /themes/Mocha/Mauve/catppuccin-mocha-mauve.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Mauve/catppuccin-mocha-mauve.zip -------------------------------------------------------------------------------- /themes/Mocha/Peach/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-peach.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Peach/catppuccin-mocha-peach.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Peach/catppuccin-mocha-peach.webp -------------------------------------------------------------------------------- /themes/Mocha/Peach/catppuccin-mocha-peach.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Peach/catppuccin-mocha-peach.zip -------------------------------------------------------------------------------- /themes/Mocha/Pink/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-pink.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Pink/catppuccin-mocha-pink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Pink/catppuccin-mocha-pink.webp -------------------------------------------------------------------------------- /themes/Mocha/Pink/catppuccin-mocha-pink.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Pink/catppuccin-mocha-pink.zip -------------------------------------------------------------------------------- /themes/Mocha/Red/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-red.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Red/catppuccin-mocha-red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Red/catppuccin-mocha-red.webp -------------------------------------------------------------------------------- /themes/Mocha/Red/catppuccin-mocha-red.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Red/catppuccin-mocha-red.zip -------------------------------------------------------------------------------- /themes/Mocha/Rosewater/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-rosewater.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Rosewater/catppuccin-mocha-rosewater.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Rosewater/catppuccin-mocha-rosewater.webp -------------------------------------------------------------------------------- /themes/Mocha/Rosewater/catppuccin-mocha-rosewater.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Rosewater/catppuccin-mocha-rosewater.zip -------------------------------------------------------------------------------- /themes/Mocha/Sapphire/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-sapphire.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Sapphire/catppuccin-mocha-sapphire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Sapphire/catppuccin-mocha-sapphire.webp -------------------------------------------------------------------------------- /themes/Mocha/Sapphire/catppuccin-mocha-sapphire.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Sapphire/catppuccin-mocha-sapphire.zip -------------------------------------------------------------------------------- /themes/Mocha/Sky/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-sky.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Sky/catppuccin-mocha-sky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Sky/catppuccin-mocha-sky.webp -------------------------------------------------------------------------------- /themes/Mocha/Sky/catppuccin-mocha-sky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Sky/catppuccin-mocha-sky.zip -------------------------------------------------------------------------------- /themes/Mocha/Teal/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-teal.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Teal/catppuccin-mocha-teal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Teal/catppuccin-mocha-teal.webp -------------------------------------------------------------------------------- /themes/Mocha/Teal/catppuccin-mocha-teal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Teal/catppuccin-mocha-teal.zip -------------------------------------------------------------------------------- /themes/Mocha/Yellow/README.md: -------------------------------------------------------------------------------- 1 | ![preview](catppuccin-mocha-yellow.webp) 2 | -------------------------------------------------------------------------------- /themes/Mocha/Yellow/catppuccin-mocha-yellow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Yellow/catppuccin-mocha-yellow.webp -------------------------------------------------------------------------------- /themes/Mocha/Yellow/catppuccin-mocha-yellow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XYenon/catppuccin-fcitx5-android/71dbe02419b6a8bc3873c09dbd8233ddbd9faf2d/themes/Mocha/Yellow/catppuccin-mocha-yellow.zip --------------------------------------------------------------------------------