forked from hugh7007/xmjd6-rere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
weasel.yaml
1427 lines (1334 loc) · 48.6 KB
/
weasel.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Weasel settings
# encoding: utf-8
config_version: "0.23"
app_options:
WindowsTerminal.exe: {ascii_mode: true}
cmd.exe: {ascii_mode: true}
conhost.exe: {ascii_mode: true}
excel.exe: {ascii_mode: false}
msedge.exe: {ascii_mode: false}
powershell.exe: {ascii_mode: true}
pwsh.exe: {ascii_mode: true}
qq.exe: {ascii_mode: false}
telegram.exe: {ascii_mode: false}
wechat.exe: {ascii_mode: false}
DingTalk.exe: {ascii_mode: false}
firefox.exe: {inline_preedit: true}
ascii_composer:
good_old_caps_lock: false
switch_key: {Caps_Lock: inline_ascii, Control_L: commit_code, Control_R: commit_code, Eisu_toggle: clear, Shift_L: commit_text, Shift_R: commit_text}
# [global settings]
show_notifications: true # 是否显示状态变化的通知:true;false;option_list(方案内的开头 option)
show_notifications_time: 1200 # 通知显示的时间,单位 ms
global_ascii: false # 切换为 ascii 模式时,是否影响所有窗口:true;false
# [End of <global settings>]
# 字体设置
# 支持字重设置THIN, EXTRA_LIGHT, ULTRA_LIGHT, LIGHT, SEMI_LIGHT, NORMAL, REGULAR, MEDIUM, DEMI_BOLD, SEMI_BOLD, BOLD, EXTRA_BOLD, ULTRA_BOLD, BLACK, HEAVY, EXTRA_BLACK, ULTRA_BLACK
# color_font: true 时支持斜体字设定,italic, oblique
# color_font: true时支持指定回退字体顺序和回退范围,color_font: false时只认主字体名字
# 主字体,回退字体1,回退字体2,回退字体3 ......
# 主字体格式 fontName:fontWeight:fontStyle #fontWeight可以是上面的各种字重,fontStyle 可以italic/oblique
# 回退字体格式可以是以下的三种状态:
#
# fontName # fallback 字体fontName, fallback 范围 0到10FFFF
# fontName:first_code_point # fallback 字体fontName, fallback 范围 first_code_point到10FFFF
# fontName:first_code_point:last_code_point # fallback 字体fontName, fallback 范围 first_code_point到last_code_point
style:
__include": win11_preset
antialias_mode": default # 次像素反锯齿设定:default;force_dword;cleartype;grayscale;aliased
color_font: true # ★在Windows 8.1以上系统上使用彩色字体,支持彩色Emoji。如系统版本低于8.1则自动false
color_scheme: CatLight # 主题色
color_scheme_dark: CatDark # 暗色主题色
font_face: "霞鹜新晰黑, Microsoft Yahei, TH-Tshyn-P1:30000:3134A, TH-Tshyn-P1:31350:323AF, TH-Tshyn-P1:2EBF0:2EE5D, Segoe UI, Segoe UI Emoji:30:39, Segoe UI Emoji:23:23, Segoe UI Emoji:2a:2a, Segoe UI Emoji:fe0f:fe0f, Segoe UI Emoji:20e3:20e3, Noto Color Emoji SVG:80" # 候选字体
label_font_face: "Microsoft Yahei" # ★序号字体
comment_font_face: "Microsoft Yahei" # ★注释字体
font_point: 14 # 候选字号
label_font_point: 14 # ★序号字号,小于等于候选字号
comment_font_point: 12 # ★注释字号,小于等于候选字号
capture_type: none # (none/highlighted/candidates可选),可以在提交候选时复制 无/高亮选项/整个候选窗口 的截图到剪贴板
horizontal: false # 水平布局,true时横屏幕,false时竖直布局
fullscreen: false # 全屏
mark_text: "|" # 标记字符,显示在选中的候选标签前,需要在配色方案中指定颜色;如该项为空字符串 "" 而配色方案中 hilited_mark_color 非透明色,则显示 Windows 11 输入法风格标记
ascii_tip_follow_cursor: false # 切换 ASCII 模式时,提示跟随鼠标,而非输入光标
enhanced_position: true # 无法定位候选框时,在窗口左上角显示候选框:true;false
hide_candidates_when_single: false # ★preedit_inline时,只有一个候选时隐藏候选框不绘制
inline_preedit: false # 行内显示预编辑区:true;false
preedit_type: composition # 隐藏候选窗(margin_x或margin_y为负数,负数即可)+ style/preedit_type: preview_all
display_tray_icon: false # 托盘显示独立于语言栏的额外图标:true;false
label_format: "%s." # 编号规则
vertical_text: false # 竖排文本:true;false
candidate_list_layout: stacked # stacked | linear 候选项排列方向(似乎只有在custom内才可以生效)
vertical_text_left_to_right: false # 竖排方向是否从左到右:true;false
vertical_text_with_wrap: false # 文本竖排模式下,自动换行:true;false
vertical_auto_reverse: false # 文本竖排模式下,候选窗口位于光标上方时倒序排列:true;false
vertical_auto_reverse": false # 竖排候选翻转
paging_on_scroll: true # 在候选窗口上滑动滚轮的行为:true(翻页);false (选中下一个候选)
click_to_capture: false # 鼠标点击候选项,创建截图:true;false
layout:
align_type: bottom # ★文字偏置,主要影响label和comment居上/居中/居下布置,尤其是label和comment字体比候选字小的时候,bottom/center/top,
min_width: 30 # 候选框最小宽度
min_height: 0 # 候选框最小高度
border_width: 0 # 边框宽度,同border_width
margin_x: 0 # 主体元素和候选框的左右边距;为负值时,不显示候选框
margin_y: 0 # 主体元素的上下边距;为负值时,不显示候选框
spacing: 0 # inline_preedit 为否时,编码区域和候选区域的间距
candidate_spacing: 0 # 候选项之间的间距
hilite_spacing: 5 # 候选项和相应标签的间距
hilite_padding: 5 # 高亮区域和内部文字的间距,影响高亮区域大小
round_corner: 8 # 别名 hilited_corner_radius
corner_radius: 8 # 候选窗口圆角半径
shadow_radius: 0 # 阴影区域半径,为 0 不显示阴影;需要同时在配色方案中指定非透明的阴影颜色
shadow_offset_x: 4 # 阴影左右偏移距离
shadow_offset_y: 4 # 阴影上下偏移距离
style/layout/min_width: 30
# type: vertical # 布局设置,效果和 style 下的设置相同:
# horizontal(横向);vertical(竖向) ; vertical_text(竖排文本) ; vertical+fullscreen(全屏) ; horizontal+fullscreen(横向全屏)
# [preset_color_schemes]
# 配色设定
# 在小狼毫用户目录新建 preview 文件夹,将自定义皮肤的截图重命名为 color_scheme_<name>.png 放入此文件夹,可以在「输入法设定」中看到自定义皮肤效果
# 小狼毫配色在线设计:
# [RIME 西米](https://fxliang.github.io/RimeSeeMe/)
# [润笔](https://pdog18.github.io/rime-soak/#/theme)
# [小狼毫配色详解](https://github.com/rime/weasel/wiki/定制小狼毫配色)
preset_color_schemes:
mint_light_blue:
name: "蓝水鸭/Mint Light Blue"
author: Mintimate <"Mintimate's Blog">
translucency: true # 磨砂: false | true
mutual_exclusive: false # 色不叠加: false | true
shadow_size: 0 # 阴影大小
line_spacing: 5 # 行间距
# base_offset: 0 # 字基高(Action版本鼠须管会崩溃)
alpha: 1 # 透明度,0~1
spacing: 10 # 拼音与候选项之间的距离 (inline_preedit: false)
back_color: 0xefefef # 底色
hilited_candidate_back_color: 0xed9564 # 选中底色
label_color: 0xcac9c8 # 序号颜色
hilited_candidate_label_color: 0xefefef # 选中序号颜色
candidate_text_color: 0x424242 # 文字颜色
hilited_candidate_text_color: 0xefefef # 选中文字颜色
comment_text_color: 0xcac9c8 # 注颜色
hilited_comment_text_color: 0xefefef # 选中注颜色
text_color: 0x6495ed # 拼音颜色 (inline_preedit: false)
hilited_text_color: 0xed9564 # 选中拼音颜色 (inline_preedit: false)
mint_dark_blue:
name: 黑水鸭/Mint Dark Blue
author: Mintimate <"Mintimate's Blog">
translucency: true # 磨砂: false | true
mutual_exclusive: false # 色不叠加: false | true
shadow_size: 0 # 阴影大小
line_spacing: 5 # 行间距
# base_offset: 0 # 字基高(Action版本鼠须管会崩溃)
alpha: 1 # 透明度,0~1
spacing: 10 # 拼音与候选项之间的距离 (inline_preedit: false)
back_color: 0x424242 # 底色
hilited_candidate_back_color: 0xc6c01a # 选中底色
label_color: 0xefefef # 序号颜色
hilited_candidate_label_color: 0xefefef # 选中序号颜色
candidate_text_color: 0xefefef # 文字颜色
hilited_candidate_text_color: 0xefefef # 选中文字颜色
comment_text_color: 0xefefef # 注颜色
hilited_comment_text_color: 0xffffff # 选中注颜色
text_color: 0x6495ed # 拼音颜色 (inline_preedit: false)
hilited_text_color: 0xc6c01a # 选中拼音颜色 (inline_preedit: false)
easy_dark:
author: "木易"
back_color: 0x36261F
candidate_text_color: 0xDBDBDB
comment_text_color: 0xA8A8A8
hilited_back_color: 0x471885
hilited_candidate_back_color: 0x63453A
hilited_candidate_label_color: 0xFFFFFF
hilited_candidate_text_color: 0xDBDBDB
hilited_comment_text_color: 0xA8A8A8
hilited_mark_color: 0xD6D6D6
hilited_text_color: 0xD6D6D6
label_color: 0xDBDBDB
name: "蓝黑"
text_color: 0xD6D6D6
eucalyptus:
author: "ID;Peace B"
back_color: 0xFFFFFF
border_color: 0xC9B881
candidate_text_color: 0x8C7662
comment_text_color: 0x8C7662
hilited_back_color: 0xD5E2F2
hilited_candidate_back_color: 0xD1A78E
hilited_candidate_text_color: 0xFFFFFF
hilited_comment_text_color: 0xFFFFFF
hilited_mark_color: 0xFFFFFF
name: "尤加利"
text_color: 0x2B1007
gruvbox_light:
author: Q
back_color: 0xc7f1fb
border_color: 0xb2dbeb
candidate_text_color: 0x888545
comment_text_color: 0xa2577f
hilited_back_color: 0xb2dbeb
hilited_candidate_text_color: 0x000000
hilited_label_color: 0x1a9798
hilited_mark_color: 0x2A8585
hilited_text_color: 0x1d24cc
label_color: 0x0e5dd6
name: "Gruvbox Light"
text_color: 0x6a9d68
pornhub:
author: swwrww
back_color: 0x232323
border_color: 0x00000000
candidate_back_color: 0x00000000
candidate_shadow_color: 0x000083FF
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_back_color: 0x00000000
hilited_candidate_back_color: 0x0083FF
hilited_candidate_shadow_color: 0x00000000
hilited_candidate_text_color: 0x000000
hilited_comment_text_color: 0x000000
hilited_label_color: 0x000000
hilited_mark_color: 0xffffff
hilited_shadow_color: 0x000083FF
hilited_text_color: 0xffffff
label_color: 0xFFFFFF
name: Pornhub
shadow_color: 0x00000000
text_color: 0x0083FF
qishu:
author: qishu
back_color: 0x53473d
border_color: 0x53473d
candidate_text_color: 0xcef686
comment_text_color: 0xcef686
hilited_back_color: 0x53473d
hilited_candidate_back_color: 0x53473d
hilited_candidate_text_color: 0xae96fb
hilited_comment_text_color: 0x82caa6
hilited_text_color: 0x82caa6
name: "祈澍"
text_color: 0xae96fb
rose_red:
author: "木易"
back_color: 0xF4F4F6
border_color: 0xffffff
candidate_text_color: 0x383838
comment_text_color: 0x87807B
hilited_back_color: 0xEFEFF4
hilited_candidate_back_color: 0xEDEDF9
hilited_candidate_label_color: 0x884F11FA
hilited_candidate_text_color: 0x4F11FA
hilited_comment_text_color: 0xF19C38
hilited_mark_color: 0xBCA9E8
hilited_text_color: 0x8E8E93
label_color: 0xaaaaaa
name: "玫红"
preedit_back_color: 0x364572
so_young_qmod_01:
author: Q
back_color: 0xe3f6fd
border_color: 0xc5c8cc
candidate_back_color: 0xe3f6fd
candidate_text_color: 0x736b55
comment_text_color: 0x9377b9
hilited_back_color: 0x736b55
hilited_candidate_back_color: 0x736b55
hilited_candidate_text_color: 0xd5e8ee
hilited_comment_text_color: 0xd5e8ee
hilited_mark_color: 0xffffff
hilited_text_color: 0xd5e8ee
key_symbol_color: 0x339977
label_color: 0x919183
name: "致青春·Q改"
preview_back_color: 0x6b55d073
preview_text_color: 0xd5e8ee
text_color: 0x808070
win10black:
back_color: 0x000000
border_color: 0x347440
candidate_text_color: 0xffffff
comment_text_color: 0x666666
hilited_back_color: 0x347440
hilited_candidate_back_color: 0x347440
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xa9a9a9
hilited_label_color: 0xa9a9a9
hilited_mark_color: 0xa9a9a9
hilited_text_color: 0xffffff
label_color: 0xa9a9a9
name: Win10Black
shadow_color: 0x00000000
text_color: 0xffffff
win10blue:
back_color: 0xffffff
border_color: 0xd77800
candidate_back_color: 0x00ffffff
candidate_shadow_color: 0x00ffffff
candidate_text_color: 0x000000
comment_text_color: 0x222222
hilited_back_color: 0xd77800
hilited_candidate_back_color: 0xd77800
hilited_candidate_shadow_color: 0x00d77800
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_label_color: 0xffffff
hilited_mark_color: 0xffffff
hilited_shadow_color: 0x00d77800
hilited_text_color: 0xffffff
label_color: 0x838383
name: Win10Blue
shadow_color: 0x20000000
text_color: 0x000000
win10gray:
back_color: 0xf4f4f4
border_color: 0xcccccc
candidate_text_color: 0x000000
comment_text_color: 0x666666
hilited_back_color: 0xffffff
hilited_candidate_back_color: 0xcccccc
hilited_candidate_text_color: 0x000000
hilited_comment_text_color: 0x555555
hilited_label_color: 0x444444
hilited_mark_color: 0x444444
hilited_text_color: 0x000000
label_color: 0x888888
name: Win10Gray
shadow_color: 0x20000000
text_color: 0x000000
win11dark:
back_color: 0x303030
border_color: 0xc202020
candidate_back_color: 0x00303030
candidate_text_color: 0xc9c9c9
comment_text_color: 0xc9c9c9
hilited_back_color: 0x202020
hilited_candidate_back_color: 0x202020
hilited_candidate_text_color: 0xf9f9f9
hilited_comment_text_color: 0xf9f9f9
hilited_label_color: 0xf9f9f9
hilited_mark_color: 0xf9f9f9
hilited_text_color: 0xf9f9f9
label_color: 0xc9c9c9
name: Win11Dark
shadow_color: 0x16000000
text_color: 0xc9c9c9
win11light:
back_color: 0xfff9f9f9
border_color: 0x10f0f0f0
candidate_back_color: 0xfff9f9f9
candidate_text_color: 0x000000
comment_text_color: 0x666666
hilited_back_color: 0xf0f0f0
hilited_candidate_back_color: 0xf0f0f0
hilited_candidate_text_color: 0x0A0A0A
hilited_comment_text_color: 0x1a1a1a
hilited_label_color: 0x1a1a1a
hilited_mark_color: 0x303030
hilited_text_color: 0x1a1a1a
label_color: 0x1a1a1a
name: Win11Light
shadow_color: 0x00000000
text_color: 0x1a1a1a
xingye:
author: lxetm
back_color: 0x3B2C24
border_color: 0x916539
candidate_text_color: 0x64C5E2
comment_text_color: 0x54848C
hilited_back_color: 0x3B2C24
hilited_candidate_back_color: 0x3B2C24
hilited_candidate_text_color: 0x64C5E2
hilited_text_color: 0x64C5E2
name: "星夜"
text_color: 0x64C5E2
"青橙":
author: lxetm
back_color: 0x2E2D2D
border_color: 0x949484
candidate_text_color: 0x0775E1
comment_text_color: 0x0775E1
hilited_back_color: 0x2E2D2D
hilited_candidate_back_color: 0x2E2D2D
hilited_candidate_text_color: 0xDADA11
hilited_text_color: 0x0775E1
name: "青橙"
text_color: 0x0775E1
aqua:
name: 碧水/Aqua
author: 佛振 <[email protected]>
text_color: 0x000000 #默认文字颜色
back_color: 0xf3f3f3 #候选窗背景色
shadow_color: 0x00000000 #候选窗阴影色,默认全透明(无阴影)
border_color: 0x00e0e0e0 #候选窗边框颜色
hilited_text_color: 0x000000 #编码文字颜色
hilited_back_color: 0x00d4d4d4 #编码背景颜色
hilited_shadow_color: 0x00000000 #编码背景块阴影颜色
hilited_candidate_text_color: 0xffffff #高亮候选文字颜色
hilited_candidate_back_color: 0xfa3a0a #高亮候选背景颜色
hilited_candidate_shadow_color: 0x00000000 #高亮候选背景块阴影颜色
candidate_text_color: 0x4b4b4b #非高亮候选文字颜色
candidate_back_color: 0xf3f3f3 #非高亮候选背景颜色
candidate_shadow_color: 0x00000000 #非高亮候选背景块阴影颜色
comment_text_color: 0x4b4b4b #非高亮编码提示文字颜色
hilited_comment_text_color: 0xc5c5c5 #高亮候选编码提示文字颜色d
label_color: 0x4b4b4b #非高亮候选数字颜色
hilited_label_color: 0xc5c5c5 #高亮候选数字颜色
azure:
name: 青天/Azure
author: 佛振 <[email protected]>
text_color: 0xffe8ca
candidate_text_color: 0xfff8ee
back_color: 0x8b4e01
border_color: 0x8b4e01
hilited_text_color: 0xfff8ee
hilited_back_color: 0x8b4e01
hilited_candidate_text_color: 0x7ffeff
hilited_candidate_back_color: 0xa95e01
comment_text_color: 0xc69664
luna:
name: 明月/Luna
author: 佛振 <[email protected]>
text_color: 0x000000
back_color: 0xffffff
border_color: 0xcccccc
hilited_text_color: 0x000000
hilited_back_color: 0x7fffff
hilited_candidate_text_color: 0xffffff
hilited_candidate_back_color: 0x000000
ink:
name: 墨池/Ink
author: 佛振 <[email protected]>
text_color: 0x000000
back_color: 0xffffff
border_color: 0x000000
hilited_text_color: 0x000000
hilited_back_color: 0xdddddd
hilited_candidate_text_color: 0xffffff
hilited_candidate_back_color: 0x000000
lost_temple:
name: 孤寺/Lost Temple
author: 佛振 <[email protected]>, based on ir_black
text_color: 0xe8f3f6
back_color: 0x444444
border_color: 0x444444
hilited_text_color: 0x82e6ca
hilited_back_color: 0x222222
hilited_candidate_text_color: 0x000000
hilited_candidate_back_color: 0x82e6ca
dark_temple:
name: 暗堂/Dark Temple
author: 佛振 <[email protected]>, based on ir_black
text_color: 0x92f6da
candidate_text_color: 0xd8e3e6
back_color: 0x222222
border_color: 0x222222
hilited_text_color: 0xffcf9a
hilited_back_color: 0x222222
hilited_candidate_text_color: 0x92f6da
hilited_candidate_back_color: 0x333333
comment_text_color: 0x606cff
starcraft:
name: 星際我爭霸/StarCraft
author: Contralisk <[email protected]>, original artwork by Blizzard Entertainment
text_color: 0xccaa88
candidate_text_color: 0x30bb55
back_color: 0x000000
border_color: 0x1010a0
hilited_text_color: 0xfecb96
hilited_back_color: 0x000000
hilited_candidate_text_color: 0x60ffa8
hilited_candidate_back_color: 0x000000
google:
name: 谷歌/Google
author: skoj <[email protected]>
text_color: 0x666666
candidate_text_color: 0x000000
back_color: 0xFFFFFF
border_color: 0xE2E2E2
hilited_text_color: 0x000000
hilited_back_color: 0xFFFFFF
hilited_candidate_text_color: 0xFFFFFF
hilited_candidate_back_color: 0xCE7539
solarized_rock:
name: 曬經石/Solarized Rock
author: "Aben <[email protected]>, based on Ethan Schoonover's Solarized color scheme"
back_color: 0x362b00
border_color: 0x362b00
text_color: 0x009985
hilited_text_color: 0x98a12a
candidate_text_color: 0x969483
hilited_candidate_text_color: 0xffffff
hilited_candidate_back_color: 0x8236d3
tintin:
name: "丁丁/ Tintin"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0xd99500
border_color: 0xd99500
label_color: 0xffffff
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_text_color: 0xf7d891
hilited_back_color: 0xd99500
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x2164f1
dota_2:
name: "DOTA 2"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x120f10
border_color: 0x120f10
label_color: 0x5c758f
hilited_text_color: 0x1841dd
hilited_back_color: 0x120f10
candidate_text_color: 0x5c758f
comment_text_color: 0x5c758f
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x1841dd
brasil:
name: "笆悉/Brasil"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x559311
border_color: 0x559311
label_color: 0xffffff
hilited_text_color: 0xffffff
hilited_back_color: 0x7d3617
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x16c7f7
doraemon:
name: "銅鑼衛門/Doraemon"
author: "Patricivs <[email protected]>"
text_color: 0x1200e5
back_color: 0xffffff
border_color: 0xe89f00
label_color: 0xe89f00
hilited_text_color: 0xffffff
hilited_back_color: 0x1200e5
candidate_text_color: 0xe89f00
comment_text_color: 0xe89f00
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0xe89f00
espagna:
name: "埃斯巴尼亞/España"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x230dc3
border_color: 0x230dc3
label_color: 0xffffff
hilited_text_color: 0xffffff
hilited_back_color: 0x2cb5f7
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x2cb5f7
gholabok:
name: "胡蘿菔/Gholabok"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x2939e8
border_color: 0x2939e8
label_color: 0xffffff
hilited_text_color: 0xffffff
hilited_back_color: 0x437b00
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x3d6ded
kuma_shuzboz:
name: "熊出沒/Kuma Shuzboz"
author: "Patricivs <[email protected]>"
text_color: 0x000000
back_color: 0x2db6f8
border_color: 0x2db6f8
label_color: 0xffffff
hilited_text_color: 0x2db6f8
hilited_back_color: 0xffffff
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x000000
kuon:
name: "琨/Kuon"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x70b33e
border_color: 0x70b33e
label_color: 0xffffff
hilited_text_color: 0x70b33e
hilited_back_color: 0xffffff
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0x70b33e
hilited_comment_text_color: 0x70b33e
hilited_candidate_back_color: 0xffffff
macau:
name: "澳門/Macau"
author: "Patricivs <[email protected]>"
text_color: 0x00d9ff
back_color: 0x81a300
border_color: 0x81a300
label_color: 0xffffff
hilited_text_color: 0xffffff
hilited_back_color: 0x00d9ff
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0x00d9ff
hilited_comment_text_color: 0x00d9ff
hilited_candidate_back_color: 0xffffff
nba:
name: "NBA"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0xb76a00
border_color: 0xb76a00
label_color: 0xffffff
hilited_text_color: 0x541ed7
hilited_back_color: 0xffffff
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x541ed7
ps4:
name: "遊驛四/PS4"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x000000
border_color: 0x000000
label_color: 0xffffff
hilited_text_color: 0xffffff
hilited_back_color: 0x575759
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0xe89f00
skype:
name: "斯蓋普/Skype"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0xefad00
border_color: 0xefad00
label_color: 0xffffff
hilited_text_color: 0xefad00
hilited_back_color: 0xffffff
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xefad00
hilited_comment_text_color: 0xefad00
hilited_candidate_back_color: 0xffffff
xbox_silver:
name: "銀色叉盒/Xbox Silver"
author: "Patricivs <[email protected]>"
text_color: 0x1fc28d
back_color: 0xefeeee
border_color: 0xefeeee
label_color: 0x5bf0b5
hilited_text_color: 0xffffff
hilited_back_color: 0x5bf0b5
candidate_text_color: 0x1fc28d
comment_text_color: 0x1fc28d
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x448c28
youtube:
name: "YouTube"
author: "Patricivs <[email protected]>"
text_color: 0x000000
back_color: 0xdedede
border_color: 0xdedede
label_color: 0x000000
hilited_text_color: 0x230dc3
hilited_back_color: 0xffffff
candidate_text_color: 0x000000
comment_text_color: 0x000000
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x230dc3
so_young:
name: "致青春/So Young"
author: "五磅兔 <[email protected]>"
text_color: 0x8236d3
back_color: 0xe3f6fd
border_color: 0xd5e8ee
label_color: 0xa1a193
candidate_text_color: 0x837b65
comment_text_color: 0xd28b26
hilited_text_color: 0x969483
hilited_back_color: 0xd5e8ee
hilited_candidate_text_color: 0xd5e8ee
hilited_comment_text_color: 0xd5e8ee
hilited_candidate_back_color: 0x98a12a
smurfs:
name: "藍精靈/Smurfs"
author: "skoj <[email protected]>"
text_color: 0xffffff
back_color: 0xbf7817
border_color: 0xf5ede0
label_color: 0xbf7817
hilited_text_color: 0xdbbc6d
hilited_back_color: 0xbf7817
candidate_text_color: 0xf6f6f6
comment_text_color: 0xf6f6f6
hilited_candidate_text_color: 0xf6f6f6
hilited_comment_text_color: 0xf6f6f6
hilited_candidate_back_color: 0xdbbc6d
wii:
name: "Wii"
author: "Patricivs <[email protected]>"
text_color: 0x575759
back_color: 0xefefef
border_color: 0xefefef
label_color: 0xcac9c8
hilited_text_color: 0xffcc33
hilited_back_color: 0xefefef
candidate_text_color: 0x575759
comment_text_color: 0xcac9c8
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0xffcc33
android:
name: "安卓/Android"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x99731c
border_color: 0x99731c
label_color: 0xc18835
hilited_text_color: 0x50c4a8
hilited_back_color: 0x99731c
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x50c4a8
cool_breeze:
name: "清風/Cool Breeze"
author: "skoj <[email protected]>"
text_color: 0x0000FF
back_color: 0xFFFBFB
border_color: 0xFFAAAA
hilited_text_color: 0x0000CE
hilited_back_color: 0xFFFBFB
candidate_text_color: 0x009100
hilited_candidate_text_color: 0x6F003A
hilited_candidate_back_color: 0xFFD6AC
google_plus:
name: "Google+"
author: "Patricivs <[email protected]>"
text_color: 0xcac9c8
back_color: 0xffffff
border_color: 0x394bdd
label_color: 0xcac9c8
hilited_text_color: 0x394bdd
hilited_back_color: 0xffffff
candidate_text_color: 0x394bdd
comment_text_color: 0xcac9c8
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0x394bdd
modern_warfare:
name: "現代戰爭/Modern Warfare"
author: P1461
text_color: 0x14bc70
back_color: 0x0a1b0d
border_color: 0x4bad83
hilited_text_color: 0xfbfdfc
hilited_back_color: 0x030e06
candidate_text_color: 0xabfedc
comment_text_color: 0xfcfdfb
hilited_candidate_text_color: 0xabfedc
hilited_candidate_back_color: 0x676f63
brisk:
name: "輕盈/Brisk"
author: "skoj <[email protected]>"
text_color: 0x2238dc
back_color: 0xffffff
border_color: 0x333333
hilited_text_color: 0x2238dc
hilited_back_color: 0xffffff
candidate_text_color: 0x575757
hilited_candidate_text_color: 0x2238dc
hilited_candidate_back_color: 0xffffff
starcraft_ii:
name: "星際爭霸Ⅱ/StarCraft Ⅱ"
author: "Patricivs <[email protected]>"
text_color: 0xffffff
back_color: 0x29190a
border_color: 0x534b46
label_color: 0xffffff
hilited_text_color: 0xffffff
hilited_back_color: 0x17100a
candidate_text_color: 0xffffff
comment_text_color: 0xffffff
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0xefad1e
steam:
name: "Steam"
author: "Patricivs <[email protected]>"
text_color: 0xcd8c52
back_color: 0x141617
border_color: 0x353638
label_color: 0xffffff
hilited_text_color: 0xc9cfd1
hilited_back_color: 0x141617
candidate_text_color: 0xffffff
comment_text_color: 0xa7a7a9
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xa7a7a9
hilited_candidate_back_color: 0x594231
flypy:
# description: |
# 小鹤飞扬:白底蓝字,红色高亮。
# 根据小鹤双拼官网图片制作
# http://www.flypy.com/images/mr.png
name: "小鹤飞扬/flypy"
author: "Pal.lxk <[email protected]>"
text_color: 0x000000
back_color: 0xffffff
border_color: 0xc6c6c6
label_color: 0xff8000
hilited_text_color: 0xff8000
hilited_back_color: 0xffffff
candidate_text_color: 0xff8000
comment_text_color: 0xff8000
hilited_candidate_text_color: 0x0000b0
hilited_comment_text_color: 0x0000b0
hilited_candidate_back_color: 0xffffff
metroblue:
name: "现代蓝/Metro Blue"
author: "Prcuvu <[email protected]>"
text_color: 0x000000
back_color: 0xffffff
border_color: 0xd77800
label_color: 0x838383
hilited_text_color: 0x000000
hilited_back_color: 0xffffff
candidate_text_color: 0x000000
comment_text_color: 0x000000
hilited_candidate_text_color: 0xffffff
hilited_comment_text_color: 0xffffff
hilited_candidate_back_color: 0xd77800
hilited_label_color: 0xffffff
psionics:
name: 幽能/Psionics
author: 雨過之後、佛振
text_color: 0xc2c2c2
back_color: 0x444444
border_color: 0x444444
candidate_text_color: 0xeeeeee
hilited_text_color: 0xeeeeee
hilited_back_color: 0x444444
hilited_candidate_label_color: 0xfafafa
hilited_candidate_text_color: 0xfafafa
hilited_candidate_back_color: 0xd8bf00
comment_text_color: 0x808080
hilited_comment_text_color: 0x444444
CatLight:
name: Cat光明/CatLight
author: ProudCat
text_color: 0x000000 #默认文字颜色
back_color: 0xf3f3f3 #候选窗背景色
shadow_color: 0x00000000 #候选窗阴影色,默认全透明(无阴影)
border_color: 0x00e0e0e0 #候选窗边框颜色
hilited_text_color: 0x000000 #编码文字颜色
hilited_back_color: 0x00d4d4d4 #编码背景颜色
hilited_shadow_color: 0x00000000 #编码背景块阴影颜色
hilited_candidate_text_color: 0xffffff #高亮候选文字颜色
hilited_candidate_back_color: 0xff571f #高亮候选背景颜色
hilited_candidate_shadow_color: 0x00000000 #高亮候选背景块阴影颜色
candidate_text_color: 0x4b4b4b #非高亮候选文字颜色
candidate_back_color: 0xf3f3f3 #非高亮候选背景颜色
candidate_shadow_color: 0x00000000 #非高亮候选背景块阴影颜色
comment_text_color: 0x4b4b4b #非高亮编码提示文字颜色
hilited_comment_text_color: 0xc5c5c5 #高亮候选编码提示文字颜色d
label_color: 0x4b4b4b #非高亮候选数字颜色
hilited_label_color: 0xc5c5c5 #高亮候选数字颜色
CatDark:
name: Cat暗黑/CatDark
author: ProudCat
text_color: 0xe5ffffff #默认文字颜色
back_color: 0x242424 #候选窗背景色
shadow_color: 0x00000000 #候选窗阴影色,默认全透明(无阴影)
border_color: 0x00e0e0e0 #候选窗边框颜色
hilited_text_color: 0xe5ffffff #编码文字颜色
hilited_back_color: 0x00d4d4d4 #编码背景颜色
hilited_shadow_color: 0x00000000 #编码背景块阴影颜色
hilited_candidate_text_color: 0xe5ffffff #高亮候选文字颜色
hilited_candidate_back_color: 0xfa3a0a #高亮候选背景颜色
hilited_candidate_shadow_color: 0x00000000 #高亮候选背景块阴影颜色
candidate_text_color: 0x99ffffff #非高亮候选文字颜色
candidate_back_color: 0x242424 #非高亮候选背景颜色
candidate_shadow_color: 0x00000000 #非高亮候选背景块阴影颜色
comment_text_color: 0x55ffffff #非高亮编码提示文字颜色
hilited_comment_text_color: 0xc5c5c5 #高亮候选编码提示文字颜色
label_color: 0x85ffffff #非高亮候选数字颜色
hilited_label_color: 0xe5ffffff #高亮候选数字颜色
apathy:
back_color: 0xFFFFFF
candidate_format: "%c %@ "
comment_text_color: 0x999999
hilited_candidate_back_color: 0xFFF0E4
hilited_candidate_text_color: 0xEE6E00
inline_preedit: true
name: "冷漠"
text_color: 0x424242
appsored:
author: "Astrian Zheng"
back_color: 0x2824C8
candidate_format: "%c. %@ "
candidate_text_color: 0xC5C3F2
comment_text_color: 0xFFFFFF
hilited_candidate_back_color: 0x2824C8
hilited_candidate_label_color: 0xFFFFFF
hilited_candidate_text_color: 0xFFFFFF
hilited_text_color: 0xFFFFFF
label_color: 0xC5C3F2
name: "AppSo 红"
text_color: 0xC5C3F2
dracula:
back_color: 0x362A28
border_color: 0x362A28
candidate_format: "%c %@ "
candidate_text_color: 0xF993BD
comment_text_color: 0xFDE98B
corner_radius: 5
font_point: 16
hilited_back_color: 0xF2F8F8
hilited_candidate_back_color: 0xC679FF
hilited_candidate_label_color: 0xfafafa
hilited_candidate_text_color: 0xF2F8F8
hilited_comment_text_color: 0x362b00
hilited_text_color: 0x5A4744
horizontal: true
inline_preedit: true
label_font_point: 14
line_spacing: 10
name: dracula
text_color: 0x6CB8FF
dracula_light:
back_color: 0xF2F8F8
border_color: 0xF2F8F8
candidate_format: "%c %@ "
candidate_text_color: 0x362A28
comment_text_color: 0x5A4744
corner_radius: 5
font_point: 16
hilited_back_color: 0xF2F8F8
hilited_candidate_back_color: 0xC679FF
hilited_candidate_label_color: 0xF2F8F8
hilited_candidate_text_color: 0xF2F8F8
hilited_comment_text_color: 0x362b00
hilited_text_color: 0x362A28
horizontal: true
inline_preedit: true
label_font_point: 14
line_spacing: 10