├── LICENSE ├── Nord-Dark ├── arrow.png ├── radio.png └── theme.conf ├── Nord-Light ├── arrow.png ├── radio.png └── theme.conf └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Tony Fettes 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 | -------------------------------------------------------------------------------- /Nord-Dark/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayamir/fcitx5-nord/e1cca8652aa8a4e09d74ff7e0d53f057aa1a4c46/Nord-Dark/arrow.png -------------------------------------------------------------------------------- /Nord-Dark/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayamir/fcitx5-nord/e1cca8652aa8a4e09d74ff7e0d53f057aa1a4c46/Nord-Dark/radio.png -------------------------------------------------------------------------------- /Nord-Dark/theme.conf: -------------------------------------------------------------------------------- 1 | # vim: ft=dosini 2 | [Metadata] 3 | Name=Nord-Dark 4 | Version=0.1 5 | Author=tonyfettes 6 | Description=Nord Color Theme (Dark) 7 | ScaleWithDPI=True 8 | 9 | [InputPanel] 10 | # 字体 11 | Font=Sans 13 12 | # 非选中候选字颜色 13 | NormalColor=#81a1c1 14 | # 选中候选字颜色 15 | HighlightCandidateColor=#88c0d0 16 | # 高亮前景颜色(输入字符颜色) 17 | HighlightColor=#88c0d0 18 | # 输入字符背景颜色 19 | HighlightBackgroundColor=#434c5e 20 | # 21 | Spacing=3 22 | 23 | [InputPanel/TextMargin] 24 | # 候选字对左边距 25 | Left=10 26 | # 候选字对右边距 27 | Right=10 28 | # 候选字向上边距 29 | Top=6 30 | # 候选字向下边距 31 | Bottom=6 32 | 33 | [InputPanel/Background] 34 | Color=#434c5e 35 | 36 | [InputPanel/Background/Margin] 37 | Left=2 38 | Right=2 39 | Top=2 40 | Bottom=2 41 | 42 | [InputPanel/Highlight] 43 | Color=#4c566a 44 | 45 | [InputPanel/Highlight/Margin] 46 | # 高亮区域左边距 47 | Left=10 48 | # 高亮区域右边距 49 | Right=10 50 | # 高亮区域上边距 51 | Top=7 52 | # 高亮区域下边距 53 | Bottom=7 54 | 55 | [Menu] 56 | Font=Sans 10 57 | NormalColor=#eceff4 58 | #HighlightColor=#4c566a 59 | Spacing=3 60 | 61 | [Menu/Background] 62 | Color=#434c5e 63 | 64 | [Menu/Background/Margin] 65 | Left=2 66 | Right=2 67 | Top=2 68 | Bottom=2 69 | 70 | [Menu/ContentMargin] 71 | Left=2 72 | Right=2 73 | Top=2 74 | Bottom=2 75 | 76 | [Menu/Highlight] 77 | Color=#4c566a 78 | 79 | [Menu/Highlight/Margin] 80 | Left=10 81 | Right=10 82 | Top=5 83 | Bottom=5 84 | 85 | [Menu/Separator] 86 | Color=#2e3440 87 | 88 | [Menu/CheckBox] 89 | Image=radio.png 90 | 91 | [Menu/SubMenu] 92 | Image=arrow.png 93 | 94 | [Menu/TextMargin] 95 | Left=5 96 | Right=5 97 | Top=5 98 | Bottom=5 99 | -------------------------------------------------------------------------------- /Nord-Light/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayamir/fcitx5-nord/e1cca8652aa8a4e09d74ff7e0d53f057aa1a4c46/Nord-Light/arrow.png -------------------------------------------------------------------------------- /Nord-Light/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayamir/fcitx5-nord/e1cca8652aa8a4e09d74ff7e0d53f057aa1a4c46/Nord-Light/radio.png -------------------------------------------------------------------------------- /Nord-Light/theme.conf: -------------------------------------------------------------------------------- 1 | # vim: ft=dosini 2 | [Metadata] 3 | Name=Nord-Light 4 | Version=0.1 5 | Author=MiraculousMoon 6 | Description=Nord Color Theme (Light) 7 | ScaleWithDPI=True 8 | 9 | [InputPanel] 10 | # 字体 11 | Font=Sans 13 12 | # 非选中候选字颜色 13 | NormalColor=#81a1c1 14 | # 选中候选字颜色 15 | HighlightCandidateColor=#5e81ac 16 | # 高亮前景颜色(输入字符颜色) 17 | HighlightColor=#5e81ac 18 | # 输入字符背景颜色 19 | HighlightBackgroundColor=#eceff4 20 | # 21 | Spacing=3 22 | 23 | [InputPanel/TextMargin] 24 | # 候选字对左边距 25 | Left=10 26 | # 候选字对右边距 27 | Right=10 28 | # 候选字向上边距 29 | Top=6 30 | # 候选字向下边距 31 | Bottom=6 32 | 33 | [InputPanel/Background] 34 | Color=#e5e9f0 35 | 36 | [InputPanel/Background/Margin] 37 | Left=2 38 | Right=2 39 | Top=2 40 | Bottom=2 41 | 42 | [InputPanel/Highlight] 43 | Color=#d8dee9 44 | 45 | [InputPanel/Highlight/Margin] 46 | # 高亮区域左边距 47 | Left=10 48 | # 高亮区域右边距 49 | Right=10 50 | # 高亮区域上边距 51 | Top=7 52 | # 高亮区域下边距 53 | Bottom=7 54 | 55 | [Menu] 56 | Font=Sans 10 57 | NormalColor=#2e3440 58 | #HighlightColor=#4c566a 59 | Spacing=3 60 | 61 | [Menu/Background] 62 | Color=#d8dee9 63 | 64 | [Menu/Background/Margin] 65 | Left=2 66 | Right=2 67 | Top=2 68 | Bottom=2 69 | 70 | [Menu/ContentMargin] 71 | Left=2 72 | Right=2 73 | Top=2 74 | Bottom=2 75 | 76 | [Menu/Highlight] 77 | Color=#4c566a 78 | 79 | [Menu/Highlight/Margin] 80 | Left=10 81 | Right=10 82 | Top=5 83 | Bottom=5 84 | 85 | [Menu/Separator] 86 | Color=#2e3440 87 | 88 | [Menu/CheckBox] 89 | Image=radio.png 90 | 91 | [Menu/SubMenu] 92 | Image=arrow.png 93 | 94 | [Menu/TextMargin] 95 | Left=5 96 | Right=5 97 | Top=5 98 | Bottom=5 99 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fcitx5-nord 2 | 3 | Fcitx5 theme based on Nord color. 4 | 5 | ## Screenshot 6 | 7 | ![Dark Variant](https://user-images.githubusercontent.com/29998228/127147288-372b2a8b-59ff-47be-9f60-274b12361c8c.png) 8 | ![Light Variant](https://user-images.githubusercontent.com/29998228/127147303-256c017a-9efa-45fd-b514-48488ec3f5f9.png) 9 | 10 | ## Usage 11 | 12 | ### Installation 13 | 14 | ```sh 15 | git clone https://github.com/tonyfettes/fcitx5-nord.git 16 | mkdir -p ~/.local/share/fcitx5/themes/ 17 | cd fcitx5-nord 18 | cp -r Nord-Dark/ Nord-Light/ ~/.local/share/fcitx5/themes/ 19 | ``` 20 | 21 | ### Enabling 22 | 23 | In `~/.config/fcitx5/conf/classicui.conf`, change the `Theme` line as 24 | 25 | ```dosini 26 | Theme=Nord-Dark 27 | # or 28 | Theme=Nord-Light 29 | ``` 30 | 31 | Then restart fcitx5 to apply the theme. 32 | 33 | ```sh 34 | fcitx5 -r 35 | ``` 36 | --------------------------------------------------------------------------------