- 下载 https://github.com/iDvel/rime-ice
- 将其中全部内容复制到 Rime 的 Settings 文件夹
- 再将 ⬇️ 2 个文件覆盖
Last active
April 19, 2025 17:54
-
-
Save riskers/9bd441f0483325ef991f2b40da7d2eed to your computer and use it in GitHub Desktop.
rime config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rime default settings | |
# encoding: utf-8 | |
# 要比共享目录的同名文件的 config_version 大才可以生效 | |
config_version: '2025-02-24' | |
# 方案列表 | |
schema_list: | |
# 可以直接删除或注释不需要的方案,对应的 *.schema.yaml 方案文件也可以直接删除 | |
# 除了 t9,它依赖于 rime_ice,用九宫格别删 rime_ice.schema.yaml | |
- schema: rime_ice # 雾凇拼音(全拼) | |
- schema: t9 # 九宫格(仓输入法) | |
- schema: double_pinyin # 自然码双拼 | |
- schema: double_pinyin_abc # 智能 ABC 双拼 | |
- schema: double_pinyin_mspy # 微软双拼 | |
- schema: double_pinyin_sogou # 搜狗双拼 | |
- schema: double_pinyin_flypy # 小鹤双拼 | |
- schema: double_pinyin_ziguang # 紫光双拼 | |
# 菜单 | |
menu: | |
page_size: 5 # 候选词个数 | |
# alternative_select_labels: [ ①, ②, ③, ④, ⑤, ⑥, ⑦, ⑧, ⑨, ⑩ ] # 修改候选项标签 | |
# alternative_select_keys: ASDFGHJKL # 如编码字符占用数字键,则需另设选字键(注意在雾凇中,大写字母也作为编码了) | |
# 方案选单相关 | |
switcher: | |
caption: 「方案选单」 | |
hotkeys: | |
- F4 | |
- Control+grave | |
- Control+Shift+grave | |
# - Alt+grave | |
save_options: # 开关记忆(方案中的 switches),从方案选单(而非快捷键)切换时会记住的选项,需要记忆的开关不能设定 reset | |
- ascii_punct | |
- traditionalization | |
- emoji | |
- full_shape | |
- search_single_char | |
fold_options: true # 呼出时是否折叠,多方案时建议折叠 true ,一个方案建议展开 false | |
abbreviate_options: true # 折叠时是否缩写选项 | |
option_list_separator: ' / ' # 折叠时的选项分隔符 | |
# 中西文切换 | |
# | |
# good_old_caps_lock: | |
# true 切换大写 | |
# false 切换中英 | |
# macOS 偏好设置的优先级更高,如果勾选【使用大写锁定键切换“ABC”输入法】则始终会切换输入法。 | |
# | |
# 切换中英: | |
# 不同的选项表示:打字打到一半时按下了 CapsLock、Shift、Control 后: | |
# commit_code 上屏原始的编码,然后切换到英文 | |
# commit_text 上屏拼出的词句,然后切换到英文 | |
# clear 清除未上屏内容,然后切换到英文 | |
# inline_ascii 切换到临时英文模式,按回车上屏后回到中文状态 | |
# noop 屏蔽快捷键,不切换中英,但不要屏蔽 CapsLock | |
ascii_composer: | |
good_old_caps_lock: true # true | false | |
switch_key: | |
Caps_Lock: clear # commit_code | commit_text | clear | |
Shift_L: noop # commit_code | commit_text | inline_ascii | clear | noop | |
Shift_R: noop # commit_code | commit_text | inline_ascii | clear | noop | |
Control_L: noop # commit_code | commit_text | inline_ascii | clear | noop | |
Control_R: noop # commit_code | commit_text | inline_ascii | clear | noop | |
################################################################################### | |
# 下面的 punctuator recognizer key_binder 写了一些所有方案通用的配置项。 | |
# 写在 default.yaml 里,方便多个方案引用,就是不用每个方案都写一遍了。 | |
# 标点符号 | |
# 设置为一个映射,就自动上屏;设置为多个映射,如 '/' : [ '/', ÷ ] 则进行复选。 | |
# full_shape: 全角没改,使用预设值 | |
# half_shape: 标点符号全部直接上屏,和 macOS 自带输入法的区别是 | |
# '|' 是半角的, | |
# '~' 是半角的, | |
# '`'(反引号)没有改成 '·'(间隔号)。 | |
punctuator: | |
digit_separators: ",.:" # 在此处指定的字符,在数字后被输入,若再次输入数字,则连同数字直接上屏;若双击,则恢复映射。 # librime >= 28a234f | |
# digit_separator_action: commit # 关闭上述行为 librime >= 1.13.1 | |
full_shape: | |
' ' : { commit: ' ' } | |
',' : { commit: , } | |
'.' : { commit: 。 } | |
'<' : [ 《, 〈, «, ‹ ] | |
'>' : [ 》, 〉, », › ] | |
'/' : [ /, ÷ ] | |
'?' : { commit: ? } | |
';' : { commit: ; } | |
':' : { commit: : } | |
'''' : { pair: [ '‘', '’' ] } | |
'"' : { pair: [ '“', '”' ] } | |
'\' : [ 、, \ ] | |
'|' : [ ·, |, '§', '¦' ] | |
'`' : ` | |
'~' : ~ | |
'!' : { commit: ! } | |
'@' : [ @, ☯ ] | |
'#' : [ #, ⌘ ] | |
'%' : [ %, '°', '℃' ] | |
'$' : [ ¥, '$', '€', '£', '¥', '¢', '¤' ] | |
'^' : { commit: …… } | |
'&' : & | |
'*' : [ *, ·, ・, ×, ※, ❂ ] | |
'(' : ( | |
')' : ) | |
'-' : - | |
'_' : —— | |
'+' : + | |
'=' : = | |
'[' : [ 「, 【, 〔, [ ] | |
']' : [ 」, 】, 〕, ] ] | |
'{' : [ 『, 〖, { ] | |
'}' : [ 』, 〗, } ] | |
half_shape: | |
',' : { commit: , } | |
'.' : { commit: 。 } | |
'<' : 《 | |
'>' : 》 | |
'/' : 、 | |
'?' : { commit: ? } | |
';' : { commit: ; } | |
':' : { commit: : } | |
'''' : { pair: [ '‘', '’' ] } | |
'"' : { pair: [ '「', '」' ] } | |
'\' : [ 、, '\', \ ] | |
'|' : '|' | |
'`' : '`' | |
'~' : [ '~', ~ ] | |
'!' : { commit: ! } | |
'@' : '@' | |
'#' : '#' | |
'%' : [ '%', %, '°', '℃' ] | |
'$' : ¥ | |
'^' : { commit: …… } | |
'&' : '&' | |
'*' : '*' | |
'(' : ( | |
')' : ) | |
'-' : '-' | |
'_' : —— | |
'+' : '+' | |
'=' : '=' | |
'[' : [ 「, 【, 〔, [ ] | |
']' : [ 」, 】, 〕, ] ] | |
'{' : 『 | |
'}' : 』 | |
# 处理符合特定规则的输入码,如网址、反查 | |
# 此处配置较为通用的选项,各方案中另增加了和方案功能绑定的 patterns。 | |
recognizer: | |
patterns: | |
email: "^[A-Za-z][-_.0-9A-Za-z]*@.*$" # email @ 之后不上屏 | |
url: "^(www[.]|https?:|ftp[.:]|mailto:|file:).*$|^[a-z]+[.].+$" # URL | |
underscore: "^[A-Za-z]+_.*" # 下划线不上屏 | |
# url_2: "^[A-Za-z]+[.].*" # 句号不上屏,支持 google.com abc.txt 等网址或文件名,使用句号翻页时需要注释掉 | |
# colon: "^[A-Za-z]+:.*" # 冒号不上屏 | |
# 快捷键 | |
key_binder: | |
# Lua 配置: 以词定字(上屏当前词句的第一个或最后一个字),和中括号翻页有冲突 | |
select_first_character: "bracketleft" # 左中括号 [ | |
select_last_character: "bracketright" # 右中括号 ] | |
bindings: | |
# Tab / Shift+Tab 切换光标至下/上一个拼音 | |
- { when: composing, accept: Shift+Tab, send: Shift+Left } | |
- { when: composing, accept: Tab, send: Shift+Right } | |
# Tab / Shift+Tab 翻页 | |
# - { when: has_menu, accept: Shift+Tab, send: Page_Up } | |
# - { when: has_menu, accept: Tab, send: Page_Down } | |
# Option/Alt + ←/→ 切换光标至下/上一个拼音 | |
- { when: composing, accept: Alt+Left, send: Shift+Left } | |
- { when: composing, accept: Alt+Right, send: Shift+Right } | |
# 翻页 - = | |
- { when: has_menu, accept: minus, send: Page_Up } # 上一页设置为 paging 时会导致直接上屏并输出减号 | |
- { when: has_menu, accept: equal, send: Page_Down } | |
# 翻页 , . | |
# - { when: paging, accept: comma, send: Page_Up } | |
# - { when: has_menu, accept: period, send: Page_Down } | |
# 翻页 [ ] ⚠️ 开启时请修改上面以词定字的快捷键 | |
# - { when: paging, accept: bracketleft, send: Page_Up } | |
# - { when: has_menu, accept: bracketright, send: Page_Down } | |
# 两种按键配置,鼠须管 Control+Shift+4 生效,小狼毫 Control+Shift+dollar 生效,都写上了。 | |
# numbered_mode_switch: | |
# - { when: always, select: .next, accept: Control+Shift+1 } # 在最近的两个方案之间切换 | |
# - { when: always, select: .next, accept: Control+Shift+exclam } # 在最近的两个方案之间切换 | |
# - { when: always, toggle: ascii_mode, accept: Control+Shift+2 } # 切换中英 | |
# - { when: always, toggle: ascii_mode, accept: Control+Shift+at } # 切换中英 | |
- { when: always, toggle: ascii_punct, accept: Control+Shift+3 } # 切换中英标点 | |
- { when: always, toggle: ascii_punct, accept: Control+Shift+numbersign } # 切换中英标点 | |
- { when: always, toggle: traditionalization, accept: Control+Shift+4 } # 切换简繁 | |
- { when: always, toggle: traditionalization, accept: Control+Shift+dollar } # 切换简繁 | |
# - { when: always, toggle: full_shape, accept: Control+Shift+5 } # 切换全半角 | |
# - { when: always, toggle: full_shape, accept: Control+Shift+percent } # 切换全半角 | |
# emacs_editing: | |
# - { when: composing, accept: Control+p, send: Up } | |
# - { when: composing, accept: Control+n, send: Down } | |
# - { when: composing, accept: Control+b, send: Left } | |
# - { when: composing, accept: Control+f, send: Right } | |
# - { when: composing, accept: Control+a, send: Home } | |
# - { when: composing, accept: Control+e, send: End } | |
# - { when: composing, accept: Control+d, send: Delete } | |
# - { when: composing, accept: Control+k, send: Shift+Delete } | |
# - { when: composing, accept: Control+h, send: BackSpace } | |
# - { when: composing, accept: Control+g, send: Escape } | |
# - { when: composing, accept: Control+bracketleft, send: Escape } | |
# - { when: composing, accept: Control+y, send: Page_Up } | |
# - { when: composing, accept: Alt+v, send: Page_Up } | |
# - { when: composing, accept: Control+v, send: Page_Down } | |
# optimized_mode_switch: | |
# - { when: always, accept: Control+Shift+space, select: .next } | |
# - { when: always, accept: Shift+space, toggle: ascii_mode } | |
# - { when: always, accept: Control+comma, toggle: full_shape } | |
# - { when: always, accept: Control+period, toggle: ascii_punct } | |
# - { when: always, accept: Control+slash, toggle: traditionalization } | |
# 将小键盘 0~9 . 映射到主键盘,数字金额大写的 Lua 如 R1234.5678 可使用小键盘输入 | |
- {accept: KP_0, send: 0, when: composing} | |
- {accept: KP_1, send: 1, when: composing} | |
- {accept: KP_2, send: 2, when: composing} | |
- {accept: KP_3, send: 3, when: composing} | |
- {accept: KP_4, send: 4, when: composing} | |
- {accept: KP_5, send: 5, when: composing} | |
- {accept: KP_6, send: 6, when: composing} | |
- {accept: KP_7, send: 7, when: composing} | |
- {accept: KP_8, send: 8, when: composing} | |
- {accept: KP_9, send: 9, when: composing} | |
- {accept: KP_Decimal, send: period, when: composing} | |
# 将小键盘 + - * / 映射到主键盘,使计算器 如 1+2-3*4 可使用小键盘输入 | |
- {accept: KP_Multiply, send: asterisk, when: composing} | |
- {accept: KP_Add, send: plus, when: composing} | |
- {accept: KP_Subtract, send: minus, when: composing} | |
- {accept: KP_Divide, send: slash, when: composing} | |
# 按键速查 | |
# https://github.com/LEOYoon-Tsaw/Rime_collections/blob/master/Rime_description.md | |
# (没有 Command 键,不支持) | |
# accept 和 send 可用字段除 A-Za-z0-9 外,还包含以下键盘上实际有的键: | |
# (区分大小写) | |
# BackSpace 退格 | |
# Tab 水平定位符 | |
# Linefeed 换行 | |
# Clear 清除 | |
# Return 回车 | |
# Pause 暂停 | |
# Sys_Req 印屏 | |
# Escape 退出 | |
# Delete 删除 | |
# Home 原位 | |
# Left 左箭头 | |
# Up 上箭头 | |
# Right 右箭头 | |
# Down 下箭头 | |
# Prior、Page_Up 上翻 | |
# Next、Page_Down 下翻 | |
# End 末位 | |
# Begin 始位 | |
# Shift_L 左Shift | |
# Shift_R 右Shift | |
# Control_L 左Ctrl | |
# Control_R 右Ctrl | |
# Meta_L 左Meta | |
# Meta_R 右Meta | |
# Alt_L 左Alt | |
# Alt_R 右Alt | |
# Super_L 左Super | |
# Super_R 右Super | |
# Hyper_L 左Hyper | |
# Hyper_R 右Hyper | |
# Caps_Lock 大写锁 | |
# Shift_Lock 上档锁 | |
# Scroll_Lock 滚动锁 | |
# Num_Lock 小键板锁 | |
# Select 选定 | |
# Print 打印 | |
# Execute 运行 | |
# Insert 插入 | |
# Undo 还原 | |
# Redo 重做 | |
# Menu 菜单 | |
# Find 搜寻 | |
# Cancel 取消 | |
# Help 帮助 | |
# Break 中断 | |
# space 空格 | |
# exclam ! | |
# quotedbl " | |
# numbersign # | |
# dollar $ | |
# percent % | |
# ampersand & | |
# apostrophe ' | |
# parenleft ( | |
# parenright ) | |
# asterisk * | |
# plus + | |
# comma , | |
# minus - | |
# period . | |
# slash / | |
# colon : | |
# semicolon ; | |
# less < | |
# equal = | |
# greater > | |
# question ? | |
# at @ | |
# bracketleft [ | |
# backslash \ | |
# bracketright ] | |
# asciicircum ^ | |
# underscore _ | |
# grave ` | |
# braceleft { | |
# bar | | |
# braceright } | |
# asciitilde ~ | |
# KP_Space 小键板空格 | |
# KP_Tab 小键板水平定位符 | |
# KP_Enter 小键板回车 | |
# KP_Delete 小键板删除 | |
# KP_Home 小键板原位 | |
# KP_Left 小键板左箭头 | |
# KP_Up 小键板上箭头 | |
# KP_Right 小键板右箭头 | |
# KP_Down 小键板下箭头 | |
# KP_Prior、KP_Page_Up 小键板上翻 | |
# KP_Next、KP_Page_Down 小键板下翻 | |
# KP_End 小键板末位 | |
# KP_Begin 小键板始位 | |
# KP_Insert 小键板插入 | |
# KP_Equal 小键板等于 | |
# KP_Multiply 小键板乘号 | |
# KP_Add 小键板加号 | |
# KP_Subtract 小键板减号 | |
# KP_Divide 小键板除号 | |
# KP_Decimal 小键板小数点 | |
# KP_0 小键板0 | |
# KP_1 小键板1 | |
# KP_2 小键板2 | |
# KP_3 小键板3 | |
# KP_4 小键板4 | |
# KP_5 小键板5 | |
# KP_6 小键板6 | |
# KP_7 小键板7 | |
# KP_8 小键板8 | |
# KP_9 小键板9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Squirrel settings | |
# encoding: utf-8 | |
# | |
# squirrel[.custom].yaml 是鼠须管的前端配置文件,小狼毫是 weasel[.custom].yaml | |
# 各平台皮肤配置并不一致。 | |
# | |
# 鼠须管内置皮肤展示: https://github.com/NavisLab/rime-pifu | |
# 鼠须管界面配置指南: https://github.com/LEOYoon-Tsaw/Rime_collections/blob/master/鼠鬚管介面配置指南.md | |
# 鼠须管作者写的图形化的皮肤设计器: https://github.com/LEOYoon-Tsaw/Squirrel-Designer | |
# 要比共享目录的同名文件的 config_version 大才可以生效 | |
config_version: '2024-11-04' # config_version: '1.0' | |
# options: last | default | _custom_ | |
# last: the last used latin keyboard layout | |
# default: US (ABC) keyboard layout | |
# _custom_: keyboard layout of your choice, e.g. 'com.apple.keylayout.USExtended' or simply 'USExtended' | |
keyboard_layout: last | |
# for veteran chord-typist | |
chord_duration: 0.1 # seconds | |
# options: always | never | appropriate | |
show_notifications_when: appropriate | |
# ascii_mode、inline、no_inline、vim_mode 等等设定 | |
# 可参考 /Library/Input Methods/Squirrel.app/Contents/SharedSupport/squirrel.yaml | |
app_options: | |
# com.apple.Spotlight: | |
# ascii_mode: true # 开启默认英文 | |
# com.microsoft.VSCode: | |
# ascii_mode: false # 关闭默认英文 | |
style: | |
# 选择皮肤,亮色与暗色主题 | |
color_scheme: pure | |
color_scheme_dark: pure | |
# 以下是预设选项。如果皮肤没写,则使用这些属性;如果皮肤写了,使用皮肤的。 | |
# 候选框与文字的排列方式 | |
candidate_list_layout: linear # stacked | linear 皮肤横竖排显示是调整这个 | |
text_orientation: horizontal # horizontal | vertical 文字方向 | |
# 拼音或词句是否显示在键入位置 | |
inline_preedit: true # true | false 键入码显示位置 | |
inline_candidate: false # true | false 选中词显示位置 | |
# Whether candidate panel stick to screen edge to reduce jumping | |
memorize_size: true | |
# Whether transparent colors stack on each other | |
mutual_exclusive: false | |
# Whether to use a translucent background. Only visible when background color is transparent | |
translucency: false | |
corner_radius: 7 | |
hilited_corner_radius: 0 | |
border_height: -2 | |
border_width: -2 | |
# Space between candidates in stacked layout | |
line_spacing: 5 | |
# Space between preedit and candidates in non-inline mode | |
spacing: 8 | |
# A number greater than 0 renders shadow around high-lighted candidate | |
shadow_size: 0 | |
# Controls non-hililighted candidate background size, relative to highlighted | |
# Nagetive means shrink, positive meas expand | |
#surrounding_extra_expansion: 0 | |
# format using %@ and %c is deprecated since 1.0, Squirrel 1.0 | |
# %@ is automatically expanded to "[candidate] [comment]" | |
# and %c is replaced by "[label]" | |
candidate_format: '[label]. [candidate] [comment]' # 候选项格式化 | |
# adjust the base line of text | |
#base_offset: 0 | |
font_face: 'Avenir' | |
font_point: 16 | |
#label_font_face: 'Avenir' | |
#label_font_point: 12 | |
#comment_font_face: 'Avenir' | |
#comment_font_point: 16 | |
# 皮肤列表 | |
preset_color_schemes: | |
# 对 purity_of_form 略微调整颜色,让色彩更柔和点,补全其他选项和注释 | |
purity_of_form_custom: | |
name: "純粹的形式/Purity of Form Custom" | |
author: 雨過之後、佛振 | |
# 如果将字体设置为 PingFangSC-Regular | |
# 会让 🈶🈚️🉑🈲🉐 这几个 Emoji 失去彩色效果,留空反而可以显示。。。 | |
font_face: "" # 字体及大小 | |
font_point: 18 | |
label_font_face: "Helvetica" # 序号字体及大小 | |
label_font_point: 12 | |
comment_font_face: "Helvetica" # 注字体及大小 | |
comment_font_point: 16 | |
# candidate_list_layout: stacked # 候选项排列方向 stacked(默认) | linear | |
# text_orientation: horizontal # 文字排列方向 horizontal(默认) | vertical | |
inline_preedit: true # 键入码(拼音)是否显示在键入位置 true | false | |
inline_candidate: false # 候选项(词句)是否显示在键入位置 true | false | |
translucency: false # 磨砂: true | false | |
mutual_exclusive: false # 色不叠加: true | false | |
border_height: 0 # 外边框 高 | |
border_width: 0 # 外边框 宽 | |
corner_radius: 10 # 外边框 圆角半径 | |
hilited_corner_radius: 0 # 选中框 圆角半径 | |
surrounding_extra_expansion: 0 # 候选项背景相对大小? | |
shadow_size: 0 # 阴影大小 | |
line_spacing: 5 # 行间距 | |
base_offset: 0 # 字基高 | |
alpha: 1 # 透明度,0~1 | |
spacing: 10 # 拼音与候选项之间的距离 (inline_preedit: false) | |
color_space: srgb # 色彩空间: srgb | display_p3 | |
back_color: 0x545554 # 底色 | |
hilited_candidate_back_color: 0xE3E3E3 # 选中底色 | |
label_color: 0xBBBBBB # 序号颜色 | |
hilited_candidate_label_color: 0x4C4C4C # 选中序号颜色 | |
candidate_text_color: 0xEEEEEE # 文字颜色 | |
hilited_candidate_text_color: 0x000000 # 选中文字颜色 | |
comment_text_color: 0x808080 # 注颜色 | |
hilited_comment_text_color: 0x808080 # 选中注颜色 | |
text_color: 0x808080 # 拼音颜色 (inline_preedit: false) | |
hilited_text_color: 0xEEEEEE # 选中拼音颜色 (inline_preedit: false) | |
# candidate_back_color: # 候选项底色 | |
# preedit_back_color: # 拼音底色 (inline_preedit: false) | |
# hilited_back_color: # 选中拼音底色 (inline_preedit: false) | |
# border_color: # 外边框颜色 | |
pure: | |
author: "riskers <[email protected]>" | |
font_point: 16 | |
font_face: "Microsoft YaHei Mono" | |
label_font_point: 16 | |
label_font_face: "Microsoft YaHei Mono" | |
label_color: 0xf2a45a #预选栏编号颜色 | |
back_color: 0xededed #背景颜色 | |
border_color: 0xededed | |
candidate_text_color: 0x787878 #非第一后选项文字颜色 | |
comment_text_color: 0xcccccc #注解文字颜色 | |
hilited_back_color: 0xededed | |
hilited_candidate_back_color: 0xededed #第一后选项背景颜色 | |
hilited_candidate_text_color: 0xff7d00 #第一后选项文字颜色 | |
hilited_comment_text_color: 0x00a5ea #注解文字高亮 | |
hilited_text_color: 0x787878 #拼音串高亮(需要开启内嵌编码) | |
text_color: 0xa5a5a5 #拼音串颜色(需要开启内嵌编码) | |
corner_radius: 5 | |
border_height: 8 | |
border_width: 8 | |
# 下面是内置的皮肤 https://github.com/rime/squirrel/blob/master/data/squirrel.yaml | |
native: | |
name: 系統配色 | |
aqua: | |
name: 碧水/Aqua | |
author: 佛振 <[email protected]> | |
text_color: 0x606060 | |
back_color: 0xeeeceeee | |
candidate_text_color: 0x000000 | |
hilited_text_color: 0x000000 | |
hilited_candidate_text_color: 0xffffff | |
hilited_candidate_back_color: 0xeefa3a0a | |
comment_text_color: 0x5a5a5a | |
hilited_comment_text_color: 0xfcac9d | |
azure: | |
name: 青天/Azure | |
author: 佛振 <[email protected]> | |
text_color: 0xcfa677 | |
candidate_text_color: 0xffeacc | |
back_color: 0xee8b4e01 | |
hilited_text_color: 0xffeacc | |
hilited_candidate_text_color: 0x7ffeff | |
hilited_candidate_back_color: 0x00000000 | |
comment_text_color: 0xc69664 | |
luna: | |
name: 明月/Luna | |
author: 佛振 <[email protected]> | |
text_color: 0xa5a5a5 | |
back_color: 0xdd000000 | |
candidate_text_color: 0xeceeee | |
hilited_text_color: 0x7fffff | |
hilited_candidate_text_color: 0x7fffff | |
hilited_candidate_back_color: 0x40000000 | |
comment_text_color: 0xa5a5a5 | |
hilited_comment_text_color: 0x449c9d | |
ink: | |
name: 墨池/Ink | |
author: 佛振 <[email protected]> | |
text_color: 0x5a5a5a | |
back_color: 0xeeffffff | |
candidate_text_color: 0x000000 | |
hilited_text_color: 0x000000 | |
#hilited_back_color: 0xdddddd | |
hilited_candidate_text_color: 0xffffff | |
hilited_candidate_back_color: 0xcc000000 | |
comment_text_color: 0x5a5a5a | |
hilited_comment_text_color: 0x808080 | |
lost_temple: | |
name: 孤寺/Lost Temple | |
author: 佛振 <[email protected]>, based on ir_black | |
text_color: 0xe8f3f6 | |
back_color: 0xee303030 | |
hilited_text_color: 0x82e6ca | |
hilited_candidate_text_color: 0x000000 | |
hilited_candidate_back_color: 0x82e6ca | |
comment_text_color: 0xbb82e6ca | |
hilited_comment_text_color: 0xbb203d34 | |
dark_temple: | |
name: 暗堂/Dark Temple | |
author: 佛振 <[email protected]>, based on ir_black | |
text_color: 0x92f6da | |
back_color: 0x222222 | |
candidate_text_color: 0xd8e3e6 | |
hilited_text_color: 0xffcf9a | |
hilited_back_color: 0x222222 | |
hilited_candidate_text_color: 0x92f6da | |
hilited_candidate_back_color: 0x10000000 # 0x333333 | |
comment_text_color: 0x606cff | |
psionics: | |
name: 幽能/Psionics | |
author: 雨過之後、佛振 | |
text_color: 0xc2c2c2 | |
back_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: 0xd4bc00 | |
comment_text_color: 0x808080 | |
hilited_comment_text_color: 0x444444 | |
purity_of_form: | |
name: 純粹的形式/Purity of Form | |
author: 雨過之後、佛振 | |
text_color: 0xc2c2c2 | |
back_color: 0x444444 | |
candidate_text_color: 0xeeeeee | |
hilited_text_color: 0xeeeeee | |
hilited_back_color: 0x444444 | |
hilited_candidate_text_color: 0x000000 | |
hilited_candidate_back_color: 0xfafafa | |
comment_text_color: 0x808080 | |
purity_of_essence: | |
name: 純粹的本質/Purity of Essence | |
author: 佛振 | |
text_color: 0x2c2ccc | |
back_color: 0xfafafa | |
candidate_text_color: 0x000000 | |
hilited_text_color: 0x000000 | |
hilited_back_color: 0xfafafa | |
hilited_candidate_text_color: 0xeeeeee | |
hilited_candidate_back_color: 0x444444 | |
comment_text_color: 0x808080 | |
starcraft: | |
name: 星際我爭霸/StarCraft | |
author: Contralisk <[email protected]>, original artwork by Blizzard Entertainment | |
text_color: 0xccaa88 | |
candidate_text_color: 0x30bb55 | |
back_color: 0xee000000 | |
border_color: 0x1010a0 | |
hilited_text_color: 0xfecb96 | |
hilited_back_color: 0x000000 | |
hilited_candidate_text_color: 0x70ffaf | |
hilited_candidate_back_color: 0x00000000 | |
comment_text_color: 0x1010d0 | |
hilited_comment_text_color: 0x1010f0 | |
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 #第一候选项背景 | |
comment_text_color: 0x6D6D6D #注解文字 | |
hilited_comment_text_color: 0xEBC6B0 #注解文字高亮 | |
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: 0x8236d3 | |
hilited_text_color: 0x98a12a | |
candidate_text_color: 0x969483 | |
comment_text_color: 0xc098a12a | |
hilited_candidate_text_color: 0xffffff | |
hilited_candidate_back_color: 0x8236d3 | |
hilited_comment_text_color: 0x362b00 | |
clean_white: | |
name: 简约白/Clean White | |
author: Chongyu Zhu <[email protected]>, based on 搜狗「简约白」 | |
candidate_list_layout: linear | |
candidate_format: '%c %@' | |
corner_radius: 6 | |
border_height: 6 | |
border_width: 6 | |
font_point: 16 | |
label_font_point: 12 | |
label_color: 0x888888 | |
text_color: 0x808080 | |
hilited_text_color: 0x000000 | |
candidate_text_color: 0x000000 | |
comment_text_color: 0x808080 | |
back_color: 0xeeeeee | |
hilited_candidate_label_color: 0xa0c98915 | |
hilited_candidate_text_color: 0xc98915 | |
hilited_candidate_back_color: 0xeeeeee | |
apathy: | |
name: 冷漠/Apathy | |
author: LIANG Hai | |
candidate_list_layout: linear # 水平排列 | |
inline_preedit: true #单行显示,false双行显示 | |
candidate_format: "%c\u2005%@\u2005" # 编号 %c 和候选词 %@ 前后的空间 | |
corner_radius: 5 #候选条圆角 | |
border_height: 0 | |
border_width: 0 | |
back_color: 0xFFFFFF #候选条背景色 | |
font_face: "PingFangSC-Regular,HanaMinB" #候选词字体 | |
font_point: 16 #候选字词大小 | |
text_color: 0x424242 #高亮选中词颜色 | |
label_font_face: "STHeitiSC-Light" #候选词编号字体 | |
label_font_point: 12 #候选编号大小 | |
hilited_candidate_text_color: 0xEE6E00 #候选文字颜色 | |
hilited_candidate_back_color: 0xFFF0E4 #候选文字背景色 | |
comment_text_color: 0x999999 #拼音等提示文字颜色 | |
dust: | |
name: 浮尘/Dust | |
author: Superoutman <[email protected]> | |
candidate_list_layout: linear # 水平排列 | |
inline_preedit: true #单行显示,false双行显示 | |
candidate_format: "%c\u2005%@\u2005" # 用 1/6 em 空格 U+2005 来控制编号 %c 和候选词 %@ 前后的空间。 | |
corner_radius: 2 #候选条圆角 | |
border_height: 3 # 窗口边界高度,大于圆角半径才生效 | |
border_width: 8 # 窗口边界宽度,大于圆角半径才生效 | |
back_color: 0xeeffffff #候选条背景色 | |
border_color: 0xE0B693 # 边框色 | |
font_face: "HYQiHei-55S Book,HanaMinA Regular" #候选词字体 | |
font_point: 14 #候选字词大小 | |
label_font_face: "SimHei" #候选词编号字体 | |
label_font_point: 10 #候选编号大小 | |
label_color: 0xcbcbcb # 预选栏编号颜色 | |
candidate_text_color: 0x555555 # 预选项文字颜色 | |
text_color: 0x424242 # 拼音行文字颜色,24位色值,16进制,BGR顺序 | |
comment_text_color: 0x999999 # 拼音等提示文字颜色 | |
hilited_text_color: 0x9e9e9e # 高亮拼音 (需要开启内嵌编码) | |
hilited_candidate_text_color: 0x000000 # 第一候选项文字颜色 | |
hilited_candidate_back_color: 0xfff0e4 # 第一候选项背景背景色 | |
hilited_candidate_label_color: 0x555555 # 第一候选项编号颜色 | |
hilited_comment_text_color: 0x9e9e9e # 注解文字高亮 | |
mojave_dark: | |
name: 沙漠夜/Mojave Dark | |
author: xiehuc <[email protected]> | |
candidate_list_layout: linear # 水平排列 | |
inline_preedit: true # 单行显示,false双行显示 | |
candidate_format: "%c\u2005%@" # 用 1/6 em 空格 U+2005 来控制编号 %c 和候选词 %@ 前后的空间。 | |
corner_radius: 5 # 候选条圆角 | |
hilited_corner_radius: 3 # 高亮圆角 | |
border_height: 6 # 窗口边界高度,大于圆角半径才生效 | |
border_width: 6 # 窗口边界宽度,大于圆角半径才生效 | |
font_face: "PingFangSC" # 候选词字体 | |
font_point: 16 # 候选字词大小 | |
label_font_point: 14 # 候选编号大小 | |
text_color: 0xdedddd # 拼音行文字颜色,24位色值,16进制,BGR顺序 | |
back_color: 0x252320 # 候选条背景色 | |
label_color: 0x888785 # 预选栏编号颜色 | |
border_color: 0x020202 # 边框色 | |
candidate_text_color: 0xdedddd # 预选项文字颜色 | |
hilited_text_color: 0xdedddd # 高亮拼音 (需要开启内嵌编码) | |
hilited_back_color: 0x252320 # 高亮拼音 (需要开启内嵌编码) | |
hilited_candidate_text_color: 0xffffff # 第一候选项文字颜色 | |
hilited_candidate_back_color: 0xcb5d00 # 第一候选项背景背景色 | |
hilited_candidate_label_color: 0xffffff # 第一候选项编号颜色 | |
comment_text_color: 0xdedddd # 拼音等提示文字颜色 | |
#hilited_comment_text_color: 0xdedddd # 注解文字高亮 | |
solarized_light: | |
name: 曬經・日/Solarized Light | |
author: 雪齋 <[email protected]> | |
color_space: display_p3 # Only available on macOS 10.12+ | |
back_color: 0xF0E5F6FB #Lab 97 , 0 , 10 | |
border_color: 0xEDFFFF #Lab 100, 0 , 10 | |
preedit_back_color: 0x403516 #Lab 20 ,-12,-12 | |
#candidate_back_color: 0x403516 #Lab 20 ,-12,-12 | |
candidate_text_color: 0x595E00 #Lab 35 ,-35,-5 | |
label_color: 0xA36407 #Lab 40 ,-10,-45 | |
comment_text_color: 0x005947 #Lab 35 ,-20, 65 | |
text_color: 0xA1A095 #Lab 65 ,-5 ,-2 | |
hilited_back_color: 0x4C4022 #Lab 25 ,-12,-12 | |
hilited_candidate_back_color: 0xD7E8ED #Lab 92 , 0 , 10 | |
hilited_candidate_text_color: 0x3942CB #Lab 50 , 65, 45 | |
hilited_candidate_label_color: 0x2566C6 #Lab 55 , 45, 65 | |
hilited_comment_text_color: 0x8144C2 #Lab 50 , 65,-5 | |
hilited_text_color: 0x2C8BAE #Lab 60 , 10, 65 | |
solarized_dark: | |
name: 曬經・月/Solarized Dark | |
author: 雪齋 <[email protected]> | |
back_color: 0xF0352A0A #Lab 15 ,-12,-12 | |
border_color: 0x2A1F00 #Lab 10 ,-12,-12 | |
preedit_back_color: 0xD7E8ED #Lab 92 , 0 , 10 | |
#candidate_back_color: 0xD7E8ED #Lab 92 , 0 , 10 | |
candidate_text_color: 0x7389FF #Lab 75 , 65, 45 | |
label_color: 0x478DF4 #Lab 70 , 45, 65 | |
comment_text_color: 0xC38AFF #Lab 75 , 65,-5 | |
text_color: 0x756E5D #Lab 45 ,-7 ,-7 | |
hilited_back_color: 0xC9DADF #Lab 87 , 0 , 10 | |
hilited_candidate_back_color: 0x403516 #Lab 20 ,-12,-12 | |
hilited_candidate_text_color: 0x989F52 #Lab 60 ,-35,-5 | |
hilited_candidate_label_color: 0xCC8947 #Lab 55 ,-10,-45 | |
hilited_comment_text_color: 0x289989 #Lab 60 ,-20, 65 | |
hilited_text_color: 0xBE706D #Lab 50 , 15,-45 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment