├── .gitignore
├── LICENSE
├── README.en.md
├── README.jp.md
├── README.kr.md
├── README.md
├── autumn
├── arrow.png
├── panel.png
├── radio.png
└── theme.conf
├── green
├── arrow.png
├── panel.png
├── radio.png
└── theme.conf
├── images
├── 1606626556.png
├── 1606805676.png
├── 1606805712.png
├── 1606805738.png
├── 1607336476.png
├── 1607338718.png
├── README.md
├── mac-dark.png
├── mac-light.png
├── macOS Sonoma Dark.png
└── macOS Sonoma Light.png
├── install.sh
├── macOS-dark
├── highlight.svg
├── panel.svg
└── theme.conf
├── macOS-light
├── highlight.svg
├── panel.svg
└── theme.conf
├── spring
├── arrow.png
├── panel.png
├── radio.png
└── theme.conf
├── summer
├── arrow.png
├── panel.png
├── radio.png
└── theme.conf
├── transparent-green
├── arrow.png
├── panel.png
├── radio.png
└── theme.conf
└── winter
├── arrow.png
├── panel.png
├── radio.png
└── theme.conf
/.gitignore:
--------------------------------------------------------------------------------
1 | ._README.md
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 thep0y
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.en.md:
--------------------------------------------------------------------------------
1 |
[:cn:](./README.md) | [:jp:](./README.jp.md) | [:kr:](./README.kr.md)
2 |
3 | # Candlelight
4 |
5 | Custom skins for fcitx5, tested with fcitx5-rime.
6 |
7 | ## Overview
8 |
9 | ### Background Highlight Series
10 |
11 | - **Spring / 春日 Green**
12 | 
13 | - **Summer / Summer Red**
14 | 
15 | - **Autumn / Autumn Orange**
16 | 
17 | - **Winter / Winter Blue**
18 | 
19 |
20 | ### Candidate Highlight Series
21 |
22 | - **Green / Fluorescent Green**
23 | 
24 | - **Transparent Green / Transparent Fluorescent Green**
25 | 
26 |
27 | ### macOS Inspired Themes
28 |
29 | - **macOS Light**
30 | 
31 | - Original macOS Sonoma Light:
32 | 
33 | - **macOS Dark**
34 | 
35 | - Original macOS Sonoma Dark:
36 | 
37 |
38 | ## Usage
39 |
40 | 1. Clone the repository:
41 |
42 | ```bash
43 | git clone https://github.com/thep0y/fcitx5-themes.git
44 | ```
45 |
46 | 2. Copy the desired theme to the appropriate directory:
47 |
48 | ```bash
49 | cd fcitx5-themes
50 | cp -r ~/.local/share/fcitx5/themes
51 | ```
52 |
53 | 3. Configure the theme settings:
54 |
55 | ```bash
56 | vim ~/.config/fcitx5/conf/classicui.conf
57 | ```
58 |
59 | Add the following lines (adjust the font as needed):
60 |
61 | ```apacheconf
62 | Vertical Candidate List=False
63 | PerScreenDPI=True
64 | Font="Smartisan Compact CNS 13"
65 | Theme=
66 | ```
67 |
68 | 4. For single-line mode in fcitx5-rime, configure:
69 |
70 | ```bash
71 | vim ~/.config/fcitx5/conf/rime.conf
72 | ```
73 |
74 | Add:
75 |
76 | ```apacheconf
77 | PreeditInApplication=True
78 | ```
79 |
80 | 5. Restart fcitx5 to apply the changes.
81 |
82 | The available themes are:
83 |
84 | - **spring**
85 | - **summer**
86 | - **autumn**
87 | - **winter**
88 | - **green**
89 | - **transparent-green**
90 | - **macOS-light**
91 | - **macOS-dark**
92 |
93 | To switch between single and double line (pre-edit) modes, use the shortcut: `++P`.
94 |
95 | ---
96 |
97 | Explore more themes for macOS and Windows:
98 |
99 | - [Rime 98 Themes](https://github.com/thep0y/rime-98/tree/master/themes)
100 |
--------------------------------------------------------------------------------
/README.jp.md:
--------------------------------------------------------------------------------
1 |
[:cn:](./README.md) | [:kr:](./README.kr.md) | [:us:](./README.en.md)
2 |
3 | # Candlelight
4 |
5 | fcitx5用のカスタムスキン。fcitx5-rimeでテスト済み。
6 |
7 | ## 概要
8 |
9 | ### 背景ハイライトシリーズ
10 |
11 | - **Spring**
12 | 
13 | - **Summer**
14 | 
15 | - **Autumn**
16 | 
17 | - **Winter**
18 | 
19 |
20 | ### 候補ハイライトシリーズ
21 |
22 | - **Green**
23 | 
24 | - **Transparent Green**
25 | 
26 |
27 | ### macOSからインスピレーションを得たテーマ
28 |
29 | - **macOS Light**
30 | 
31 | - オリジナルmacOSソノマライト:
32 | 
33 | - **macOS Dark**
34 | 
35 | - オリジナルmacOSソノマダーク:
36 | 
37 |
38 | ## 使用方法
39 |
40 | 1. リポジトリをクローンします:
41 |
42 | ```bash
43 | git clone https://github.com/thep0y/fcitx5-themes.git
44 | ```
45 |
46 | 2. お好みのテーマを適切なディレクトリにコピーします:
47 |
48 | ```bash
49 | cd fcitx5-themes
50 | cp -r ~/.local/share/fcitx5/themes
51 | ```
52 |
53 | 3. テーマ設定を構成します:
54 |
55 | ```bash
56 | vim ~/.config/fcitx5/conf/classicui.conf
57 | ```
58 |
59 | 次の行を追加します(必要に応じてフォントを調整します):
60 |
61 | ```apacheconf
62 | Vertical Candidate List=False
63 | PerScreenDPI=True
64 | Font="Smartisan Compact CNS 13"
65 | Theme=
66 | ```
67 |
68 | 4. fcitx5-rimeでの1行モードのために設定します:
69 |
70 | ```bash
71 | vim ~/.config/fcitx5/conf/rime.conf
72 | ```
73 |
74 | 次の行を追加します:
75 |
76 | ```apacheconf
77 | PreeditInApplication=True
78 | ```
79 |
80 | 5. 変更を適用するためにfcitx5を再起動します。
81 |
82 | 利用可能なテーマは以下の通りです:
83 |
84 | - **spring**
85 | - **summer**
86 | - **autumn**
87 | - **winter**
88 | - **green**
89 | - **transparent-green**
90 | - **macOS-light**
91 | - **macOS-dark**
92 |
93 | 1行と2行(プリエディット)モードを切り替えるショートカットは、`++P`です。
94 |
95 | ---
96 |
97 | macOSとWindows向けのさらなるテーマを探してみてください:
98 |
99 | - [Rime 98 Themes](https://github.com/thep0y/rime-98/tree/master/themes)
100 |
--------------------------------------------------------------------------------
/README.kr.md:
--------------------------------------------------------------------------------
1 |
[:cn:](./README.md) | [:jp:](./README.jp.md) | [:us:](./README.en.md)
2 |
3 | # Candlelight
4 |
5 | fcitx5에 대한 커스텀 스킨으로, fcitx5-rime에서 테스트되었습니다.
6 |
7 | ## 개요
8 |
9 | ### 백그라운드 강조 시리즈
10 |
11 | - **Spring**
12 | 
13 | - **Summer**
14 | 
15 | - **Autumn**
16 | 
17 | - **Winter**
18 | 
19 |
20 | ### 후보 강조 시리즈
21 |
22 | - **Green**
23 | 
24 | - **Transparent Green**
25 | 
26 |
27 | ### macOS에서 영감을 얻은 테마들
28 |
29 | - **macOS Light**
30 | 
31 | - 원래 macOS 소노마 라이트:
32 | 
33 | - **macOS Dark**
34 | 
35 | - 원래 macOS 소노마 다크:
36 | 
37 |
38 | ## 사용법
39 |
40 | 1. 저장소를 클론합니다:
41 |
42 | ```bash
43 | git clone https://github.com/thep0y/fcitx5-themes.git
44 | ```
45 |
46 | 2. 원하는 테마를 적절한 디렉토리로 복사합니다:
47 |
48 | ```bash
49 | cd fcitx5-themes
50 | cp -r ~/.local/share/fcitx5/themes
51 | ```
52 |
53 | 3. 테마 설정을 구성합니다:
54 |
55 | ```bash
56 | vim ~/.config/fcitx5/conf/classicui.conf
57 | ```
58 |
59 | 다음 줄들을 추가합니다 (필요에 따라 폰트를 조정할 수 있습니다):
60 |
61 | ```apacheconf
62 | Vertical Candidate List=False
63 | PerScreenDPI=True
64 | Font="Smartisan Compact CNS 13"
65 | Theme=
66 | ```
67 |
68 | 4. fcitx5-rime에서 단일 줄 모드를 구성합니다:
69 |
70 | ```bash
71 | vim ~/.config/fcitx5/conf/rime.conf
72 | ```
73 |
74 | 다음을 추가합니다:
75 |
76 | ```apacheconf
77 | PreeditInApplication=True
78 | ```
79 |
80 | 5. 변경 사항을 적용하기 위해 fcitx5를 재시작합니다.
81 |
82 | 사용 가능한 테마는 다음과 같습니다:
83 |
84 | - **spring**
85 | - **summer**
86 | - **autumn**
87 | - **winter**
88 | - **green**
89 | - **transparent-green**
90 | - **macOS-light**
91 | - **macOS-dark**
92 |
93 | 단일과 이중 줄 (예비 입력) 모드 사이를 전환하려면 단축키 `++P`를 사용합니다.
94 |
95 | ---
96 |
97 | macOS와 Windows용 더 많은 테마를 탐색하세요:
98 |
99 | - [Rime 98 테마](https://github.com/thep0y/rime-98/tree/master/themes)
100 |
101 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
[:jp:](./README.jp.md) | [:kr:](./README.kr.md) | [:us:](./README.en.md)
2 |
3 | # fcitx5-themes
4 |
5 | 
6 |
7 | fcitx5的自定义皮肤,仅在fcitx5-rime测试过。
8 |
9 | ## 一、简介
10 |
11 | ### 1、背景高亮系列
12 |
13 | #### spring/春日绿
14 |
15 | 示例图:
16 |
17 | 
18 |
19 | #### summer/夏日红
20 |
21 | 示例图:
22 |
23 | 
24 |
25 | #### autumn/秋日橙
26 |
27 | 示例图:
28 |
29 | 
30 |
31 | #### winter/冬日蓝
32 |
33 | 示例图:
34 |
35 | 
36 |
37 | ### 2、候选字高亮系列
38 |
39 | #### green/荧光绿
40 |
41 | 示例图:
42 |
43 | 
44 |
45 | #### transparent-green/荧光绿透明版
46 |
47 | 示例图:
48 |
49 | 
50 |
51 | ### 3、仿 macOS
52 |
53 | #### macOS Light
54 |
55 | 示例图:
56 |
57 | 
58 |
59 | macOS Sonoma Light 原皮肤:
60 |
61 | 
62 |
63 | macOS Light 的皮肤与实际皮肤有一些细微不同,有兴趣的朋友可以提交PR微调。
64 |
65 | #### macOS Dark
66 |
67 | 示例图:
68 |
69 | 
70 |
71 | macOS Sonoma Dark 原皮肤:
72 |
73 | 
74 |
75 | ## 二、使用步骤
76 |
77 | 将整个项目clone到本地:
78 |
79 | ```bash
80 | git clone https://github.com/thep0y/fcitx5-themes.git
81 | ```
82 |
83 | 将想要使用的皮肤复制到该放的位置,以`spring`为例(下同):
84 |
85 | ```bash
86 | cd fcitx5-themes
87 | cp spring ~/.local/share/fcitx5/themes -r
88 | ```
89 |
90 | 修改皮肤配置文件(若没有配置文件则自动创建):
91 |
92 | ```bash
93 | vim ~/.config/fcitx5/conf/classicui.conf
94 | ```
95 |
96 | 将下面的参数复制进去(记得修改字体):
97 |
98 | ```apacheconf
99 | # 垂直候选列表
100 | Vertical Candidate List=False
101 |
102 | # 按屏幕 DPI 使用
103 | PerScreenDPI=True
104 |
105 | # Font (设置成你喜欢的字体)
106 | Font="Smartisan Compact CNS 13"
107 |
108 | # 主题(这里要改成你想要使用的主题名,主题名就在下面)
109 | Theme=spring
110 | ```
111 |
112 | 其中的主题名与各主题的文件夹名相同,即:
113 |
114 | - spring
115 | - summer
116 | - autumn
117 | - winter
118 | - green
119 | - transparent-green
120 | - macOS-light
121 | - macOS-dark
122 |
123 | 若想输入法变成单行模式,还得再修改一个配置文件。
124 | 以fcitx5-rime为例:
125 |
126 | ```bash
127 | vim ~/.config/fcitx5/conf/rime.conf
128 | ```
129 |
130 | 添加:
131 |
132 | ```apacheconf
133 | PreeditInApplication=True
134 | ```
135 |
136 | 保存后,重启输入法皮肤即可生效。
137 |
138 | 单双行(预编辑)模式的切换快捷键ctrl+alt+P,也就是说,不改上面的配置,也可以直接用这上快捷键进行切换。
139 |
140 | ---
141 |
142 | 别老盯着 fcitx5 的皮肤,也去看看 macOS 和 Windows 的皮肤吧:
143 |
144 | https://github.com/thep0y/rime-98/tree/master/themes
145 |
--------------------------------------------------------------------------------
/autumn/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/autumn/arrow.png
--------------------------------------------------------------------------------
/autumn/panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/autumn/panel.png
--------------------------------------------------------------------------------
/autumn/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/autumn/radio.png
--------------------------------------------------------------------------------
/autumn/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=autumn
3 | Version=0.1
4 | Author=thepoy
5 | Description=Fctix5 Autumn Theme
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 字体
10 | Font=Sans 13
11 | # 非选中候选字颜色
12 | NormalColor=#ffffff
13 | # 选中候选字颜色
14 | HighlightCandidateColor=#ffffff
15 | # 高亮前景颜色(输入字符颜色)
16 | HighlightColor=#ffffff
17 | # 输入字符背景颜色
18 | HighlightBackgroundColor=#00000000
19 | #
20 | Spacing=3
21 |
22 | [InputPanel/TextMargin]
23 | # 候选字对左边距
24 | Left=20
25 | # 候选字对右边距
26 | Right=20
27 | # 候选字向上边距
28 | Top=10
29 | # 候选字向下边距
30 | Bottom=10
31 |
32 | [InputPanel/Background]
33 | Image=panel.png
34 |
35 | [InputPanel/Background/Margin]
36 | Left=2
37 | Right=2
38 | Top=2
39 | Bottom=2
40 |
41 | [InputPanel/Highlight]
42 | Color=#CD661D
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=10
51 | # 高亮区域下边距
52 | Bottom=10
53 |
54 | [Menu/Background]
55 | Color=#ffffff
56 |
57 | [Menu/Background/Margin]
58 | Left=2
59 | Right=2
60 | Top=2
61 | Bottom=2
62 |
63 | [Menu/ContentMargin]
64 | Left=2
65 | Right=2
66 | Top=2
67 | Bottom=2
68 |
69 | [Menu/Highlight]
70 | Color=#CD661D
71 |
72 | [Menu/Highlight/Margin]
73 | Left=10
74 | Right=10
75 | Top=5
76 | Bottom=5
77 |
78 | [Menu/Separator]
79 | Color=#c0c0c0
80 |
81 | [Menu/CheckBox]
82 | Image=radio.png
83 |
84 | [Menu/SubMenu]
85 | Image=arrow.png
86 |
87 | [Menu/TextMargin]
88 | Left=5
89 | Right=5
90 | Top=5
91 | Bottom=5
92 |
--------------------------------------------------------------------------------
/green/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/green/arrow.png
--------------------------------------------------------------------------------
/green/panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/green/panel.png
--------------------------------------------------------------------------------
/green/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/green/radio.png
--------------------------------------------------------------------------------
/green/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=green
3 | Version=0.1
4 | Author=thepoy
5 | Description=Fctix5 Green Theme
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 字体
10 | Font=Sans 13
11 | # 非选中候选字颜色
12 | NormalColor=#ffffff
13 | # 选中候选字颜色
14 | HighlightCandidateColor=#54CE74
15 | # 高亮前景颜色(输入字符颜色)
16 | HighlightColor=#ffffff
17 | # 输入字符背景颜色
18 | HighlightBackgroundColor=#00000000
19 | #
20 | Spacing=3
21 |
22 | [InputPanel/TextMargin]
23 | # 候选字对左边距
24 | Left=20
25 | # 候选字对右边距
26 | Right=20
27 | # 候选字向上边距
28 | Top=10
29 | # 候选字向下边距
30 | Bottom=10
31 |
32 | [InputPanel/Background]
33 | Image=panel.png
34 |
35 | [InputPanel/Background/Margin]
36 | Left=2
37 | Right=2
38 | Top=2
39 | Bottom=2
40 |
41 | [InputPanel/Highlight]
42 | Color=#030303
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=10
51 | # 高亮区域下边距
52 | Bottom=10
53 |
54 | [Menu/Background]
55 | Color=#ffffff
56 |
57 | [Menu/Background/Margin]
58 | Left=2
59 | Right=2
60 | Top=2
61 | Bottom=2
62 |
63 | [Menu/ContentMargin]
64 | Left=2
65 | Right=2
66 | Top=2
67 | Bottom=2
68 |
69 | [Menu/Highlight]
70 | Color=#030303
71 |
72 | [Menu/Highlight/Margin]
73 | Left=10
74 | Right=10
75 | Top=5
76 | Bottom=5
77 |
78 | [Menu/Separator]
79 | Color=#c0c0c0
80 |
81 | [Menu/CheckBox]
82 | Image=radio.png
83 |
84 | [Menu/SubMenu]
85 | Image=arrow.png
86 |
87 | [Menu/TextMargin]
88 | Left=5
89 | Right=5
90 | Top=5
91 | Bottom=5
92 |
--------------------------------------------------------------------------------
/images/1606626556.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/1606626556.png
--------------------------------------------------------------------------------
/images/1606805676.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/1606805676.png
--------------------------------------------------------------------------------
/images/1606805712.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/1606805712.png
--------------------------------------------------------------------------------
/images/1606805738.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/1606805738.png
--------------------------------------------------------------------------------
/images/1607336476.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/1607336476.png
--------------------------------------------------------------------------------
/images/1607338718.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/1607338718.png
--------------------------------------------------------------------------------
/images/README.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/images/mac-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/mac-dark.png
--------------------------------------------------------------------------------
/images/mac-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/mac-light.png
--------------------------------------------------------------------------------
/images/macOS Sonoma Dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/macOS Sonoma Dark.png
--------------------------------------------------------------------------------
/images/macOS Sonoma Light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/images/macOS Sonoma Light.png
--------------------------------------------------------------------------------
/install.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | github_mirror="${GITHUB_MIRROR:-'https://ghproxy.com/'}"
4 |
5 | fcitx5_themes_dir='fcitx5-themes-main'
6 |
7 | target_dir=~/.local/share/fcitx5/themes
8 |
9 | download() {
10 | curl "${github_mirror}"https://github.com/thep0y/fcitx5-themes/archive/refs/heads/main.zip -o /tmp/fcitx5-themes.zip
11 |
12 | cd /tmp || exit
13 |
14 | if [ -d $fcitx5_themes_dir ]; then
15 | rm -rf $fcitx5_themes_dir
16 | fi
17 |
18 | unzip fcitx5-themes.zip
19 | cd fcitx5-themes-main || exit
20 | rm README.md
21 | }
22 |
23 | update() {
24 | cd /tmp/"$fcitx5_themes_dir" || exit
25 | for f in *; do
26 | rm -rf "$target_dir/$f"
27 | done
28 | }
29 |
30 | install() {
31 | cp -r /tmp/"$fcitx5_themes_dir"/* ~/.local/share/fcitx5/themes
32 | }
33 |
34 | themes=(spring summer autumn winter green transparent-green)
35 | choice() {
36 | echo "主题列表"
37 | re='^[1-6]$'
38 | for i in "${!themes[@]}";
39 | do
40 | idx=$((i + 1))
41 | echo " $idx: ${themes[i]}"
42 | done
43 |
44 | echo -e "\n"
45 |
46 | read -p "请输入你要使用的主题序号:" code
47 |
48 | if ! [[ $code =~ $re ]]; then
49 | echo "序号不存在"
50 | exit 1
51 | fi
52 |
53 | idx=$((code - 1))
54 | theme="${themes[idx]}"
55 | }
56 |
57 |
58 | theme='spring'
59 | choice
60 |
61 | font="思源黑体 13"
62 |
63 | config="# 垂直候选列表
64 | Vertical Candidate List=False
65 |
66 | # 按屏幕 DPI 使用
67 | PerScreenDPI=True
68 |
69 | # Font (设置成你喜欢的字体)
70 | Font=\"$font\"
71 |
72 | # 主题(这里要改成你想要使用的主题名,主题名就在下面)
73 | Theme=$theme"
74 |
75 | echo "$config"
76 |
--------------------------------------------------------------------------------
/macOS-dark/highlight.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/macOS-dark/panel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/macOS-dark/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=macOS-dark
3 | Version=0.1
4 | Author=thep0y
5 | Description="类 macOS 主题"
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 非选中候选字颜色
10 | NormalColor=#ffffff
11 | # 高亮候选字颜色
12 | HighlightCandidateColor=#ffffff
13 | # KWin 下启用模糊
14 | EnableBlur=True
15 | # 模糊遮罩
16 | BlurMask=
17 | # 竖排列表时使用所有横向空间高亮
18 | FullWidthHighlight=True
19 | # 高亮文字颜色
20 | HighlightColor=#dddddd
21 | # 高亮背景颜色
22 | HighlightBackgroundColor=#00000000
23 | # 页面按钮垂直对齐
24 | PageButtonAlignment=Bottom
25 |
26 | [InputPanel/Background]
27 | # 背景图片
28 | Image=panel.svg
29 |
30 | [InputPanel/Background/Margin]
31 | # 左侧边距
32 | Left=10
33 | # 右侧边距
34 | Right=10
35 | # 顶部边距
36 | Top=10
37 | # 底部边距
38 | Bottom=10
39 |
40 | [InputPanel/Highlight]
41 | # 背景图片
42 | Image=highlight.svg
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=8
51 | # 高亮区域下边距
52 | Bottom=8
53 |
54 | [InputPanel/TextMargin]
55 | # 候选字对左边距
56 | Left=20
57 | # 候选字对右边距
58 | Right=18
59 | # 候选字向上边距
60 | Top=8
61 | # 候选字向下边距
62 | Bottom=8
63 |
64 | [InputPanel/PrevPage]
65 | # 图片
66 | Image=
67 |
68 | [InputPanel/PrevPage/ClickMargin]
69 | # 左侧边距
70 | Left=0
71 | # 右侧边距
72 | Right=0
73 | # 顶部边距
74 | Top=0
75 | # 底部边距
76 | Bottom=0
77 |
78 | [InputPanel/NextPage]
79 | # 图片
80 | Image=
81 |
82 | [Menu]
83 | # 一般文字颜色
84 | NormalColor=#000000
85 | # 高亮候选词颜色
86 | HighlightCandidateColor=#ffffff
87 | # 间隔
88 | Spacing=0
89 |
90 | [Menu/Background]
91 | # 背景图片
92 | Image=
93 | # 颜色
94 | Color=#ffffff
95 | # 边框颜色
96 | BorderColor=#ffffff00
97 | # 边框宽度
98 | BorderWidth=0
99 | # 覆盖图片
100 | Overlay=
101 | # 覆盖图片位置
102 | Gravity="Top Left"
103 | # 覆盖图片 X 偏移
104 | OverlayOffsetX=0
105 | # 覆盖图片 Y 偏移
106 | OverlayOffsetY=0
107 | # 显示区域不足时隐藏覆盖图片
108 | HideOverlayIfOversize=False
109 |
110 | [Menu/Background/Margin]
111 | # 左侧边距
112 | Left=0
113 | # 右侧边距
114 | Right=0
115 | # 顶部边距
116 | Top=0
117 | # 底部边距
118 | Bottom=0
119 |
120 | [Menu/Background/OverlayClipMargin]
121 | # 左侧边距
122 | Left=0
123 | # 右侧边距
124 | Right=0
125 | # 顶部边距
126 | Top=0
127 | # 底部边距
128 | Bottom=0
129 |
130 | [Menu/Highlight]
131 | # 背景图片
132 | Image=
133 | # 颜色
134 | Color=#ffffff
135 | # 边框颜色
136 | BorderColor=#ffffff00
137 | # 边框宽度
138 | BorderWidth=0
139 | # 覆盖图片
140 | Overlay=
141 | # 覆盖图片位置
142 | Gravity="Top Left"
143 | # 覆盖图片 X 偏移
144 | OverlayOffsetX=0
145 | # 覆盖图片 Y 偏移
146 | OverlayOffsetY=0
147 | # 显示区域不足时隐藏覆盖图片
148 | HideOverlayIfOversize=False
149 |
150 | [Menu/Highlight/Margin]
151 | # 左侧边距
152 | Left=0
153 | # 右侧边距
154 | Right=0
155 | # 顶部边距
156 | Top=0
157 | # 底部边距
158 | Bottom=0
159 |
160 | [Menu/Highlight/OverlayClipMargin]
161 | # 左侧边距
162 | Left=0
163 | # 右侧边距
164 | Right=0
165 | # 顶部边距
166 | Top=0
167 | # 底部边距
168 | Bottom=0
169 |
170 | [Menu/Separator]
171 | # 背景图片
172 | Image=
173 | # 颜色
174 | Color=#ffffff
175 | # 边框颜色
176 | BorderColor=#ffffff00
177 | # 边框宽度
178 | BorderWidth=0
179 | # 覆盖图片
180 | Overlay=
181 | # 覆盖图片位置
182 | Gravity="Top Left"
183 | # 覆盖图片 X 偏移
184 | OverlayOffsetX=0
185 | # 覆盖图片 Y 偏移
186 | OverlayOffsetY=0
187 | # 显示区域不足时隐藏覆盖图片
188 | HideOverlayIfOversize=False
189 |
190 | [Menu/Separator/Margin]
191 | # 左侧边距
192 | Left=0
193 | # 右侧边距
194 | Right=0
195 | # 顶部边距
196 | Top=0
197 | # 底部边距
198 | Bottom=0
199 |
200 | [Menu/Separator/OverlayClipMargin]
201 | # 左侧边距
202 | Left=0
203 | # 右侧边距
204 | Right=0
205 | # 顶部边距
206 | Top=0
207 | # 底部边距
208 | Bottom=0
209 |
210 | [Menu/CheckBox]
211 | # 背景图片
212 | Image=
213 | # 颜色
214 | Color=#ffffff
215 | # 边框颜色
216 | BorderColor=#ffffff00
217 | # 边框宽度
218 | BorderWidth=0
219 | # 覆盖图片
220 | Overlay=
221 | # 覆盖图片位置
222 | Gravity="Top Left"
223 | # 覆盖图片 X 偏移
224 | OverlayOffsetX=0
225 | # 覆盖图片 Y 偏移
226 | OverlayOffsetY=0
227 | # 显示区域不足时隐藏覆盖图片
228 | HideOverlayIfOversize=False
229 |
230 | [Menu/CheckBox/Margin]
231 | # 左侧边距
232 | Left=0
233 | # 右侧边距
234 | Right=0
235 | # 顶部边距
236 | Top=0
237 | # 底部边距
238 | Bottom=0
239 |
240 | [Menu/CheckBox/OverlayClipMargin]
241 | # 左侧边距
242 | Left=0
243 | # 右侧边距
244 | Right=0
245 | # 顶部边距
246 | Top=0
247 | # 底部边距
248 | Bottom=0
249 |
250 | [Menu/SubMenu]
251 | # 背景图片
252 | Image=
253 | # 颜色
254 | Color=#ffffff
255 | # 边框颜色
256 | BorderColor=#ffffff00
257 | # 边框宽度
258 | BorderWidth=0
259 | # 覆盖图片
260 | Overlay=
261 | # 覆盖图片位置
262 | Gravity="Top Left"
263 | # 覆盖图片 X 偏移
264 | OverlayOffsetX=0
265 | # 覆盖图片 Y 偏移
266 | OverlayOffsetY=0
267 | # 显示区域不足时隐藏覆盖图片
268 | HideOverlayIfOversize=False
269 |
270 | [Menu/SubMenu/Margin]
271 | # 左侧边距
272 | Left=0
273 | # 右侧边距
274 | Right=0
275 | # 顶部边距
276 | Top=0
277 | # 底部边距
278 | Bottom=0
279 |
280 | [Menu/SubMenu/OverlayClipMargin]
281 | # 左侧边距
282 | Left=0
283 | # 右侧边距
284 | Right=0
285 | # 顶部边距
286 | Top=0
287 | # 底部边距
288 | Bottom=0
289 |
290 | [Menu/ContentMargin]
291 | # 左侧边距
292 | Left=0
293 | # 右侧边距
294 | Right=0
295 | # 顶部边距
296 | Top=0
297 | # 底部边距
298 | Bottom=0
299 |
300 | [Menu/TextMargin]
301 | # 左侧边距
302 | Left=0
303 | # 右侧边距
304 | Right=0
305 | # 顶部边距
306 | Top=0
307 | # 底部边距
308 | Bottom=0
309 |
310 |
--------------------------------------------------------------------------------
/macOS-light/highlight.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/macOS-light/panel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/macOS-light/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=macOS-light
3 | Version=0.1
4 | Author=thep0y
5 | Description="类 macOS 主题"
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 非选中候选字颜色
10 | NormalColor=#000000
11 | # 高亮候选字颜色
12 | HighlightCandidateColor=#ffffff
13 | # KWin 下启用模糊
14 | EnableBlur=True
15 | # 模糊遮罩
16 | BlurMask=
17 | # 竖排列表时使用所有横向空间高亮
18 | FullWidthHighlight=True
19 | # 输入字符颜色(仅在双行模式下生效)
20 | HighlightColor=#000000
21 | # 输入字符颜色背景颜色
22 | HighlightBackgroundColor=#00000000
23 | # 页面按钮垂直对齐
24 | PageButtonAlignment=Bottom
25 |
26 | [InputPanel/Background]
27 | # 背景图片
28 | Image=panel.svg
29 |
30 | [InputPanel/Background/Margin]
31 | # 左侧边距
32 | Left=10
33 | # 右侧边距
34 | Right=10
35 | # 顶部边距
36 | Top=10
37 | # 底部边距
38 | Bottom=10
39 |
40 | [InputPanel/Highlight]
41 | # 背景图片
42 | Image=highlight.svg
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=8
51 | # 高亮区域下边距
52 | Bottom=8
53 |
54 | [InputPanel/TextMargin]
55 | # 候选字对左边距
56 | Left=20
57 | # 候选字对右边距
58 | Right=18
59 | # 候选字向上边距
60 | Top=8
61 | # 候选字向下边距
62 | Bottom=8
63 |
64 | [InputPanel/PrevPage]
65 | # 图片
66 | Image=
67 |
68 | [InputPanel/PrevPage/ClickMargin]
69 | # 左侧边距
70 | Left=0
71 | # 右侧边距
72 | Right=0
73 | # 顶部边距
74 | Top=0
75 | # 底部边距
76 | Bottom=0
77 |
78 | [InputPanel/NextPage]
79 | # 图片
80 | Image=
81 |
82 | [Menu]
83 | # 一般文字颜色
84 | NormalColor=#000000
85 | # 高亮候选词颜色
86 | HighlightCandidateColor=#ffffff
87 | # 间隔
88 | Spacing=0
89 |
90 | [Menu/Background]
91 | # 背景图片
92 | Image=
93 | # 颜色
94 | Color=#ffffff
95 | # 边框颜色
96 | BorderColor=#ffffff00
97 | # 边框宽度
98 | BorderWidth=0
99 | # 覆盖图片
100 | Overlay=
101 | # 覆盖图片位置
102 | Gravity="Top Left"
103 | # 覆盖图片 X 偏移
104 | OverlayOffsetX=0
105 | # 覆盖图片 Y 偏移
106 | OverlayOffsetY=0
107 | # 显示区域不足时隐藏覆盖图片
108 | HideOverlayIfOversize=False
109 |
110 | [Menu/Background/Margin]
111 | # 左侧边距
112 | Left=0
113 | # 右侧边距
114 | Right=0
115 | # 顶部边距
116 | Top=0
117 | # 底部边距
118 | Bottom=0
119 |
120 | [Menu/Background/OverlayClipMargin]
121 | # 左侧边距
122 | Left=0
123 | # 右侧边距
124 | Right=0
125 | # 顶部边距
126 | Top=0
127 | # 底部边距
128 | Bottom=0
129 |
130 | [Menu/Highlight]
131 | # 背景图片
132 | Image=
133 | # 颜色
134 | Color=#ffffff
135 | # 边框颜色
136 | BorderColor=#ffffff00
137 | # 边框宽度
138 | BorderWidth=0
139 | # 覆盖图片
140 | Overlay=
141 | # 覆盖图片位置
142 | Gravity="Top Left"
143 | # 覆盖图片 X 偏移
144 | OverlayOffsetX=0
145 | # 覆盖图片 Y 偏移
146 | OverlayOffsetY=0
147 | # 显示区域不足时隐藏覆盖图片
148 | HideOverlayIfOversize=False
149 |
150 | [Menu/Highlight/Margin]
151 | # 左侧边距
152 | Left=0
153 | # 右侧边距
154 | Right=0
155 | # 顶部边距
156 | Top=0
157 | # 底部边距
158 | Bottom=0
159 |
160 | [Menu/Highlight/OverlayClipMargin]
161 | # 左侧边距
162 | Left=0
163 | # 右侧边距
164 | Right=0
165 | # 顶部边距
166 | Top=0
167 | # 底部边距
168 | Bottom=0
169 |
170 | [Menu/Separator]
171 | # 背景图片
172 | Image=
173 | # 颜色
174 | Color=#ffffff
175 | # 边框颜色
176 | BorderColor=#ffffff00
177 | # 边框宽度
178 | BorderWidth=0
179 | # 覆盖图片
180 | Overlay=
181 | # 覆盖图片位置
182 | Gravity="Top Left"
183 | # 覆盖图片 X 偏移
184 | OverlayOffsetX=0
185 | # 覆盖图片 Y 偏移
186 | OverlayOffsetY=0
187 | # 显示区域不足时隐藏覆盖图片
188 | HideOverlayIfOversize=False
189 |
190 | [Menu/Separator/Margin]
191 | # 左侧边距
192 | Left=0
193 | # 右侧边距
194 | Right=0
195 | # 顶部边距
196 | Top=0
197 | # 底部边距
198 | Bottom=0
199 |
200 | [Menu/Separator/OverlayClipMargin]
201 | # 左侧边距
202 | Left=0
203 | # 右侧边距
204 | Right=0
205 | # 顶部边距
206 | Top=0
207 | # 底部边距
208 | Bottom=0
209 |
210 | [Menu/CheckBox]
211 | # 背景图片
212 | Image=
213 | # 颜色
214 | Color=#ffffff
215 | # 边框颜色
216 | BorderColor=#ffffff00
217 | # 边框宽度
218 | BorderWidth=0
219 | # 覆盖图片
220 | Overlay=
221 | # 覆盖图片位置
222 | Gravity="Top Left"
223 | # 覆盖图片 X 偏移
224 | OverlayOffsetX=0
225 | # 覆盖图片 Y 偏移
226 | OverlayOffsetY=0
227 | # 显示区域不足时隐藏覆盖图片
228 | HideOverlayIfOversize=False
229 |
230 | [Menu/CheckBox/Margin]
231 | # 左侧边距
232 | Left=0
233 | # 右侧边距
234 | Right=0
235 | # 顶部边距
236 | Top=0
237 | # 底部边距
238 | Bottom=0
239 |
240 | [Menu/CheckBox/OverlayClipMargin]
241 | # 左侧边距
242 | Left=0
243 | # 右侧边距
244 | Right=0
245 | # 顶部边距
246 | Top=0
247 | # 底部边距
248 | Bottom=0
249 |
250 | [Menu/SubMenu]
251 | # 背景图片
252 | Image=
253 | # 颜色
254 | Color=#ffffff
255 | # 边框颜色
256 | BorderColor=#ffffff00
257 | # 边框宽度
258 | BorderWidth=0
259 | # 覆盖图片
260 | Overlay=
261 | # 覆盖图片位置
262 | Gravity="Top Left"
263 | # 覆盖图片 X 偏移
264 | OverlayOffsetX=0
265 | # 覆盖图片 Y 偏移
266 | OverlayOffsetY=0
267 | # 显示区域不足时隐藏覆盖图片
268 | HideOverlayIfOversize=False
269 |
270 | [Menu/SubMenu/Margin]
271 | # 左侧边距
272 | Left=0
273 | # 右侧边距
274 | Right=0
275 | # 顶部边距
276 | Top=0
277 | # 底部边距
278 | Bottom=0
279 |
280 | [Menu/SubMenu/OverlayClipMargin]
281 | # 左侧边距
282 | Left=0
283 | # 右侧边距
284 | Right=0
285 | # 顶部边距
286 | Top=0
287 | # 底部边距
288 | Bottom=0
289 |
290 | [Menu/ContentMargin]
291 | # 左侧边距
292 | Left=0
293 | # 右侧边距
294 | Right=0
295 | # 顶部边距
296 | Top=0
297 | # 底部边距
298 | Bottom=0
299 |
300 | [Menu/TextMargin]
301 | # 左侧边距
302 | Left=0
303 | # 右侧边距
304 | Right=0
305 | # 顶部边距
306 | Top=0
307 | # 底部边距
308 | Bottom=0
309 |
310 |
--------------------------------------------------------------------------------
/spring/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/spring/arrow.png
--------------------------------------------------------------------------------
/spring/panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/spring/panel.png
--------------------------------------------------------------------------------
/spring/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/spring/radio.png
--------------------------------------------------------------------------------
/spring/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=spring
3 | Version=0.1
4 | Author=thepoy
5 | Description=Fctix5 Spring Theme
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 字体
10 | Font=Sans 13
11 | # 非选中候选字颜色
12 | NormalColor=#ffffff
13 | # 选中候选字颜色
14 | HighlightCandidateColor=#ffffff
15 | # 高亮前景颜色(输入字符颜色)
16 | HighlightColor=#ffffff
17 | # 输入字符背景颜色
18 | HighlightBackgroundColor=#00000000
19 | #
20 | Spacing=3
21 |
22 | [InputPanel/TextMargin]
23 | # 候选字对左边距
24 | Left=20
25 | # 候选字对右边距
26 | Right=20
27 | # 候选字向上边距
28 | Top=10
29 | # 候选字向下边距
30 | Bottom=10
31 |
32 | [InputPanel/Background]
33 | Image=panel.png
34 |
35 | [InputPanel/Background/Margin]
36 | Left=2
37 | Right=2
38 | Top=2
39 | Bottom=2
40 |
41 | [InputPanel/Highlight]
42 | Color=#407434
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=10
51 | # 高亮区域下边距
52 | Bottom=10
53 |
54 | [Menu/Background]
55 | Color=#ffffff
56 |
57 | [Menu/Background/Margin]
58 | Left=2
59 | Right=2
60 | Top=2
61 | Bottom=2
62 |
63 | [Menu/ContentMargin]
64 | Left=2
65 | Right=2
66 | Top=2
67 | Bottom=2
68 |
69 | [Menu/Highlight]
70 | Color=#407434
71 |
72 | [Menu/Highlight/Margin]
73 | Left=10
74 | Right=10
75 | Top=5
76 | Bottom=5
77 |
78 | [Menu/Separator]
79 | Color=#c0c0c0
80 |
81 | [Menu/CheckBox]
82 | Image=radio.png
83 |
84 | [Menu/SubMenu]
85 | Image=arrow.png
86 |
87 | [Menu/TextMargin]
88 | Left=5
89 | Right=5
90 | Top=5
91 | Bottom=5
92 |
--------------------------------------------------------------------------------
/summer/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/summer/arrow.png
--------------------------------------------------------------------------------
/summer/panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/summer/panel.png
--------------------------------------------------------------------------------
/summer/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/summer/radio.png
--------------------------------------------------------------------------------
/summer/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=summer
3 | Version=0.1
4 | Author=thepoy
5 | Description=Fctix5 Summer Theme
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 字体
10 | Font=Sans 13
11 | # 非选中候选字颜色
12 | NormalColor=#ffffff
13 | # 选中候选字颜色
14 | HighlightCandidateColor=#ffffff
15 | # 高亮前景颜色(输入字符颜色)
16 | HighlightColor=#ffffff
17 | # 输入字符背景颜色
18 | HighlightBackgroundColor=#00000000
19 | #
20 | Spacing=3
21 |
22 | [InputPanel/TextMargin]
23 | # 候选字对左边距
24 | Left=20
25 | # 候选字对右边距
26 | Right=20
27 | # 候选字向上边距
28 | Top=10
29 | # 候选字向下边距
30 | Bottom=10
31 |
32 | [InputPanel/Background]
33 | Image=panel.png
34 |
35 | [InputPanel/Background/Margin]
36 | Left=2
37 | Right=2
38 | Top=2
39 | Bottom=2
40 |
41 | [InputPanel/Highlight]
42 | Color=#D63447
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=10
51 | # 高亮区域下边距
52 | Bottom=10
53 |
54 | [Menu/Background]
55 | Color=#ffffff
56 |
57 | [Menu/Background/Margin]
58 | Left=2
59 | Right=2
60 | Top=2
61 | Bottom=2
62 |
63 | [Menu/ContentMargin]
64 | Left=2
65 | Right=2
66 | Top=2
67 | Bottom=2
68 |
69 | [Menu/Highlight]
70 | Color=#D63447
71 |
72 | [Menu/Highlight/Margin]
73 | Left=10
74 | Right=10
75 | Top=5
76 | Bottom=5
77 |
78 | [Menu/Separator]
79 | Color=#c0c0c0
80 |
81 | [Menu/CheckBox]
82 | Image=radio.png
83 |
84 | [Menu/SubMenu]
85 | Image=arrow.png
86 |
87 | [Menu/TextMargin]
88 | Left=5
89 | Right=5
90 | Top=5
91 | Bottom=5
92 |
--------------------------------------------------------------------------------
/transparent-green/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/transparent-green/arrow.png
--------------------------------------------------------------------------------
/transparent-green/panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/transparent-green/panel.png
--------------------------------------------------------------------------------
/transparent-green/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/transparent-green/radio.png
--------------------------------------------------------------------------------
/transparent-green/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=transparent-green
3 | Version=0.1
4 | Author=thepoy
5 | Description=Fctix5 Transparent Green Theme
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 字体
10 | Font=Sans 13
11 | # 非选中候选字颜色
12 | NormalColor=#ffffff
13 | # 选中候选字颜色
14 | HighlightCandidateColor=#80FF00
15 | # 高亮前景颜色(输入字符颜色)
16 | HighlightColor=#ffffff
17 | # 输入字符背景颜色
18 | HighlightBackgroundColor=#00000000
19 | #
20 | Spacing=3
21 |
22 | [InputPanel/TextMargin]
23 | # 候选字对左边距
24 | Left=20
25 | # 候选字对右边距
26 | Right=20
27 | # 候选字向上边距
28 | Top=10
29 | # 候选字向下边距
30 | Bottom=10
31 |
32 | [InputPanel/Background]
33 | Image=panel.png
34 |
35 | [InputPanel/Background/Margin]
36 | Left=2
37 | Right=2
38 | Top=2
39 | Bottom=2
40 |
41 | [InputPanel/Highlight]
42 | Color=#00030303
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=10
51 | # 高亮区域下边距
52 | Bottom=10
53 |
54 | [Menu/Background]
55 | Color=#ffffff
56 |
57 | [Menu/Background/Margin]
58 | Left=2
59 | Right=2
60 | Top=2
61 | Bottom=2
62 |
63 | [Menu/ContentMargin]
64 | Left=2
65 | Right=2
66 | Top=2
67 | Bottom=2
68 |
69 | [Menu/Highlight]
70 | Color=#00030303
71 |
72 | [Menu/Highlight/Margin]
73 | Left=10
74 | Right=10
75 | Top=5
76 | Bottom=5
77 |
78 | [Menu/Separator]
79 | Color=#c0c0c0
80 |
81 | [Menu/CheckBox]
82 | Image=radio.png
83 |
84 | [Menu/SubMenu]
85 | Image=arrow.png
86 |
87 | [Menu/TextMargin]
88 | Left=5
89 | Right=5
90 | Top=5
91 | Bottom=5
92 |
--------------------------------------------------------------------------------
/winter/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/winter/arrow.png
--------------------------------------------------------------------------------
/winter/panel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/winter/panel.png
--------------------------------------------------------------------------------
/winter/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thep0y/fcitx5-themes-candlelight/d4146d3d3f7a276a8daa2847c3e5c08de20485da/winter/radio.png
--------------------------------------------------------------------------------
/winter/theme.conf:
--------------------------------------------------------------------------------
1 | [Metadata]
2 | Name=winter
3 | Version=0.1
4 | Author=thepoy
5 | Description=Fctix5 Winter Theme
6 | ScaleWithDPI=True
7 |
8 | [InputPanel]
9 | # 字体
10 | Font=Sans 13
11 | # 非选中候选字颜色
12 | NormalColor=#ffffff
13 | # 选中候选字颜色
14 | HighlightCandidateColor=#ffffff
15 | # 高亮前景颜色(输入字符颜色)
16 | HighlightColor=#ffffff
17 | # 输入字符背景颜色
18 | HighlightBackgroundColor=#00000000
19 | #
20 | Spacing=3
21 |
22 | [InputPanel/TextMargin]
23 | # 候选字对左边距
24 | Left=20
25 | # 候选字对右边距
26 | Right=20
27 | # 候选字向上边距
28 | Top=10
29 | # 候选字向下边距
30 | Bottom=10
31 |
32 | [InputPanel/Background]
33 | Image=panel.png
34 |
35 | [InputPanel/Background/Margin]
36 | Left=2
37 | Right=2
38 | Top=2
39 | Bottom=2
40 |
41 | [InputPanel/Highlight]
42 | Color=#1D66CD
43 |
44 | [InputPanel/Highlight/Margin]
45 | # 高亮区域左边距
46 | Left=20
47 | # 高亮区域右边距
48 | Right=20
49 | # 高亮区域上边距
50 | Top=10
51 | # 高亮区域下边距
52 | Bottom=10
53 |
54 | [Menu/Background]
55 | Color=#ffffff
56 |
57 | [Menu/Background/Margin]
58 | Left=2
59 | Right=2
60 | Top=2
61 | Bottom=2
62 |
63 | [Menu/ContentMargin]
64 | Left=2
65 | Right=2
66 | Top=2
67 | Bottom=2
68 |
69 | [Menu/Highlight]
70 | Color=#1D66CD
71 |
72 | [Menu/Highlight/Margin]
73 | Left=10
74 | Right=10
75 | Top=5
76 | Bottom=5
77 |
78 | [Menu/Separator]
79 | Color=#c0c0c0
80 |
81 | [Menu/CheckBox]
82 | Image=radio.png
83 |
84 | [Menu/SubMenu]
85 | Image=arrow.png
86 |
87 | [Menu/TextMargin]
88 | Left=5
89 | Right=5
90 | Top=5
91 | Bottom=5
92 |
--------------------------------------------------------------------------------