├── .docsify ├── _sidebar.md └── index.html ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── enhance-deps-pr.yml │ ├── patch.yml │ └── sync.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── config ├── ClashForWindows │ ├── cfw-settings.yaml │ ├── mixin.yaml │ └── parser.yaml ├── Microsoft.PowerShell_profile.ps1 ├── Notepad3 │ ├── Notepad3.ini │ ├── register-right-click-menu.reg │ └── themes │ │ ├── Dark.ini │ │ ├── Notepad3_Absinthe.ini │ │ ├── Notepad3_Dracula.ini │ │ ├── Notepad3_ICEBERG.ini │ │ ├── Notepad3_Solarized Dark.ini │ │ ├── Notepad3_Solarized Light.ini │ │ ├── Notepad3_Solarized.ini │ │ ├── Notepad3_Tomorrow Night Blue.ini │ │ ├── Notepad3_Tomorrow Night Bright.ini │ │ ├── Notepad3_Tomorrow Night Eighties.ini │ │ ├── Notepad3_Tomorrow Night.ini │ │ ├── Notepad3_Tomorrow.ini │ │ ├── Notepad3_ayu Dark.ini │ │ ├── Notepad3_ayu Light.ini │ │ ├── Notepad3_ayu Mirage.ini │ │ ├── Notepad3_gruvbox Dark Hard.ini │ │ ├── Notepad3_gruvbox Dark Soft.ini │ │ ├── Notepad3_gruvbox Dark.ini │ │ ├── Notepad3_gruvbox Light Hard.ini │ │ ├── Notepad3_gruvbox Light Soft.ini │ │ ├── Notepad3_gruvbox Light.ini │ │ ├── Obsidian.ini │ │ └── README.md ├── README.md ├── SumatraPDF.txt ├── TrafficMonitor │ ├── config-common.png │ ├── config-main.png │ ├── config-task.png │ ├── config.ini │ ├── global_cfg.ini │ └── skin │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini ├── cmd_init.bat ├── memreduct.ini ├── neatdownloadmanager.json ├── pakku.json ├── saladict.json ├── snipaste.ini ├── stylus.json ├── tampermonkey.zip ├── translucenttb.cfg └── v2rayN.txt ├── docs ├── windows-applications.md ├── windows-system-reinstallation-applications.md └── windows-tools.md ├── init.js ├── package-lock.json ├── package.json └── server └── .nojekyll /.docsify/_sidebar.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | * [首页](README.md) 4 | * [必备应用列表](windows-applications.md) 5 | * [重装应用列表](windows-system-reinstallation-applications.md) 6 | * [普通工具列表](windows-tools.md) 7 | * [个人配置说明](config.md) -------------------------------------------------------------------------------- /.docsify/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 个人常用软件集合 6 | 7 | 8 | 9 | 10 | 11 | 12 |
网页正在努力加载……
13 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | # Maintain dependencies for GitHub Actions 4 | - package-ecosystem: 'github-actions' 5 | directory: '/' 6 | schedule: 7 | interval: 'daily' 8 | assignees: 9 | - 'yi-Xu-0100' 10 | # Maintain dependencies for npm 11 | - package-ecosystem: npm 12 | directory: '/' 13 | schedule: 14 | interval: daily 15 | assignees: 16 | - 'yi-Xu-0100' 17 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: build 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | deploy: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout code 13 | uses: actions/checkout@v3 14 | 15 | - name: Move docsify configuration 16 | run: | 17 | node init.js 18 | 19 | - name: Deploy 20 | uses: peaceiris/actions-gh-pages@v3.9.3 21 | with: 22 | github_token: ${{ secrets.GITHUB_TOKEN }} 23 | publish_dir: ./server 24 | user_name: 'github-actions[bot]' 25 | user_email: 'github-actions[bot]@users.noreply.github.com' 26 | full_commit_message: ${{ github.event.head_commit.message }} 27 | -------------------------------------------------------------------------------- /.github/workflows/enhance-deps-pr.yml: -------------------------------------------------------------------------------- 1 | name: 'enhance deps PR' 2 | 3 | on: 4 | pull_request_target: 5 | types: [labeled] 6 | 7 | env: 8 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 9 | 10 | jobs: 11 | run: 12 | name: enhance deps PR 13 | runs-on: ubuntu-latest 14 | if: contains(github.event.pull_request.labels.*.name, 'dependencies') 15 | steps: 16 | - name: Checkout code 17 | uses: actions/checkout@v3 18 | with: 19 | ref: ${{ github.head_ref }} 20 | fetch-depth: 0 21 | 22 | - name: Echo PR information 23 | run: | 24 | echo "[info] PR number: ${{ github.event.pull_request.number }}" 25 | echo "[info] PR title: ${{ github.event.pull_request.title }}" 26 | echo "[info] head ref: ${{ github.head_ref }}" 27 | 28 | - name: Check PR context 29 | id: check 30 | run: | 31 | echo "${{ github.event.pull_request.title }}" | \ 32 | sed -e "s/^chore.*: \(.*\)/\1/" | \ 33 | sed -e "s/^/chore(deps): ⬆️ /" | \ 34 | xargs echo "::set-output name=title::$1" 35 | git log --pretty=format:"%b" -1 | \ 36 | xargs echo "::set-output name=body::$1" 37 | 38 | - name: Enhance PR title 39 | env: 40 | number: ${{ github.event.pull_request.number }} 41 | title: ${{ steps.check.outputs.title }} 42 | run: | 43 | gh pr edit ${{ env.number }} --title "${{ env.title }}" 44 | 45 | - name: Enhance PR commit message 46 | env: 47 | number: ${{ github.event.pull_request.number }} 48 | title: ${{ steps.check.outputs.title }} 49 | body: ${{ steps.check.outputs.body }} 50 | run: | 51 | git config --global user.name 'github-actions[bot]' 52 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 53 | git commit --amend -m "${{ env.title }}" -m "${{ env.body }}" 54 | git push -f 55 | -------------------------------------------------------------------------------- /.github/workflows/patch.yml: -------------------------------------------------------------------------------- 1 | name: patch 2 | # version: 1.0.0 3 | # author: [yiXu](https://github.com/yi-Xu-0100) 4 | # guide: [yi-Xu-0100/hub-mirror](https://github.com/yi-Xu-0100/hub-mirror) 5 | # template: [patch.yml](https://github.com/yi-Xu-0100/hub-mirror/blob/main/template/patch.yml) 6 | # lastmod: 2020-12-30 21:58:51 7 | 8 | on: 9 | workflow_dispatch: 10 | inputs: 11 | repo: 12 | description: 'Directory need to delete' 13 | required: false 14 | default: 'Application-Lists' 15 | 16 | jobs: 17 | run: 18 | name: Delete the wrong cache directory 19 | runs-on: ubuntu-latest 20 | steps: 21 | - name: Checkout source code 22 | uses: actions/checkout@v3 23 | 24 | - name: Get repo and time 25 | id: info 26 | uses: actions/github-script@v6 27 | with: 28 | result-encoding: string 29 | script: | 30 | core.setOutput('time', new Date(Date.now()).toISOString().replace(/[^0-9]/g, "")); 31 | core.setOutput('key', `${context.repo.owner}-${context.repo.repo}`); 32 | return context.repo.repo; 33 | 34 | - name: Cache src repos 35 | uses: actions/cache@v3 36 | id: cache 37 | with: 38 | path: ${{ github.workspace }}/hub-mirror-cache 39 | key: ${{ runner.os }}-${{ steps.info.outputs.key }}-cache-${{ steps.info.outputs.time }} 40 | restore-keys: ${{ runner.os }}-${{ steps.info.outputs.key }}-cache- 41 | 42 | - name: Delete the wrong cache directory 43 | run: | 44 | cd ${{ github.workspace }}/hub-mirror-cache/ 45 | ls -la ./ 46 | rm -rf ${{ github.event.inputs.repo }}/ 47 | 48 | - name: Print cache path 49 | run: | 50 | ls -la ${{ github.workspace }}/hub-mirror-cache 51 | -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- 1 | name: sync 2 | # version: 1.3.0 3 | # author: [yiXu](https://github.com/yi-Xu-0100) 4 | # guide: [yi-Xu-0100/hub-mirror](https://github.com/yi-Xu-0100/hub-mirror) 5 | # template: [sync2gitee.cached.yml](https://github.com/yi-Xu-0100/hub-mirror/blob/main/template/sync2gitee.cached.yml) 6 | # lastmod: 2020-12-10 09:24:45 7 | on: 8 | workflow_dispatch: 9 | 10 | jobs: 11 | run: 12 | name: Sync GitHub to Gitee(Cached) 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Checkout code 16 | uses: actions/checkout@v3 17 | 18 | - name: Get repo and time 19 | id: info 20 | uses: actions/github-script@v6 21 | with: 22 | result-encoding: string 23 | script: | 24 | core.setOutput('time', new Date(Date.now()).toISOString().replace(/[^0-9]/g, "")); 25 | core.setOutput('key', `${context.repo.owner}-${context.repo.repo}`); 26 | return context.repo.repo; 27 | 28 | - name: Cache src repos 29 | uses: actions/cache@v3 30 | id: cache 31 | with: 32 | path: ${{ github.workspace }}/hub-mirror-cache 33 | key: ${{ runner.os }}-${{ steps.info.outputs.key }}-cache-${{ steps.info.outputs.time }} 34 | restore-keys: ${{ runner.os }}-${{ steps.info.outputs.key }}-cache- 35 | 36 | - name: Mirror the GitHub repos to Gitee with cache 37 | uses: Yikun/hub-mirror-action@v1.2 38 | with: 39 | src: github/yi-Xu-0100 40 | dst: gitee/yiXu0100 41 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} 42 | dst_token: ${{ secrets.GITEE_TOKEN }} 43 | static_list: '${{ steps.info.outputs.result }}' 44 | cache_path: /github/workspace/hub-mirror-cache 45 | account_type: user 46 | force_update: true 47 | 48 | - name: Print cache path 49 | run: | 50 | ls -la ${{ github.workspace }}/hub-mirror-cache 51 | 52 | - name: Build Gitee Pages 53 | uses: yanglbme/gitee-pages-action@v1.4.1 54 | with: 55 | gitee-username: yiXu0100 56 | gitee-password: ${{ secrets.GITEE_PASSWORD }} 57 | gitee-repo: yiXu0100/${{ steps.info.outputs.result }} 58 | branch: gh-pages 59 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | server/** 3 | !server/.nojekyll 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx --no-install lint-staged -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.1.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .docsify/_sidebar.md 2 | docs/_sidebar.md -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | // .prettierrc.js 2 | module.exports = { 3 | // max 120 characters per line 4 | printWidth: 120, 5 | // use 2 spaces for indentation 6 | tabWidth: 2, 7 | // use spaces instead of indentations 8 | useTabs: false, 9 | // semicolon at the end of the line 10 | semi: true, 11 | // use single quotes 12 | singleQuote: true, 13 | // object's key is quoted only when necessary 14 | quoteProps: 'as-needed', 15 | // use double quotes instead of single quotes in jsx 16 | jsxSingleQuote: false, 17 | // no comma at the end 18 | trailingComma: 'all', 19 | // spaces are required at the beginning and end of the braces 20 | bracketSpacing: true, 21 | // end tag of jsx need to wrap 22 | jsxBracketSameLine: false, 23 | // brackets are required for arrow function parameter, even when there is only one parameter 24 | arrowParens: 'always', 25 | // format the entire contents of the file 26 | rangeStart: 0, 27 | rangeEnd: Infinity, 28 | // no need to write the beginning @prettier of the file 29 | requirePragma: false, 30 | // No need to automatically insert @prettier at the beginning of the file 31 | insertPragma: false, 32 | // use default break criteria 33 | proseWrap: 'preserve', 34 | // decide whether to break the html according to the display style 35 | htmlWhitespaceSensitivity: 'css', 36 | // vue files script and style tags indentation 37 | vueIndentScriptAndStyle: false, 38 | // lf for newline 39 | endOfLine: 'lf', 40 | // formats quoted code embedded 41 | embeddedLanguageFormatting: 'auto', 42 | }; 43 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": [ 3 | "Revo", 4 | "Snipaste", 5 | "altium", 6 | "clashforwindows", 7 | "geekuninstaller", 8 | "geoip", 9 | "grammarly", 10 | "ipcidr", 11 | "languagetool", 12 | "maboroshin", 13 | "manhuabudang", 14 | "memreduct", 15 | "memreductini", 16 | "menifest", 17 | "menureg", 18 | "msftconnecttest", 19 | "msftncsi", 20 | "neatdownloadmanager", 21 | "neatdownloadmanagerjson", 22 | "pakku", 23 | "pakkujson", 24 | "phicomm", 25 | "prismjs", 26 | "rayntxt", 27 | "redir", 28 | "rubyfish", 29 | "saladict", 30 | "snipasteini", 31 | "stylusjson", 32 | "subconverter", 33 | "sumatrapdftxt", 34 | "tampermonkeyzip", 35 | "trafficmonitor" 36 | ], 37 | "cSpell.ignoreWords": [ 38 | "arfv", 39 | "initbat", 40 | "microsoftpowershell", 41 | "peaceiris", 42 | "profileps", 43 | "yanglbme", 44 | "wekyb", 45 | "bbwe" 46 | ] 47 | } 48 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020-2022 yi_Xu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Application lists 2 | 3 | 个人使用的应用程序列表,备用和备忘。 4 | 5 | 点击[**此处**](https://github.yixuju.cn/Application-Lists)中查看在线内容~ 6 | 7 | ## windows 必备应用列表 8 | 9 | [**windows 必备应用列表**](https://github.yixuju.cn/Application-Lists/#/windows-applications)是个人重装电脑后会安装的应用。 10 | 11 | ## windows 重装应用列表 12 | 13 | [**windows 重装应用列表**](https://github.yixuju.cn/Application-Lists/#/windows-system-reinstallation-applications)主要集中在可用性上,以最小使用单位为主,没有必要的应用不会添加。 14 | 15 | ## windows 普通工具列表 16 | 17 | [**windows 普通工具列表**](https://github.yixuju.cn/Application-Lists/#/windows-tools)中主要包含不常用的工具或者可选择安装的应用。 18 | 19 | ## License 20 | 21 | - [MIT](https://github.com/yi-Xu-0100/Application-Lists/blob/main/LICENSE) 22 | -------------------------------------------------------------------------------- /config/ClashForWindows/cfw-settings.yaml: -------------------------------------------------------------------------------- 1 | proxyOrder: 0 2 | profileParsersText: | 3 | parsers: 4 | # - reg: .*www\.example\.com.*$ 5 | # - reg: .*example.*q=subscription$ 6 | - reg: ^((?!www\.example\.com).)*$ 7 | file: 'D:/Applications/cfw-scripts/scripts/change-keys.js' 8 | - reg: ^((?!www\.example\.com).)*$ 9 | file: 'D:/Applications/cfw-scripts/scripts/change-rules.js' 10 | - reg: ^((?!www\.example\.com).)*$ 11 | file: 'D:/Applications/cfw-scripts/scripts/merge-nodes.js' 12 | - reg: ^((?!www\.example\.com).)*$ 13 | file: 'D:/Applications/cfw-scripts/scripts/change-rules.yml' 14 | - reg: ^((?!www\.example\.com).)*$ 15 | file: 'D:/Applications/cfw-scripts/scripts/subs-info-parser.js' 16 | - reg: ^((?!www\.example\.com).)*$ 17 | file: 'D:/Applications/cfw-scripts/scripts/auto-check-in.js' 18 | selectAfterUpdated: false 19 | profilePath: '%HOMEPATH%\.config\clash\profiles' # 此处需要更改!!! 20 | headersText: | 21 | headers: # object 22 | mixinCode: |- 23 | module.exports.parse = ({ content, name, url }, { axios, yaml, notify }) => { 24 | const extra = { 25 | dns: { 26 | enable: true, 27 | listen: ':53', 28 | nameserver: ['8.8.8.8'] 29 | } 30 | } 31 | return { ...content, ...extra } 32 | } 33 | mixinText: |+ 34 | mixin: # object 35 | hosts: 36 | 'phicomm.me': 192.168.2.1 37 | dns: 38 | enable: true 39 | ipv6: false 40 | listen: 0.0.0.0:53 41 | enhanced-mode: redir-host 42 | use-hosts: true 43 | fake-ip-filter: 44 | - 'dns.msftncsi.com' 45 | - 'www.msftncsi.com' 46 | - 'www.msftconnecttest.com' 47 | - '+.qq.com' 48 | - '+.music.163.com' 49 | - '+.music.162.com' 50 | default-nameserver: 51 | - 119.29.29.29 52 | - 114.114.114.114 53 | - 8.8.8.8 54 | nameserver: 55 | - 119.29.29.29 56 | - 223.5.5.5 57 | - 8.8.8.8 58 | - 1.1.1.1 59 | fallback: 60 | - 'https://1.1.1.1/dns-query' 61 | - 'https://162.159.36.1/dns-query' 62 | - 'https://162.14.13.12/dns-query' 63 | - 'tls://dns.rubyfish.cn:853' 64 | - 'tls://1.0.0.1:853' 65 | - 'tls://dns.google:853' 66 | fallback-filter: 67 | geoip: true 68 | ipcidr: 69 | - 0.0.0.0/32 70 | - 127.0.0.0/8 71 | - 240.0.0.0/4 72 | 73 | showNotifications: true 74 | theme: 0 75 | systemTheme: true 76 | latencyUrl: http://www.gstatic.com/generate_204 77 | connProxy: 0 78 | connProfile: true 79 | connMode: false 80 | connKeepOld: false 81 | bypassText: | 82 | bypass: 83 | - localhost 84 | - 127.* 85 | - 10.* 86 | - 172.16.* 87 | - 172.17.* 88 | - 172.18.* 89 | - 172.19.* 90 | - 172.20.* 91 | - 172.21.* 92 | - 172.22.* 93 | - 172.23.* 94 | - 172.24.* 95 | - 172.25.* 96 | - 172.26.* 97 | - 172.27.* 98 | - 172.28.* 99 | - 172.29.* 100 | - 172.30.* 101 | - 172.31.* 102 | - 192.168.* 103 | - 104 | mixinType: 0 105 | interfaceName: 以太网 106 | showNewVersionIcon: true 107 | systemProxyTypeIndex: 0 108 | pacContentText: |- 109 | var host = "127.0.0.1:7890"; 110 | var Socks5 = "SOCKS5 " + host +"; "; 111 | var Proxy = "PROXY " + host +"; "; 112 | var Direct = "DIRECT; "; 113 | function FindProxyForURL(url, host) { 114 | return Socks5 + Proxy + Direct; 115 | } 116 | shortcutSystemProxy: '' 117 | shortcutMixin: '' 118 | editor: 1 119 | showProxyFilter: true 120 | shortcutGlobalMode: '' 121 | shortcutRuleMode: '' 122 | hideAfterStartup: true 123 | proxyItemWidth: '' 124 | childProcessText: |- 125 | processes: # array 126 | - command: subconverter.exe # 程序名称 127 | options: 128 | cwd: D:\Applications\subconverter # 子进程工作目录 129 | windowsHide: false 130 | randomControllerPort: false 131 | -------------------------------------------------------------------------------- /config/ClashForWindows/mixin.yaml: -------------------------------------------------------------------------------- 1 | # mixin 示例片段 2 | mixin: # object 3 | dns: 4 | enable: true # 是否启用dns false 5 | ipv6: true 6 | #listen: 0.0.0.0:53 7 | enhanced-mode: redir-host # 模式:redir-host或fake-ip 8 | fake-ip-range: 198.18.0.1/16 9 | fake-ip-filter: # fake ip 白名单列表,如果你不知道这个参数的作用,请勿修改 10 | - '*.lan' 11 | - localhost.ptlogin2.qq.com 12 | default-nameserver: 13 | - 223.5.5.5 # 阿里DNS 14 | - 180.76.76.76 # 百度DNS 15 | - 119.29.29.29 # 腾讯DNS 16 | - 114.114.114.114 # 114DNS 17 | - 1.0.0.1 18 | nameserver: 19 | - 223.5.5.5 # 阿里DNS 20 | - 180.76.76.76 # 百度DNS 21 | - 119.29.29.29 # 腾讯DNS 22 | - 117.50.11.11 # ONE DNS拦截版 恶意网站拦截、广告过滤 23 | - 117.50.10.10 # ONE DNS纯净版 直接返回其真实的响应结果 24 | - 114.114.114.114 # 114DNS 25 | - 8.8.8.8 26 | - 1.1.1.1 27 | fallback: 28 | - 8.8.8.8 # 谷歌DNS 29 | - 1.1.1.1 # Cloudflare DNS 30 | - tls://dns.rubyfish.cn:853 31 | - tls://1.0.0.1:853 32 | - tls://dns.google:853 33 | - https://dns.rubyfish.cn/dns-query 34 | - https://cloudflare-dns.com/dns-query 35 | - https://dns.google/dns-query 36 | fallback-filter: 37 | geoip: true # 默认 38 | ipcidr: 39 | - 240.0.0.0/4 40 | - 0.0.0.0/32 41 | - 127.0.0.1/32 42 | domain: 43 | - +.google.com 44 | - +.facebook.com 45 | - +.twitter.com 46 | - +.youtube.com 47 | - +.xn--ngstr-lra8j.com 48 | - +.google.cn 49 | - +.googleapis.cn 50 | - +.gvt1.com 51 | # interface-name: 以太网 52 | tun: 53 | enable: true 54 | stack: gvisor # system 55 | dns-hijack: 56 | - 198.18.0.2:53 57 | auto-route: true 58 | auto-detect-interface: true # 自动检测出口网卡 59 | -------------------------------------------------------------------------------- /config/ClashForWindows/parser.yaml: -------------------------------------------------------------------------------- 1 | # parser 示例片段 2 | parser: 3 | - reg: '^.*subconverter.herokuapp.com.*$' 4 | code: | 5 | module.exports.parse = async (raw, { axios, yaml, notify, console }, { name, url, interval, selected }) => { 6 | const obj = yaml.parse(raw); 7 | for (const proxy_group of obj['proxy-groups']) { 8 | if(proxy_group['name'] === '♻️ 自动选择') { 9 | proxy_group['proxies'] = proxy_group['proxies'].filter(name=>name.indexOf('UnblockMusic') === -1); 10 | } 11 | } 12 | return yaml.stringify(obj); 13 | } 14 | - reg: '^.*$' 15 | code: | 16 | const exec = require('util').promisify(require('child_process').exec); 17 | module.exports.parse = async (raw, { console }, { url }) => { 18 | const { stdout: output } = await exec( 19 | `curl -H "User-Agent:Quantumult%20X/1.0.23 (iPhone12,3; iOS 14.6)" -I "${url}"` 20 | ); 21 | console.log(output.toLowerCase()); 22 | if (/subscription-userinfo:\s(.+?)[\r\n]/.test(output.toLowerCase())) { 23 | return `# ${RegExp.$1.trim()};\n${raw}`; 24 | } 25 | return raw; 26 | }; 27 | - reg: '^.*subconverter.herokuapp.com.*$' 28 | yaml: 29 | prepend-rules: 30 | - DOMAIN-SUFFIX,gvt1.com,♻️ 自动选择 # rules最前面增加一个规则 31 | - DOMAIN-SUFFIX,dl.google.com,♻️ 自动选择 # rules最前面增加一个规则 32 | - DOMAIN-SUFFIX,addthis.com,♻️ 自动选择 # rules最前面增加一个规则 33 | # - DOMAIN-SUFFIX,bilivideo.cn,REJECT # rules最前面增加一个规则 34 | -------------------------------------------------------------------------------- /config/Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- 1 | Import-Module posh-git; 2 | $Env:http_proxy = "socks5://127.0.0.1:7890"; 3 | $Env:https_proxy = "socks5://127.0.0.1:7890"; 4 | $env:LC_ALL = 'C.UTF-8'; 5 | function prettier_write_all { 6 | if ((Test-Path "./.prettierrc.json") -and (Test-Path "./.prettierignore")) { 7 | prettier --write "**/*.{json,js,yml,yaml,md}" 8 | } 9 | elseif ((Test-Path "./.prettierrc.json") -and !(Test-Path "./.prettierignore")) { 10 | prettier --ignore-path "D://Applications/.prettierignore" --write "**/*.{json,js,yml,yaml,md}" 11 | } 12 | elseif (!(Test-Path "./.prettierrc.json") -and (Test-Path "./.prettierignore")) { 13 | prettier --config "D://Applications/.prettierrc.json" --write "**/*.{json,js,yml,yaml,md}" 14 | } 15 | elseif (!(Test-Path "./.prettierrc.json") -and !(Test-Path "./.prettierignore")) { 16 | prettier --config "D://Applications/.prettierrc.json" --ignore-path "D://Applications/.prettierignore" --write "**/*.{json,js,yml,yaml,md}" 17 | } 18 | } 19 | function prettier_check_all { 20 | if ((Test-Path "./.prettierrc.json") -and (Test-Path "./.prettierignore")) { 21 | prettier --check "**/*.{json,js,yml,yaml,md}" 22 | } 23 | elseif ((Test-Path "./.prettierrc.json") -and !(Test-Path "./.prettierignore")) { 24 | prettier --ignore-path "D://Applications/.prettierignore" --check "**/*.{json,js,yml,yaml,md}" 25 | } 26 | elseif (!(Test-Path "./.prettierrc.json") -and (Test-Path "./.prettierignore")) { 27 | prettier --config "D://Applications/.prettierrc.json" --check "**/*.{json,js,yml,yaml,md}" 28 | } 29 | elseif (!(Test-Path "./.prettierrc.json") -and !(Test-Path "./.prettierignore")) { 30 | prettier --config "D://Applications/.prettierrc.json" --ignore-path "D://Applications/.prettierignore" --check "**/*.{json,js,yml,yaml,md}" 31 | } 32 | } 33 | Set-Alias lint prettier_write_all 34 | Set-Alias check prettier_check_all 35 | Write-Host "Personal profile:"$($($MyInvocation.MyCommand.Definition -replace [regex]::Escape($Env:UserProfile), '%UserProfile%') -replace [regex]::Escape($Env:windir), '%windir%') -ForegroundColor green 36 | Write-Host "Personal profile loading......" -ForegroundColor green -------------------------------------------------------------------------------- /config/Notepad3/Notepad3.ini: -------------------------------------------------------------------------------- 1 | [Notepad3] 2 | ;Notepad3.ini=%USERPROFILE%\Notepad3.ini 3 | ;Notepad3.ini=%APPDATA%\Rizonesoft\Notepad3\Notepad3.ini 4 | [Settings] 5 | SettingsVersion=4 6 | PathNameFormat=2 7 | ShowIndentGuides=true 8 | ViewWhiteSpace=true 9 | ViewEOLs=true 10 | FindReplaceDlgSizeX=632 11 | FindReplaceDlgPosX=653 12 | FindReplaceDlgPosY=309 13 | TabWidth=2 14 | IndentWidth=2 15 | RecodeDlgSizeX=389 16 | RecodeDlgSizeY=385 17 | DefaultEOLMode=2 18 | FixLineEndings=true 19 | FixTrailingBlanks=true 20 | FindTransformBS=true 21 | efrData_fuFlags=4096 22 | TabsAsSpaces=true 23 | WildcardSearch=true 24 | [Settings2] 25 | SingleFileInstance=0 26 | ;IMEInteraction=0 27 | ;AutoReloadTimeout=2000 28 | ;DateTimeLong= 29 | ;TimeStampRegExLong= 30 | ;DateTimeShort= 31 | ;TimeStampRegExShort= 32 | ;DefaultDirectory= 33 | ;DefaultExtension=txt 34 | ;DefaultWindowPosition= 35 | ;DenyVirtualSpaceAccess=0 36 | ;filebrowser.exe=minipath.exe 37 | ;grepWin.exe=grepWinNP3.exe 38 | ;FileCheckInverval=2000 39 | ;FileDlgFilters= 40 | ;FileLoadWarningMB=64 41 | ;MarkOccurrencesMaxCount=2000 42 | ;MultiFileArg=0 43 | ;NoCGIGuess=0 44 | ;NoCopyLineOnEmptySelection=0 45 | ;NoCutLineOnEmptySelection=0 46 | ;NoFadeHidden=0 47 | ;NoFileVariables=0 48 | ;NoHTMLGuess=0 49 | ;PortableMyDocs=1 50 | ;OpacityLevel=75 51 | ;FindReplaceOpacityLevel=50 52 | ;RelativeFileMRU=1 53 | ;ReuseWindow=0 54 | ;SciFontQuality=3 55 | ;SimpleIndentGuides=0 56 | ;SingleFileInstance=1 57 | ;ShellAppUserModelID=Rizonesoft.Notepad3 58 | ;ShellUseSystemMRU=1 59 | ;StickyWindowPosition=0 60 | ;UseOldStyleBraceMatching=0 61 | ;WebTemplate1=https://google.com/search?q=%s 62 | ;WebTemplate2=https://en.wikipedia.org/w/index.php?search=%s 63 | ;ExtendedWhiteSpaceChars= 64 | ;AutoCompleteWordCharSet= 65 | ;AutoCompleteFillUpChars= 66 | ;LineCommentPostfixStrg= 67 | ;UpdateDelayMarkAllOccurrences=50 68 | ;CurrentLineHorizontalSlop=40 69 | ;CurrentLineVerticalSlop=5 70 | ;UndoTransactionTimeout=0 71 | ;AdministrationTool.exe= 72 | ;DevDebugMode=0 73 | ;AnalyzeReliableConfidenceLevel=92 74 | ;LocaleAnsiCodePageAnalysisBonus=33 75 | ;LexerSQLNumberSignAsComment=1 76 | ;ExitOnESCSkipLevel=2 77 | [Statusbar Settings] 78 | ;VisibleSections=0 1 12 14 2 4 5 6 7 8 9 10 11 79 | ;SectionPrefixes=Ln ,Col ,Sel ,Sb ,SLn ,Occ ,,,,,,,Ch ,Repl ,Eval , 80 | ;SectionPostfixes=,,,,,,,,,,,,,,, 81 | ;SectionWidthSpecs=30 20 20 20 20 20 0 0 0 0 0 0 20 20 20 82 | ;ZeroBasedColumnIndex=0 83 | ;ZeroBasedCharacterCount=0 84 | [Toolbar Images] 85 | ;BitmapDefault=<[:|relative_]\path_to>\Toolbar.bmp 86 | ;BitmapHot=<[:|relative_]\path_to>\ToolbarHot.bmp 87 | ;BitmapDisabled=<[:|relative_]\path_to>\ToolbarDisabled.bmp 88 | [Toolbar Labels] 89 | ;01=New 90 | ;02=Open 91 | ;03=Browse 92 | ;04=Save 93 | ;05=Undo 94 | ;06=Redo 95 | ;07=Cut 96 | ;08=Copy 97 | ;09=Paste 98 | ;10=Find 99 | ;11=Replace 100 | ;12=Word Wrap 101 | ;13=Zoom In 102 | ;14=Zoom Out 103 | ;15=Scheme 104 | ;16=Customize Schemes 105 | ;17=Exit 106 | ;18=Save As 107 | ;19=Save Copy 108 | ;20=Delete 109 | ;21=Print 110 | ;22=Favorites 111 | ;23=Add to Favorites 112 | ;24=Toggle Folds 113 | ;25=Execute Document 114 | ;26=Focused View 115 | ;27=Monitoring Log 116 | ;28=History 117 | ;29=Always On Top 118 | [Custom Colors] 119 | [Styles] 120 | SelectDlgSizeX=389 121 | SelectDlgSizeY=382 122 | Use2ndDefaultStyle=true 123 | ThemeFileName=Notepad3_Tomorrow Night 124 | [Common Base] 125 | [2nd Common Base] 126 | [Text Files] 127 | [ANSI Art] 128 | [Apache Config Files] 129 | [Assembly Script] 130 | [AutoHotkey_L Script] 131 | [AutoIt3 Script] 132 | [AviSynth Script] 133 | [Awk Script] 134 | [Batch Files] 135 | [C# Source Code] 136 | [C/C++ Source Code] 137 | [Cmake Script] 138 | [Coffeescript] 139 | [Configuration Files] 140 | [CSS Style Sheets] 141 | [CSV Prism] 142 | [D Source Code] 143 | [Diff Files] 144 | [Go Source Code] 145 | [Inno Setup Script] 146 | [Java Source Code] 147 | [JavaScript] 148 | [JSON] 149 | [LaTeX Files] 150 | [Lua Script] 151 | [Makefiles] 152 | [Markdown] 153 | [MATLAB] 154 | [Nim Source Code] 155 | [NSIS Script] 156 | [Pascal Source Code] 157 | [Perl Script] 158 | [PowerShell Script] 159 | [Python Script] 160 | [Registry Files] 161 | [Resource Script] 162 | [R-S-SPlus Statistics Code] 163 | [Ruby Script] 164 | [Rust Source Code] 165 | [Shell Script] 166 | [SQL Query] 167 | [Tcl Script] 168 | [TOML Config] 169 | [VBScript] 170 | [VHDL] 171 | [Visual Basic] 172 | [Web Source Code] 173 | [XML Document] 174 | [YAML] 175 | [Window] 176 | 1920x1080 HighDpiToolBar=1 177 | 1920x1080 PosX=371 178 | 1920x1080 PosY=415 179 | 1920x1080 SizeX=960 180 | 1920x1080 SizeY=841 181 | 1920x1080 Maximized=true 182 | 1920x1080 Zoom=200 183 | 1920x1080 DpiScaleToolBar=true 184 | 1280x1024 HighDpiToolBar=1 185 | 1280x1024 DpiScaleToolBar=true 186 | 1280x1024 PosX=2175 187 | 1280x1024 PosY=109 188 | 1280x1024 SizeX=960 189 | 1280x1024 SizeY=1003 190 | 1280x1024 Maximized=true 191 | 1280x1024 Zoom=150 192 | 1440x900 HighDpiToolBar=1 193 | 1440x900 DpiScaleToolBar=true 194 | 1440x900 PosX=2198 195 | 1440x900 PosY=360 196 | 1440x900 SizeX=960 197 | 1440x900 SizeY=841 198 | 1440x900 Maximized=true 199 | 1440x900 Zoom=200 200 | 1366x768 HighDpiToolBar=1 201 | 1366x768 DpiScaleToolBar=true 202 | 1366x768 PosX=2476 203 | 1366x768 PosY=205 204 | 1366x768 SizeX=960 205 | 1366x768 SizeY=619 206 | 1366x768 Maximized=true 207 | 1366x768 Zoom=170 208 | 3360x1080 HighDpiToolBar=0 209 | 3360x1080 PosX=960 210 | 3360x1080 PosY=0 211 | 3360x1080 SizeX=960 212 | 3360x1080 SizeY=1003 213 | 3360x1080 Maximized=true 214 | 3360x1080 Zoom=130 215 | [Suppressed Messages] 216 | [Recent Files] 217 | [Recent Find] 218 | [Recent Replace] 219 | -------------------------------------------------------------------------------- /config/Notepad3/register-right-click-menu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/Notepad3/register-right-click-menu.reg -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_Absinthe.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: Absinthe (by maboroshin, License:MIT) 7 | # https://github.com/maboroshin/Absinthe.color 8 | # 9 | [Custom Colors] 10 | 01=#131418; Background 11 | 02=#172418; Current line 12 | 03=#1d2e03; Selection 13 | 04=#bec7ba; Fore 14 | 05=#4a956D; Comment 15 | 06=#F8FD99 16 | 07=#F8FD99 17 | 08=#bec7ba; #172418 Gray 8 18 | 09=#bda09c; Pink/Magenta 5 19 | 10=#c69492; Red 61 20 | 11=#bba944; Orange 21 21 | 12=#bfbd33; Yellow 38 22 | 13=#a5b352; Green 37 23 | 14=#90b998; Aqua/Cyan 64 24 | 15=#97b7c0; Blue 12 25 | 16=#a08eae; Purple/Violet 61 26 | [Styles] 27 | Use2ndDefaultStyle=true 28 | [Common Base] 29 | Default Style=font:Meiryo; size:9; fore:#bec7ba; back:#131418 30 | Margins and Line Numbers=font:Arial; size:8; fore:#4a956D; back:#172418 31 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 32 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 33 | Indentation Guide (Color)=fore:#4a956D 34 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 35 | Whitespace (Colors, Size 0-12)=fore:#bfbd33 36 | Current Line Background (Color)=back:#172418 37 | Caret (Color, Size 1-3)=size:2; fore:#bec7ba 38 | Long Line Marker (Colors)=fore:#1d2e03 39 | Bookmarks and Folding (Colors, Size)=fore:#bba944; back:#fefefe; alpha:50; case:U 40 | Mark Occurrences (Indicator)=fore:#c69492; alpha:100; alpha2:100; indic_roundbox 41 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 42 | Multi Edit Indicator=fore:#00A5FF; indic_box 43 | Inline-IME Color=fore:#a5b352 44 | [2nd Common Base] 45 | 2nd Default Style=font:Meiryo; size:9; fore:#bec7ba; back:#131418 46 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#4a956D; back:#172418 47 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 48 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 49 | 2nd Indentation Guide (Color)=fore:#4a956D 50 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 51 | 2nd Whitespace (Colors, Size 0-12)=fore:#bfbd33 52 | 2nd Current Line Background (Color)=back:#172418 53 | 2nd Caret (Color, Size 1-3)=size:2; fore:#bec7ba 54 | 2nd Long Line Marker (Colors)=fore:#1d2e03 55 | 2nd Extra Line Spacing (Size)=size:2 56 | 2nd Bookmarks and Folding (Colors, Size)=fore:#bba944; back:#fefefe; alpha:50; case:U 57 | 2nd Mark Occurrences (Indicator)=fore:#c69492; alpha:100; alpha2:100; indic_roundbox 58 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 59 | Multi Edit Indicator=fore:#00A5FF; indic_box 60 | 2nd Inline-IME Color=fore:#a5b352 61 | [Text Files] 62 | Default=font:Meiryo; size:9 63 | [ANSI Art] 64 | Default=font:Lucida Console 65 | Margins and Line Numbers=font:Arial; size:7 66 | Extra Line Spacing (Size)=size:0 67 | [Apache Config Files] 68 | Comment=fore:#4a956D 69 | String=fore:#90b998 70 | Number=bold; fore:#c69492 71 | Directive=bold 72 | IP Address=bold; fore:#bda09c 73 | [Assembly Script] 74 | Comment=fore:#4a956D 75 | String=fore:#90b998 76 | Number=bold; fore:#c69492 77 | Operator=bold 78 | CPU Instruction=bold 79 | FPU Instruction=bold 80 | Extended Instruction=bold 81 | Directive=bold; italic 82 | Directive Operand=bold; italic 83 | Register=fore:#bba944 84 | [AutoHotkey_L Script] 85 | Comment=fore:#4a956D 86 | String=fore:#90b998 87 | Label=bold; fore:#97b7c0 88 | HotKey=bold; fore:#bba944 89 | HotString=fore:#bfbd33 90 | KeyHotstringOption=fore:#bfbd33 91 | Hex Number=fore:#c69492 92 | Number=bold; fore:#c69492 93 | Variable=bold; fore:#a08eae 94 | Variable Dereferencing=bold; fore:#a08eae 95 | Object=bold 96 | User-Defined Function=bold; italic 97 | Directive=italic 98 | Command=bold 99 | Parameter=fore:#bfbd33 100 | Flow of Control=bold; italic 101 | Function=italic 102 | Key=bold 103 | Escape=bold; fore:#a5b352 104 | Error=italic; fore:#c69492 105 | Built-In Variables=bold; fore:#bfbd33 106 | [AutoIt3 Script] 107 | Comment=fore:#4a956D 108 | Number=bold; fore:#c69492 109 | Function=bold 110 | User-Defined Function=fore:#bba944 111 | Keyword=bold; italic 112 | Macro=bold; fore:#97b7c0 113 | String=fore:#90b998 114 | Operator=bold 115 | Variable=italic; fore:#a08eae 116 | Send Key=bold; fore:#a5b352 117 | Preprocessor=bold 118 | Special=bold 119 | [AviSynth Script] 120 | Comment=fore:#4a956D 121 | String=fore:#90b998 122 | Number=bold; fore:#c69492 123 | Keyword=bold; italic 124 | Filter=bold 125 | Clip Property=fore:#a08eae 126 | Plugin=bold; fore:#bfbd33 127 | Function=fore:#bfbd33 128 | [Awk Script] 129 | Keyword=bold 130 | Keyword 2nd=bold; fore:#a08eae 131 | Comment=fore:#4a956D 132 | String=fore:#90b998 133 | Number=bold; fore:#c69492 134 | Operator=bold 135 | [Batch Files] 136 | Comment=fore:#4a956D 137 | Keyword=bold 138 | Identifier=fore:#97b7c0 139 | Operator=bold 140 | Command=bold; italic 141 | Label=bold; fore:#97b7c0 142 | [C# Source Code] 143 | Comment=fore:#4a956D 144 | Keyword=bold 145 | Identifier=fore:#97b7c0 146 | String=fore:#90b998 147 | Verbatim String=fore:#a08eae 148 | Number=bold; fore:#c69492 149 | Operator=bold 150 | Preprocessor=bold 151 | Global Class=bold; fore:#bfbd33 152 | [C/C++ Source Code] 153 | Comment=fore:#4a956D 154 | Keyword=bold; italic 155 | Keyword 2nd=fore:#a08eae; bold; italic 156 | Typedefs/Classes=bold; italic 157 | String=fore:#90b998 158 | Number=bold; fore:#c69492 159 | Operator=bold 160 | Preprocessor=bold 161 | [CIL Assembly] 162 | Keyword=bold; fore:#a08eae 163 | Type Keyword=fore:#97b7c0 164 | Directive=bold 165 | Instruction= 166 | Comment=fore:#4a956D 167 | String=fore:#90b998 168 | Label=bold; fore:#97b7c0 169 | Number=bold; fore:#c69492 170 | Operator= 171 | [Cmake Script] 172 | Comment=fore:#4a956D 173 | String=fore:#90b998 174 | Function=bold 175 | Parameter=bold; fore:#bfbd33 176 | Variable=fore:#a08eae 177 | While Def=bold; italic 178 | For Each Def=bold; italic 179 | If Def=bold; italic 180 | Macro Def=bold; italic 181 | Variable within String=bold; fore:#a08eae 182 | Number=bold; fore:#c69492 183 | [Coffeescript] 184 | Comment=fore:#4a956D 185 | String=fore:#90b998 186 | Identifier= 187 | Operator=bold; fore:#bec7ba 188 | Preprocessor=bold 189 | Number=bold; fore:#c69492 190 | Regex=fore:#a08eae 191 | Global Class=fore:#bfbd33 192 | Word=fore:#90b998 193 | Verbatim=fore:#90b998 194 | [Configuration Files] 195 | Comment=fore:#4a956D 196 | Section=bold; fore:#97b7c0 197 | Assignment=fore:#90b998 198 | Default Value=fore:#bfbd33 ;bold 199 | [CSS Style Sheets] 200 | Comment=fore:#4a956D 201 | HTML Tag=bold 202 | Tag-Class=bold; fore:#bfbd33 203 | Tag-ID=bold; fore:#bba944 204 | Tag-Attribute=fore:#97b7c0 205 | Pseudo-Class=fore:#a08eae 206 | Pseudo-Element=italic 207 | CSS Property=bold 208 | String=fore:#90b998 209 | Value=fore:#97b7c0 210 | Operator=bold 211 | Important=bold; fore:#90b998 212 | Directive=bold; italic 213 | Media=bold; italic; fore:#bba944 214 | Variable=bold; fore:#bba944 215 | Unknown Pseudo-Class=fore:#c69492; italic 216 | Unknown Property=bold; fore:#c69492; italic 217 | [CSV Prism] 218 | Column 0=bold 219 | Column 1=fore:#c69492 220 | Column 2=bold; fore:#bba944 221 | Column 3=fore:#bfbd33 222 | Column 4=fore:#a5b352 223 | Column 5=fore:#90b998 224 | Column 6=fore:#a08eae 225 | Column 7=bold; fore:#97b7c0 226 | Column 8= 227 | Column 9=italic; fore:#a5b352 228 | [D Source Code] 229 | Comment=fore:#4a956D 230 | Comment Doc=fore:#4a956D 231 | Number=bold; fore:#c69492 232 | Keyword=bold 233 | Keyword 2nd=bold; fore:#a08eae 234 | Typedef=italic 235 | String=fore:#90b998 236 | Operator=bold 237 | [Diff Files] 238 | Comment=fore:#4a956D 239 | Command=bold; fore:#bfbd33 240 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 241 | Position Setting=fore:#BFBFBF; back:#002B55 242 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 243 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 244 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 245 | [Go Source Code] 246 | Comment=fore:#4a956D 247 | Number=bold; fore:#c69492 248 | Keyword=bold 249 | Keyword 2nd=bold; fore:#a08eae 250 | Typedef=bold; italic 251 | String=fore:#90b998 252 | Operator=bold 253 | [Inno Setup Script] 254 | Comment=fore:#4a956D 255 | Keyword=bold 256 | Parameter=bold; fore:#bfbd33 257 | Section=bold; fore:#bec7ba 258 | Preprocessor=bold; fore:#97b7c0 259 | Inline Expansion=bold; fore:#a08eae 260 | Pascal Comment=fore:#4a956D 261 | Pascal Keyword=bold; italic 262 | String=fore:#90b998 263 | [Java Source Code] 264 | Comment=fore:#4a956D 265 | Keyword=fore:#a08eae; bold; italic 266 | String=fore:#90b998 267 | Regex=fore:#a08eae 268 | Number=bold; fore:#c69492 269 | Operator=bold 270 | [JavaScript] 271 | Comment=fore:#4a956D 272 | Keyword=fore:#a08eae; bold 273 | String=fore:#90b998 274 | Regex=fore:#a5b352 275 | Number=bold; fore:#c69492 276 | Operator=bold 277 | [JSON] 278 | String=fore:#89B8C2 279 | Number=bold; fore:#E27878 280 | LD Keyword=fore:#bba944 281 | Operator= 282 | Property Name=fore:#a5b352 283 | Regex=fore:#a5b352 284 | ESC Sequence=fore:#A093C7 285 | Parsing Error=fore:#E27878 286 | [LaTeX Files] 287 | Command=bold 288 | Comment=fore:#4a956D 289 | Math=bold; fore:#a5b352 290 | Special Char=fore:#90b998 291 | Tag=bold; fore:#a08eae 292 | Verbatim Segment=bold; italic; bold; fore:#bec7ba; back:#1d2e03 293 | [Lua Script] 294 | Comment=fore:#4a956D 295 | Number=bold; fore:#c69492 296 | Keyword=bold 297 | Basic Functions=bold 298 | String, Table & Math Functions=bold; fore:#a5b352 299 | Input, Output & System Facilities=bold; fore:#a08eae 300 | String=fore:#90b998 301 | Literal String=fore:#90b998 302 | Operator=bold 303 | Label=bold; fore:#97b7c0 304 | [Makefiles] 305 | Comment=fore:#4a956D 306 | Identifier=fore:#bfbd33 307 | Target=bold 308 | Preprocessor=bold; fore:#a08eae 309 | [Markdown] 310 | Strong=bold; fore:#bfbd33 311 | Emphasis=italic; fore:#bfbd33 312 | Header 1=bold; fore:#c69492 313 | Header 2=bold; fore:#c69492 314 | Header 3=bold; fore:#c69492 315 | Header 4=bold; fore:#c69492 316 | Header 5=bold; fore:#c69492 317 | Header 6=bold; fore:#c69492 318 | Unordered List=bold; fore:#90b998 319 | Ordered List=bold; fore:#90b998 320 | Pre Char=fore:#bba944; back:#3d425b 321 | Block Quote=fore:#bba944 322 | Strikeout=fore:#a08eae; italic 323 | Horizontal Rule=size:+2; bold 324 | Link=fore:#90b998 325 | Code=fore:#bfbd33 326 | [MATLAB] 327 | Comment=fore:#4a956D 328 | Number=bold; fore:#c69492 329 | Keyword=fore:#a08eae; bold 330 | String=fore:#90b998 331 | Operator=bold 332 | [Nim Source Code] 333 | Comment=fore:#4a956D 334 | Keyword=fore:#a08eae; bold 335 | String Double Quoted=fore:#90b998 336 | String Single Quoted=fore:#a5b352 337 | String Triple Double Quotes=italic; fore:#90b998 338 | String Triple Single Quotes=italic; fore:#a5b352 339 | Number=bold; fore:#c69492 340 | Operator=bold 341 | Function name=fore:#bfbd33 342 | [NSIS Script] 343 | Comment=fore:#4a956D 344 | String=fore:#90b998 345 | Function=fore:#a08eae; bold 346 | Variable=italic; fore:#bfbd33 347 | Variable within String=bold; italic; fore:#bfbd33 348 | Number=bold; fore:#c69492 349 | Constant=fore:#a5b352 350 | Section=bold; fore:#bba944 351 | Sub Sectionbold; fore:#bec7ba 352 | Section Group=bold; fore:#a5b352 353 | Function Definition=bold; italic 354 | PageEx=bold; italic 355 | If Definition=bold; italic 356 | Macro Definition=bold; italic 357 | [Pascal Source Code] 358 | Comment=fore:#4a956D 359 | Keyword=fore:#a08eae; bold 360 | String=fore:#90b998 361 | Number=bold; fore:#c69492 362 | Inline Asm=fore:#bba944 363 | Preprocessor=bold; fore:#bfbd33 364 | [Perl Script] 365 | Comment=fore:#4a956D 366 | Keyword=bold 367 | String Double Quoted=fore:#90b998 368 | String Single Quoted=fore:#a5b352 369 | Number=bold; fore:#c69492 370 | Scalar $var=italic; fore:#bba944 371 | Array @var=italic; fore:#bfbd33 372 | Hash %var=italic; fore:#a5b352 373 | Symbol Table *var=fore:#bda09c 374 | Regex /re/ or m{re}=fore:#a08eae 375 | Substitution s/re/ore/=fore:#a08eae; back:#172418 376 | Back Ticks=fore:#bfbd33 377 | Here-Doc (Delimiter)=bold; back:#172418 378 | Here-Doc (Single Quoted, q)=italic; fore:#a5b352; back:#172418 379 | Here-Doc (Double Quoted, qq)=italic; fore:#90b998; back:#172418 380 | Here-Doc (Back Ticks, qx)=italic; bold; fore:#bfbd33; back:#172418 381 | Single Quoted String (Generic, q)=fore:#a5b352 382 | Double Quoted String (qq)=fore:#90b998 383 | Back Ticks (qx)=fore:#bfbd33 384 | Regex (qr)=fore:#a08eae 385 | Array (qw)=fore:#bba944 386 | Prototype=bold; fore:#a08eae 387 | Format Identifier=bold; fore:#90b998 388 | Format Body=fore:#0093EA; back:#2A2A2A 389 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 390 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 391 | Data Section=fore:#BFBFBF; back:#2A2A2A 392 | Parsing Error=bold; italic; fore:#c69492 393 | [PowerShell Script] 394 | Comment=fore:#4a956D 395 | Keyword=fore:#a08eae; bold; italic 396 | String=fore:#90b998 397 | Number=bold; fore:#c69492 398 | Variable=italic; fore:#bfbd33 399 | Cmdlet=fore:#97b7c0; bold 400 | Alias=bold; fore:#a5b352 401 | [Python Script] 402 | Comment=fore:#4a956D 403 | Keyword=fore:#a08eae; bold 404 | String Double Quoted=fore:#90b998 405 | String Single Quoted=fore:#a5b352 406 | String Triple Double Quotes=italic; fore:#90b998 407 | String Triple Single Quotes=italic; fore:#a5b352 408 | Number=bold; fore:#c69492 409 | Operator=bold 410 | Function Name=italic 411 | Class Name=fore:#bfbd33 412 | [Registry Files] 413 | Comment=fore:#4a956D 414 | Value Name= 415 | String=fore:#90b998 416 | Value Type=bold 417 | Hex=bold; fore:#c69492 418 | Added Key=bold; fore:#bba944; 419 | Deleted Key=fore:#bfbd33 420 | GUID in Key Path=bold; fore:#a08eae 421 | Parameter=fore:#a5b352 422 | Escaped=bold; fore:#a5b352 423 | [Resource Script] 424 | Comment=fore:#4a956D 425 | Keyword=bold 426 | String=fore:#90b998 427 | Number=bold; fore:#c69492 428 | Operator=bold 429 | Preprocessor=fore:#a08eae 430 | [R-S-SPlus Statistics Code] 431 | Comment=fore:#4a956D 432 | Keyword=fore:#a5b352; bold; italic 433 | Base Package Functions=bold; fore:#97b7c0 434 | Other Package Functions=bold; fore:#bfbd33 435 | Number=bold; fore:#c69492 436 | String=fore:#90b998 437 | Operator=bold 438 | Infix=fore:#a08eae 439 | Infix EOL=fore:#a08eae; back:#1d2e03; eolfilled 440 | [Ruby Script] 441 | Comment=fore:#4a956D 442 | Keyword=fore:#a08eae; bold 443 | Number=bold; fore:#c69492 444 | Operator=bold 445 | String=fore:#90b998; bold 446 | Class Name=italic 447 | Function Name=fore:#a08eae 448 | Regex=fore:#a5b352 449 | Symbol=bold; fore:#bba944 450 | Module Name=bold; fore:#bda09c 451 | Instance Var=bold; fore:#a5b352 452 | Class Var=bold; fore:#bfbd33 453 | Data Section=bold; fore:#bec7ba; back:#1d2e03; eolfilled 454 | [Rust Source Code] 455 | Keyword=fore:#a08eae; bold 456 | Build-In Type=bold; fore:#90b998 457 | Other Keyword=bold; italic 458 | Number=bold; fore:#c69492 459 | String=fore:#90b998 460 | Operator=bold 461 | Macro Definition=fore:#a5b352 462 | Rust Lifetime=fore:#bba944 463 | Byte String=fore:#a08eae 464 | Parsing Error=italic; fore:#c69492 465 | [Shell Script] 466 | Error=italic; fore:#c69492 467 | Comment=fore:#4a956D 468 | Number=bold; fore:#c69492 469 | Keyword=fore:#a08eae; bold 470 | String Double Quoted=fore:#90b998 471 | String Single Quoted=fore:#a5b352 472 | Scalar=fore:#bda09c 473 | Parameter Expansion=fore:#a08eae 474 | Back Ticks=fore:#bfbd33 475 | Here-Doc (Delimiter)=bold; fore:#bba944 476 | Here-Doc (Single Quoted, q)=bold; fore:#bec7ba; back:#1d2e03; eolfilled 477 | Operator=bold 478 | [SQL Query] 479 | Comment=fore:#4a956D 480 | Keyword=bold 481 | Value Type=bold; fore:#bfbd33 482 | String=fore:#90b998 483 | Identifier=fore:#a08eae 484 | Quoted Identifier=bold; fore:#a08eae 485 | Number=bold; fore:#c69492 486 | Operator=bold 487 | [Tcl Script] 488 | Comment=fore:#4a956D 489 | Keyword=fore:#a08eae; bold 490 | Number=bold; fore:#c69492 491 | String=fore:#90b998 492 | Operator=bold 493 | Identifier= 494 | Modifier=italic; fore:#a5b352 495 | Substitution=bold; fore:#bec7ba 496 | [TOML Config] 497 | Keyword=bold; fore:#a08eae 498 | Comment=fore:#4a956D 499 | Section=bold; fore:#97b7c0 500 | Key= 501 | Assignment=bold 502 | Value=fore:#90b998 503 | Number=bold; fore:#c69492 504 | Date-Time=fore:#a5b352 505 | String=fore:#90b998 506 | Parsing Error=italic; fore:#c69492; 507 | [VBScript] 508 | Comment=fore:#4a956D 509 | Keyword=bold; fore:#a08eae 510 | String=fore:#90b998 511 | Number=bold; fore:#c69492 512 | Operator=bold 513 | [VHDL] 514 | Comment=fore:#4a956D 515 | Number=bold; fore:#c69492 516 | String=fore:#a5b352 517 | Operator= 518 | Keyword=bold; fore:#a08eae 519 | Standard Operator=bold; fore:#bba944 520 | Attribute=fore:#bfbd33 521 | Standard Function=bold; fore:#a5b352 522 | Standard Package=bold; fore:#97b7c0 523 | Standard Type=bold; fore:#97b7c0 524 | [Visual Basic] 525 | Comment=fore:#4a956D 526 | Keyword=bold; fore:#a08eae 527 | String=fore:#90b998 528 | Number=bold; fore:#c69492 529 | Operator= 530 | Preprocessor=bold; fore:#bfbd33 531 | [Web Source Code] 532 | HTML Tag=bold; fore:#a08eae 533 | HTML Unknown Tag=fore:#c69492 534 | HTML Attribute=fore:#90b998 535 | HTML Unknown Attribute=fore:#c69492 536 | HTML Value=fore:#bfbd33 537 | HTML String=fore:#a5b352 538 | HTML Comment=fore:#4a956D 539 | HTML Entity=fore:#bfbd33 540 | HTML Other Inside Tag=fore:#bfbd33 541 | XML Identifier=bold 542 | SGML=fore:#a08eae; bold 543 | ASP Start Tag=bold; italic; fore:#97b7c0 544 | PHP Start Tag=bold; italic; fore:#97b7c0 545 | PHP Comment=fore:#4a956D 546 | PHP Keyword=bold; fore:#a08eae 547 | PHP String=fore:#90b998 548 | PHP Simple String=fore:#a5b352 549 | PHP Number=bold; fore:#c69492 550 | PHP Operator=bold 551 | PHP Variable=italic; fore:#bfbd33 552 | PHP String Variable=bold; italic; fore:#bba944 553 | PHP Complex Variable=italic; fore:#97b7c0 554 | JS Comment=fore:#4a956D 555 | JS Keyword=bold 556 | JS String=fore:#90b998 557 | JS Regex=fore:#bfbd33 558 | JS Number=bold; fore:#c69492 559 | JS Symbols=bold 560 | ASP JS Comment=fore:#4a956D 561 | ASP JS Keyword=bold 562 | ASP JS String=fore:#90b998 563 | ASP JS Regex=fore:#bfbd33 564 | ASP JS Number=bold; fore:#c69492 565 | ASP JS Symbols=bold 566 | VBS Comment=fore:#4a956D 567 | VBS Keyword=bold 568 | VBS String=fore:#90b998 569 | VBS Number=bold; fore:#c69492 570 | ASP VBS Comment=fore:#4a956D 571 | ASP VBS Keyword=bold 572 | ASP VBS String=fore:#90b998 573 | ASP VBS Number=bold; fore:#c69492 574 | [XML Document] 575 | XML Tag=fore:#a08eae 576 | XML Attribute=fore:#90b998 577 | XML Value=fore:#bfbd33 578 | XML String=fore:#a5b352 579 | XML Other Inside Tag=bold; fore:#bfbd33 580 | XML Comment=fore:#4a956D 581 | XML Entity=bold 582 | XML Identifier=bold 583 | SGML=fore:#a08eae; bold 584 | CDATA=fore:#a5b352 585 | [YAML] 586 | Comment=fore:#4a956D 587 | Identifier=fore:#90b998 588 | Keyword=bold 589 | Number=bold; fore:#c69492 590 | Document=bold; fore:#bec7ba; back:#1d2e03; eolfilled 591 | Error=italic; fore:#c69492 592 | Operator=bold; fore:#bba944 593 | Text=fore:#a08eae 594 | Reference=fore:#bfbd33 595 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_Dracula.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: Dracula (by Zeno Rocha et al, License:MIT) 7 | # https://github.com/dracula/dracula-theme 8 | # 9 | [Custom Colors] 10 | 01=#282a36; Background 11 | 02=#44475a; Current line 12 | 03=#44475a; Selection 13 | 04=#f8f8f2; Fore 14 | 05=#6272a4; Comment 15 | 06=#F8FD99 16 | 07=#F8FD99 17 | 08=#f8f8f2; #44475a Gray 8 18 | 09=#ff79c6; Pink/Magenta 5 19 | 10=#ff5555; Red 61 20 | 11=#ffb86c; Orange 21 21 | 12=#f1fa8c; Yellow 38 22 | 13=#50fa7b; Green 37 23 | 14=#8be9fd; Aqua/Cyan 64 24 | 15=#ff79c6; Blue 12 25 | 16=#bd93f9; Purple/Violet 61 26 | [Styles] 27 | Use2ndDefaultStyle=true 28 | [Common Base] 29 | Default Style=font:Meiryo; size:9; fore:#f8f8f2; back:#282a36 30 | Margins and Line Numbers=font:Arial; size:8; fore:#6272a4; back:#282a36 31 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 32 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 33 | Indentation Guide (Color)=fore:#6272a4 34 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 35 | Whitespace (Colors, Size 0-12)=fore:#f1fa8c 36 | Current Line Background (Color)=back:#44475a 37 | Caret (Color, Size 1-3)=size:2; fore:#f8f8f2 38 | Long Line Marker (Colors)=fore:#44475a 39 | Bookmarks and Folding (Colors, Size)=fore:#ffb86c; back:#fefefe; alpha:50; case:U 40 | Mark Occurrences (Indicator)=fore:#ff5555; alpha:100; alpha2:100; indic_roundbox 41 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 42 | Multi Edit Indicator=fore:#00A5FF; indic_box 43 | Inline-IME Color=fore:#50fa7b 44 | [2nd Common Base] 45 | 2nd Default Style=font:Meiryo; size:9; fore:#f8f8f2; back:#282a36 46 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#6272a4; back:#282a36 47 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 48 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 49 | 2nd Indentation Guide (Color)=fore:#6272a4 50 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 51 | 2nd Whitespace (Colors, Size 0-12)=fore:#f1fa8c 52 | 2nd Current Line Background (Color)=back:#44475a 53 | 2nd Caret (Color, Size 1-3)=size:2; fore:#f8f8f2 54 | 2nd Long Line Marker (Colors)=fore:#44475a 55 | 2nd Extra Line Spacing (Size)=size:2 56 | 2nd Bookmarks and Folding (Colors, Size)=fore:#ffb86c; back:#fefefe; alpha:50; case:U 57 | 2nd Mark Occurrences (Indicator)=fore:#ff5555; alpha:100; alpha2:100; indic_roundbox 58 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 59 | Multi Edit Indicator=fore:#00A5FF; indic_box 60 | 2nd Inline-IME Color=fore:#50fa7b 61 | [Text Files] 62 | Default=font:Meiryo; size:9 63 | [ANSI Art] 64 | Default=font:Lucida Console 65 | Margins and Line Numbers=font:Arial; size:7 66 | Extra Line Spacing (Size)=size:0 67 | [Apache Config Files] 68 | Comment=fore:#6272a4 69 | String=fore:#8be9fd 70 | Number=bold; fore:#ff5555 71 | Directive=bold 72 | IP Address=bold; fore:#ff79c6 73 | [Assembly Script] 74 | Comment=fore:#6272a4 75 | String=fore:#8be9fd 76 | Number=bold; fore:#ff5555 77 | Operator=bold 78 | CPU Instruction=bold 79 | FPU Instruction=bold 80 | Extended Instruction=bold 81 | Directive=bold; italic 82 | Directive Operand=bold; italic 83 | Register=fore:#ffb86c 84 | [AutoHotkey_L Script] 85 | Comment=fore:#6272a4 86 | String=fore:#8be9fd 87 | Label=bold; fore:#ff79c6 88 | HotKey=bold; fore:#ffb86c 89 | HotString=fore:#f1fa8c 90 | KeyHotstringOption=fore:#f1fa8c 91 | Hex Number=fore:#ff5555 92 | Number=bold; fore:#ff5555 93 | Variable=bold; fore:#bd93f9 94 | Variable Dereferencing=bold; fore:#bd93f9 95 | Object=bold 96 | User-Defined Function=bold; italic 97 | Directive=italic 98 | Command=bold 99 | Parameter=fore:#f1fa8c 100 | Flow of Control=bold; italic 101 | Function=italic 102 | Key=bold 103 | Escape=bold; fore:#50fa7b 104 | Error=italic; fore:#ff5555 105 | Built-In Variables=bold; fore:#f1fa8c 106 | [AutoIt3 Script] 107 | Comment=fore:#6272a4 108 | Number=bold; fore:#ff5555 109 | Function=bold 110 | User-Defined Function=fore:#ffb86c 111 | Keyword=bold; italic 112 | Macro=bold; fore:#ff79c6 113 | String=fore:#8be9fd 114 | Operator=bold 115 | Variable=italic; fore:#bd93f9 116 | Send Key=bold; fore:#50fa7b 117 | Preprocessor=bold 118 | Special=bold 119 | [AviSynth Script] 120 | Comment=fore:#6272a4 121 | String=fore:#8be9fd 122 | Number=bold; fore:#ff5555 123 | Keyword=bold; italic 124 | Filter=bold 125 | Clip Property=fore:#bd93f9 126 | Plugin=bold; fore:#f1fa8c 127 | Function=fore:#f1fa8c 128 | [Awk Script] 129 | Keyword=bold 130 | Keyword 2nd=bold; fore:#bd93f9 131 | Comment=fore:#6272a4 132 | String=fore:#8be9fd 133 | Number=bold; fore:#ff5555 134 | Operator=bold 135 | [Batch Files] 136 | Comment=fore:#6272a4 137 | Keyword=bold 138 | Identifier=fore:#ff79c6 139 | Operator=bold 140 | Command=bold; italic 141 | Label=bold; fore:#ff79c6 142 | [C# Source Code] 143 | Comment=fore:#6272a4 144 | Keyword=bold 145 | Identifier=fore:#ff79c6 146 | String=fore:#8be9fd 147 | Verbatim String=fore:#bd93f9 148 | Number=bold; fore:#ff5555 149 | Operator=bold 150 | Preprocessor=bold 151 | Global Class=bold; fore:#f1fa8c 152 | [C/C++ Source Code] 153 | Comment=fore:#6272a4 154 | Keyword=bold; italic 155 | Keyword 2nd=fore:#bd93f9; bold; italic 156 | Typedefs/Classes=bold; italic 157 | String=fore:#8be9fd 158 | Number=bold; fore:#ff5555 159 | Operator=bold 160 | Preprocessor=bold 161 | [CIL Assembly] 162 | Keyword=bold; fore:#bd93f9 163 | Type Keyword=fore:#ff79c6 164 | Directive=bold 165 | Instruction= 166 | Comment=fore:#6272a4 167 | String=fore:#8be9fd 168 | Label=bold; fore:#ff79c6 169 | Number=bold; fore:#ff5555 170 | Operator= 171 | [Cmake Script] 172 | Comment=fore:#6272a4 173 | String=fore:#8be9fd 174 | Function=bold 175 | Parameter=bold; fore:#f1fa8c 176 | Variable=fore:#bd93f9 177 | While Def=bold; italic 178 | For Each Def=bold; italic 179 | If Def=bold; italic 180 | Macro Def=bold; italic 181 | Variable within String=bold; fore:#bd93f9 182 | Number=bold; fore:#ff5555 183 | [Coffeescript] 184 | Comment=fore:#6272a4 185 | String=fore:#8be9fd 186 | Identifier= 187 | Operator=bold; fore:#f8f8f2 188 | Preprocessor=bold 189 | Number=bold; fore:#ff5555 190 | Regex=fore:#bd93f9 191 | Global Class=fore:#f1fa8c 192 | Word=fore:#8be9fd 193 | Verbatim=fore:#8be9fd 194 | [Configuration Files] 195 | Comment=fore:#6272a4 196 | Section=bold; fore:#ff79c6 197 | Assignment=fore:#8be9fd 198 | Default Value=fore:#f1fa8c ;bold 199 | [CSS Style Sheets] 200 | Comment=fore:#6272a4 201 | HTML Tag=bold 202 | Tag-Class=bold; fore:#f1fa8c 203 | Tag-ID=bold; fore:#ffb86c 204 | Tag-Attribute=fore:#ff79c6 205 | Pseudo-Class=fore:#bd93f9 206 | Pseudo-Element=italic 207 | CSS Property=bold 208 | String=fore:#8be9fd 209 | Value=fore:#ff79c6 210 | Operator=bold 211 | Important=bold; fore:#8be9fd 212 | Directive=bold; italic 213 | Media=bold; italic; fore:#ffb86c 214 | Variable=bold; fore:#ffb86c 215 | Unknown Pseudo-Class=fore:#ff5555; italic 216 | Unknown Property=bold; fore:#ff5555; italic 217 | [CSV Prism] 218 | Column 0=bold 219 | Column 1=fore:#ff5555 220 | Column 2=bold; fore:#ffb86c 221 | Column 3=fore:#f1fa8c 222 | Column 4=fore:#50fa7b 223 | Column 5=fore:#8be9fd 224 | Column 6=fore:#bd93f9 225 | Column 7=bold; fore:#ff79c6 226 | Column 8= 227 | Column 9=italic; fore:#50fa7b 228 | [D Source Code] 229 | Comment=fore:#6272a4 230 | Comment Doc=fore:#6272a4 231 | Number=bold; fore:#ff5555 232 | Keyword=bold 233 | Keyword 2nd=bold; fore:#bd93f9 234 | Typedef=italic 235 | String=fore:#8be9fd 236 | Operator=bold 237 | [Diff Files] 238 | Comment=fore:#6272a4 239 | Command=bold; fore:#f1fa8c 240 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 241 | Position Setting=fore:#BFBFBF; back:#002B55 242 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 243 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 244 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 245 | [Go Source Code] 246 | Comment=fore:#6272a4 247 | Number=bold; fore:#ff5555 248 | Keyword=bold 249 | Keyword 2nd=bold; fore:#bd93f9 250 | Typedef=bold; italic 251 | String=fore:#8be9fd 252 | Operator=bold 253 | [Inno Setup Script] 254 | Comment=fore:#6272a4 255 | Keyword=bold 256 | Parameter=bold; fore:#f1fa8c 257 | Section=bold; fore:#f8f8f2 258 | Preprocessor=bold; fore:#ff79c6 259 | Inline Expansion=bold; fore:#bd93f9 260 | Pascal Comment=fore:#6272a4 261 | Pascal Keyword=bold; italic 262 | String=fore:#8be9fd 263 | [Java Source Code] 264 | Comment=fore:#6272a4 265 | Keyword=fore:#bd93f9; bold; italic 266 | String=fore:#8be9fd 267 | Regex=fore:#bd93f9 268 | Number=bold; fore:#ff5555 269 | Operator=bold 270 | [JavaScript] 271 | Comment=fore:#6272a4 272 | Keyword=fore:#bd93f9; bold 273 | String=fore:#8be9fd 274 | Regex=fore:#50fa7b 275 | Number=bold; fore:#ff5555 276 | Operator=bold 277 | [JSON] 278 | String=fore:#89B8C2 279 | Number=bold; fore:#E27878 280 | LD Keyword=fore:#ffb86c 281 | Operator= 282 | Property Name=fore:#50fa7b 283 | Regex=fore:#50fa7b 284 | ESC Sequence=fore:#A093C7 285 | Parsing Error=fore:#E27878 286 | [LaTeX Files] 287 | Command=bold 288 | Comment=fore:#6272a4 289 | Math=bold; fore:#50fa7b 290 | Special Char=fore:#8be9fd 291 | Tag=bold; fore:#bd93f9 292 | Verbatim Segment=bold; italic; bold; fore:#f8f8f2; back:#44475a 293 | [Lua Script] 294 | Comment=fore:#6272a4 295 | Number=bold; fore:#ff5555 296 | Keyword=bold 297 | Basic Functions=bold 298 | String, Table & Math Functions=bold; fore:#50fa7b 299 | Input, Output & System Facilities=bold; fore:#bd93f9 300 | String=fore:#8be9fd 301 | Literal String=fore:#8be9fd 302 | Operator=bold 303 | Label=bold; fore:#ff79c6 304 | [Makefiles] 305 | Comment=fore:#6272a4 306 | Identifier=fore:#f1fa8c 307 | Target=bold 308 | Preprocessor=bold; fore:#bd93f9 309 | [Markdown] 310 | Strong=bold; fore:#f1fa8c 311 | Emphasis=italic; fore:#f1fa8c 312 | Header 1=bold; fore:#ff5555 313 | Header 2=bold; fore:#ff5555 314 | Header 3=bold; fore:#ff5555 315 | Header 4=bold; fore:#ff5555 316 | Header 5=bold; fore:#ff5555 317 | Header 6=bold; fore:#ff5555 318 | Unordered List=bold; fore:#8be9fd 319 | Ordered List=bold; fore:#8be9fd 320 | Pre Char=fore:#ffb86c; back:#3d425b 321 | Block Quote=fore:#ffb86c 322 | Strikeout=fore:#bd93f9; italic 323 | Horizontal Rule=size:+2; bold 324 | Link=fore:#8be9fd 325 | Code=fore:#f1fa8c 326 | [MATLAB] 327 | Comment=fore:#6272a4 328 | Number=bold; fore:#ff5555 329 | Keyword=fore:#bd93f9; bold 330 | String=fore:#8be9fd 331 | Operator=bold 332 | [Nim Source Code] 333 | Comment=fore:#6272a4 334 | Keyword=fore:#bd93f9; bold 335 | String Double Quoted=fore:#8be9fd 336 | String Single Quoted=fore:#50fa7b 337 | String Triple Double Quotes=italic; fore:#8be9fd 338 | String Triple Single Quotes=italic; fore:#50fa7b 339 | Number=bold; fore:#ff5555 340 | Operator=bold 341 | Function name=fore:#f1fa8c 342 | [NSIS Script] 343 | Comment=fore:#6272a4 344 | String=fore:#8be9fd 345 | Function=fore:#bd93f9; bold 346 | Variable=italic; fore:#f1fa8c 347 | Variable within String=bold; italic; fore:#f1fa8c 348 | Number=bold; fore:#ff5555 349 | Constant=fore:#50fa7b 350 | Section=bold; fore:#ffb86c 351 | Sub Sectionbold; fore:#f8f8f2 352 | Section Group=bold; fore:#50fa7b 353 | Function Definition=bold; italic 354 | PageEx=bold; italic 355 | If Definition=bold; italic 356 | Macro Definition=bold; italic 357 | [Pascal Source Code] 358 | Comment=fore:#6272a4 359 | Keyword=fore:#bd93f9; bold 360 | String=fore:#8be9fd 361 | Number=bold; fore:#ff5555 362 | Inline Asm=fore:#ffb86c 363 | Preprocessor=bold; fore:#f1fa8c 364 | [Perl Script] 365 | Comment=fore:#6272a4 366 | Keyword=bold 367 | String Double Quoted=fore:#8be9fd 368 | String Single Quoted=fore:#50fa7b 369 | Number=bold; fore:#ff5555 370 | Scalar $var=italic; fore:#ffb86c 371 | Array @var=italic; fore:#f1fa8c 372 | Hash %var=italic; fore:#50fa7b 373 | Symbol Table *var=fore:#ff79c6 374 | Regex /re/ or m{re}=fore:#bd93f9 375 | Substitution s/re/ore/=fore:#bd93f9; back:#44475a 376 | Back Ticks=fore:#f1fa8c 377 | Here-Doc (Delimiter)=bold; back:#44475a 378 | Here-Doc (Single Quoted, q)=italic; fore:#50fa7b; back:#44475a 379 | Here-Doc (Double Quoted, qq)=italic; fore:#8be9fd; back:#44475a 380 | Here-Doc (Back Ticks, qx)=italic; bold; fore:#f1fa8c; back:#44475a 381 | Single Quoted String (Generic, q)=fore:#50fa7b 382 | Double Quoted String (qq)=fore:#8be9fd 383 | Back Ticks (qx)=fore:#f1fa8c 384 | Regex (qr)=fore:#bd93f9 385 | Array (qw)=fore:#ffb86c 386 | Prototype=bold; fore:#bd93f9 387 | Format Identifier=bold; fore:#8be9fd 388 | Format Body=fore:#0093EA; back:#2A2A2A 389 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 390 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 391 | Data Section=fore:#BFBFBF; back:#2A2A2A 392 | Parsing Error=bold; italic; fore:#ff5555 393 | [PowerShell Script] 394 | Comment=fore:#6272a4 395 | Keyword=fore:#bd93f9; bold; italic 396 | String=fore:#8be9fd 397 | Number=bold; fore:#ff5555 398 | Variable=italic; fore:#f1fa8c 399 | Cmdlet=fore:#ff79c6; bold 400 | Alias=bold; fore:#50fa7b 401 | [Python Script] 402 | Comment=fore:#6272a4 403 | Keyword=fore:#bd93f9; bold 404 | String Double Quoted=fore:#8be9fd 405 | String Single Quoted=fore:#50fa7b 406 | String Triple Double Quotes=italic; fore:#8be9fd 407 | String Triple Single Quotes=italic; fore:#50fa7b 408 | Number=bold; fore:#ff5555 409 | Operator=bold 410 | Function Name=italic 411 | Class Name=fore:#f1fa8c 412 | [Registry Files] 413 | Comment=fore:#6272a4 414 | Value Name= 415 | String=fore:#8be9fd 416 | Value Type=bold 417 | Hex=bold; fore:#ff5555 418 | Added Key=bold; fore:#ffb86c; 419 | Deleted Key=fore:#f1fa8c 420 | GUID in Key Path=bold; fore:#bd93f9 421 | Parameter=fore:#50fa7b 422 | Escaped=bold; fore:#50fa7b 423 | [Resource Script] 424 | Comment=fore:#6272a4 425 | Keyword=bold 426 | String=fore:#8be9fd 427 | Number=bold; fore:#ff5555 428 | Operator=bold 429 | Preprocessor=fore:#bd93f9 430 | [R-S-SPlus Statistics Code] 431 | Comment=fore:#6272a4 432 | Keyword=fore:#50fa7b; bold; italic 433 | Base Package Functions=bold; fore:#ff79c6 434 | Other Package Functions=bold; fore:#f1fa8c 435 | Number=bold; fore:#ff5555 436 | String=fore:#8be9fd 437 | Operator=bold 438 | Infix=fore:#bd93f9 439 | Infix EOL=fore:#bd93f9; back:#44475a; eolfilled 440 | [Ruby Script] 441 | Comment=fore:#6272a4 442 | Keyword=fore:#bd93f9; bold 443 | Number=bold; fore:#ff5555 444 | Operator=bold 445 | String=fore:#8be9fd; bold 446 | Class Name=italic 447 | Function Name=fore:#bd93f9 448 | Regex=fore:#50fa7b 449 | Symbol=bold; fore:#ffb86c 450 | Module Name=bold; fore:#ff79c6 451 | Instance Var=bold; fore:#50fa7b 452 | Class Var=bold; fore:#f1fa8c 453 | Data Section=bold; fore:#f8f8f2; back:#44475a; eolfilled 454 | [Rust Source Code] 455 | Keyword=fore:#bd93f9; bold 456 | Build-In Type=bold; fore:#8be9fd 457 | Other Keyword=bold; italic 458 | Number=bold; fore:#ff5555 459 | String=fore:#8be9fd 460 | Operator=bold 461 | Macro Definition=fore:#50fa7b 462 | Rust Lifetime=fore:#ffb86c 463 | Byte String=fore:#bd93f9 464 | Parsing Error=italic; fore:#ff5555 465 | [Shell Script] 466 | Error=italic; fore:#ff5555 467 | Comment=fore:#6272a4 468 | Number=bold; fore:#ff5555 469 | Keyword=fore:#bd93f9; bold 470 | String Double Quoted=fore:#8be9fd 471 | String Single Quoted=fore:#50fa7b 472 | Scalar=fore:#ff79c6 473 | Parameter Expansion=fore:#bd93f9 474 | Back Ticks=fore:#f1fa8c 475 | Here-Doc (Delimiter)=bold; fore:#ffb86c 476 | Here-Doc (Single Quoted, q)=bold; fore:#f8f8f2; back:#44475a; eolfilled 477 | Operator=bold 478 | [SQL Query] 479 | Comment=fore:#6272a4 480 | Keyword=bold 481 | Value Type=bold; fore:#f1fa8c 482 | String=fore:#8be9fd 483 | Identifier=fore:#bd93f9 484 | Quoted Identifier=bold; fore:#bd93f9 485 | Number=bold; fore:#ff5555 486 | Operator=bold 487 | [Tcl Script] 488 | Comment=fore:#6272a4 489 | Keyword=fore:#bd93f9; bold 490 | Number=bold; fore:#ff5555 491 | String=fore:#8be9fd 492 | Operator=bold 493 | Identifier= 494 | Modifier=italic; fore:#50fa7b 495 | Substitution=bold; fore:#f8f8f2 496 | [TOML Config] 497 | Keyword=bold; fore:#bd93f9 498 | Comment=fore:#6272a4 499 | Section=bold; fore:#ff79c6 500 | Key= 501 | Assignment=bold 502 | Value=fore:#8be9fd 503 | Number=bold; fore:#ff5555 504 | Date-Time=fore:#50fa7b 505 | String=fore:#8be9fd 506 | Parsing Error=italic; fore:#ff5555; 507 | [VBScript] 508 | Comment=fore:#6272a4 509 | Keyword=bold; fore:#bd93f9 510 | String=fore:#8be9fd 511 | Number=bold; fore:#ff5555 512 | Operator=bold 513 | [VHDL] 514 | Comment=fore:#6272a4 515 | Number=bold; fore:#ff5555 516 | String=fore:#50fa7b 517 | Operator= 518 | Keyword=bold; fore:#bd93f9 519 | Standard Operator=bold; fore:#ffb86c 520 | Attribute=fore:#f1fa8c 521 | Standard Function=bold; fore:#50fa7b 522 | Standard Package=bold; fore:#ff79c6 523 | Standard Type=bold; fore:#ff79c6 524 | [Visual Basic] 525 | Comment=fore:#6272a4 526 | Keyword=bold; fore:#bd93f9 527 | String=fore:#8be9fd 528 | Number=bold; fore:#ff5555 529 | Operator= 530 | Preprocessor=bold; fore:#f1fa8c 531 | [Web Source Code] 532 | HTML Tag=bold; fore:#bd93f9 533 | HTML Unknown Tag=fore:#ff5555 534 | HTML Attribute=fore:#8be9fd 535 | HTML Unknown Attribute=fore:#ff5555 536 | HTML Value=fore:#f1fa8c 537 | HTML String=fore:#50fa7b 538 | HTML Comment=fore:#6272a4 539 | HTML Entity=fore:#f1fa8c 540 | HTML Other Inside Tag=fore:#f1fa8c 541 | XML Identifier=bold 542 | SGML=fore:#bd93f9; bold 543 | ASP Start Tag=bold; italic; fore:#ff79c6 544 | PHP Start Tag=bold; italic; fore:#ff79c6 545 | PHP Comment=fore:#6272a4 546 | PHP Keyword=bold; fore:#bd93f9 547 | PHP String=fore:#8be9fd 548 | PHP Simple String=fore:#50fa7b 549 | PHP Number=bold; fore:#ff5555 550 | PHP Operator=bold 551 | PHP Variable=italic; fore:#f1fa8c 552 | PHP String Variable=bold; italic; fore:#ffb86c 553 | PHP Complex Variable=italic; fore:#ff79c6 554 | JS Comment=fore:#6272a4 555 | JS Keyword=bold 556 | JS String=fore:#8be9fd 557 | JS Regex=fore:#f1fa8c 558 | JS Number=bold; fore:#ff5555 559 | JS Symbols=bold 560 | ASP JS Comment=fore:#6272a4 561 | ASP JS Keyword=bold 562 | ASP JS String=fore:#8be9fd 563 | ASP JS Regex=fore:#f1fa8c 564 | ASP JS Number=bold; fore:#ff5555 565 | ASP JS Symbols=bold 566 | VBS Comment=fore:#6272a4 567 | VBS Keyword=bold 568 | VBS String=fore:#8be9fd 569 | VBS Number=bold; fore:#ff5555 570 | ASP VBS Comment=fore:#6272a4 571 | ASP VBS Keyword=bold 572 | ASP VBS String=fore:#8be9fd 573 | ASP VBS Number=bold; fore:#ff5555 574 | [XML Document] 575 | XML Tag=fore:#bd93f9 576 | XML Attribute=fore:#8be9fd 577 | XML Value=fore:#f1fa8c 578 | XML String=fore:#50fa7b 579 | XML Other Inside Tag=bold; fore:#f1fa8c 580 | XML Comment=fore:#6272a4 581 | XML Entity=bold 582 | XML Identifier=bold 583 | SGML=fore:#bd93f9; bold 584 | CDATA=fore:#50fa7b 585 | [YAML] 586 | Comment=fore:#6272a4 587 | Identifier=fore:#8be9fd 588 | Keyword=bold 589 | Number=bold; fore:#ff5555 590 | Document=bold; fore:#f8f8f2; back:#44475a; eolfilled 591 | Error=italic; fore:#ff5555 592 | Operator=bold; fore:#ffb86c 593 | Text=fore:#bd93f9 594 | Reference=fore:#f1fa8c 595 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_ICEBERG.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: ICEBERG (by cocopon, License:MIT) 7 | # https://github.com/cocopon/iceberg.vim 8 | # 9 | 10 | [Custom Colors] 11 | 01=#161821 12 | 02=#1E2132 13 | 03=#3D425B 14 | 04=#003CE6 15 | 05=#C6C8D1 16 | 06=#F8FD99 17 | 07=#F8FD99 18 | 08=#A46000 19 | 09=#E98989 20 | 10=#E27878 21 | 11=#E2A478 22 | 12=#C0CA8E 23 | 13=#B4BE82 24 | 14=#89B8C2 25 | 15=#84A0C6 26 | 16=#A093C7 27 | [Styles] 28 | Use2ndDefaultStyle=true 29 | [CIL Assembly] 30 | Keyword=bold; fore:#a093c7 31 | Type Keyword=fore:#84a0c6 32 | Directive=bold 33 | Instruction= 34 | Comment=fore:#c6c8d1 35 | String=fore:#89b8c2 36 | Label=bold; fore:#84a0c6 37 | Number=bold; fore:#e27878 38 | Operator= 39 | [Common Base] 40 | FileNameExtensions= 41 | Default Style=font:Meiryo; size:9; back:#161821 42 | Margins and Line Numbers=font:Arial; size:8; fore:#C6C8D1; back:#1E2132 43 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 44 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 45 | Control Characters (Font)=size:-1 46 | Indentation Guide (Color)=fore:#C6C8D1 47 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 48 | Whitespace (Colors, Size 0-12)=fore:#C0CA8E 49 | Current Line Background (Color)=back:#1E2132 50 | Caret (Color, Size 1-3)=size:2 51 | Long Line Marker (Colors)=fore:#3D425B 52 | Extra Line Spacing (Size)=size:2 53 | Bookmarks and Folding (Colors, Size)=fore:#E2A478; back:#FEFEFE; case:U; alpha:50 54 | Mark Occurrences (Indicator)=fore:#E27878; alpha:100; alpha2:100; indic_roundbox 55 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 56 | Multi Edit Indicator=fore:#00A5FF; indic_box 57 | Inline-IME Color=fore:#B4BE82 58 | [2nd Common Base] 59 | FileNameExtensions= 60 | 2nd Default Style=font:Meiryo; size:9; back:#161821 61 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#C6C8D1; back:#1E2132 62 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 63 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 64 | 2nd Control Characters (Font)=size:-1 65 | 2nd Indentation Guide (Color)=fore:#C6C8D1 66 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 67 | 2nd Whitespace (Colors, Size 0-12)=fore:#C0CA8E 68 | 2nd Current Line Background (Color)=back:#1E2132 69 | 2nd Caret (Color, Size 1-3)=size:2 70 | 2nd Long Line Marker (Colors)=fore:#3D425B 71 | 2nd Extra Line Spacing (Size)=size:2 72 | 2nd Bookmarks and Folding (Colors, Size)=fore:#E2A478; back:#FEFEFE; case:U; alpha:50 73 | 2nd Mark Occurrences (Indicator)=fore:#E27878; alpha:100; alpha2:100; indic_roundbox 74 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 75 | 2nd Multi Edit Indicator=fore:#00A5FF; indic_box 76 | 2nd Inline-IME Color=fore:#B4BE82 77 | [Text Files] 78 | FileNameExtensions=txt; text; tmp; log; asc; doc; wtx 79 | Default=font:Meiryo; size:9 80 | Margins and Line Numbers=font:Lucida Console; size:-2 81 | Extra Line Spacing (Size)=size:-1 82 | [ANSI Art] 83 | FileNameExtensions=nfo; diz; \^Readme$ 84 | Default=font:Lucida Console 85 | Margins and Line Numbers=font:Arial; size:7 86 | Matching Braces= 87 | Matching Braces Error= 88 | Extra Line Spacing (Size)=size:0 89 | [Apache Config Files] 90 | FileNameExtensions=conf; cfg; cnf; htaccess; prefs; iface; prop; po; te; \^Kconfig$; \^Doxyfile$ 91 | Default= 92 | Comment=fore:#C6C8D1 93 | String=fore:#89B8C2 94 | Number=bold; fore:#E27878 95 | Directive=bold 96 | IP Address=bold; fore:#E98989 97 | [Assembly Script] 98 | FileNameExtensions=asm; s; sx; inc; a51 99 | Default= 100 | Comment=fore:#C6C8D1 101 | Identifier= 102 | String=fore:#89B8C2 103 | Number=bold; fore:#E27878 104 | Operator=bold 105 | CPU Instruction=bold 106 | FPU Instruction=bold 107 | Extended Instruction=bold 108 | Directive=bold; italic 109 | Directive Operand=bold; italic 110 | Register=fore:#E2A478 111 | [AutoHotkey_L Script] 112 | FileNameExtensions=ahkl; ahk; ia; scriptlet 113 | Default= 114 | Identifier= 115 | Comment=fore:#C6C8D1 116 | String=fore:#89B8C2 117 | Label=bold; fore:#84A0C6 118 | HotKey=bold; fore:#E2A478 119 | HotString=fore:#C0CA8E 120 | KeyHotstringOption=fore:#C0CA8E 121 | Hex Number=fore:#E27878 122 | Number=bold; fore:#E27878 123 | Variable=bold; fore:#A093C7 124 | Variable Dereferencing=bold; fore:#A093C7 125 | Object=bold 126 | User-Defined Function=bold; italic 127 | Directive=italic 128 | Command=bold 129 | Parameter=fore:#C0CA8E 130 | Flow of Control=bold; italic 131 | Function=italic 132 | Built-In Variables=bold; fore:#C0CA8E 133 | Key=bold 134 | Escape=bold; fore:#B4BE82 135 | Error=italic; fore:#E27878 136 | [AutoIt3 Script] 137 | FileNameExtensions=au3 138 | Default= 139 | Comment=fore:#C6C8D1 140 | Number=bold; fore:#E27878 141 | Function=bold 142 | User-Defined Function=fore:#E2A478 143 | Keyword=bold; italic 144 | Macro=bold; fore:#84A0C6 145 | String=fore:#89B8C2 146 | Operator=bold 147 | Variable=italic; fore:#A093C7 148 | Send Key=bold; fore:#B4BE82 149 | Preprocessor=bold 150 | Special=bold 151 | [AviSynth Script] 152 | FileNameExtensions=avs; avsi 153 | Default= 154 | Comment=fore:#C6C8D1 155 | Operator= 156 | String=fore:#89B8C2 157 | Number=bold; fore:#E27878 158 | Keyword=bold; italic 159 | Filter=bold 160 | Plugin=bold; fore:#C0CA8E 161 | Function=fore:#C0CA8E 162 | Clip Property=fore:#A093C7 163 | [Awk Script] 164 | FileNameExtensions=awk 165 | Default= 166 | Keyword=bold 167 | Keyword 2nd=bold; fore:#A093C7 168 | Identifier= 169 | Comment=fore:#C6C8D1 170 | String=fore:#89B8C2 171 | Number=bold; fore:#E27878 172 | Operator=bold 173 | [Batch Files] 174 | FileNameExtensions=bat; cmd 175 | Default= 176 | Comment=fore:#C6C8D1 177 | Keyword=bold 178 | Identifier=fore:#84A0C6 179 | Operator=bold 180 | Command=bold; italic 181 | Label=bold; fore:#84A0C6 182 | [C# Source Code] 183 | FileNameExtensions=cs; csx; vala 184 | Default= 185 | Comment=fore:#C6C8D1 186 | Keyword=bold 187 | Identifier=fore:#84A0C6 188 | String=fore:#89B8C2 189 | Verbatim String=fore:#A093C7 190 | Number=bold; fore:#E27878 191 | Operator=bold 192 | Preprocessor=bold 193 | Global Class=bold; fore:#C0CA8E 194 | [C/C++ Source Code] 195 | FileNameExtensions=c; cpp; cxx; cc; h; hpp; hxx; hh; mm; idl; midl; inl; odl; xpm; pch 196 | Default= 197 | Identifier= 198 | Comment=fore:#C6C8D1 199 | Keyword=bold; italic 200 | Keyword 2nd=bold; italic; fore:#A093C7 201 | Typedefs/Classes=bold; italic 202 | String=fore:#89B8C2 203 | Number=bold; fore:#E27878 204 | Operator=bold 205 | Preprocessor=bold 206 | [Cmake Script] 207 | FileNameExtensions=cmake; ctest; \^cmakelists\.txt$ 208 | Default= 209 | Comment=fore:#C6C8D1 210 | String=fore:#89B8C2 211 | Function=bold 212 | Parameter=bold; fore:#C0CA8E 213 | Variable=fore:#A093C7 214 | While Def=bold; italic 215 | For Each Def=bold; italic 216 | If Def=bold; italic 217 | Macro Def=bold; italic 218 | Variable within String=bold; fore:#A093C7 219 | Number=bold; fore:#E27878 220 | [Coffeescript] 221 | FileNameExtensions=coffee; cakefile 222 | Default= 223 | Comment=fore:#C6C8D1 224 | String=fore:#89B8C2 225 | Preprocessor=bold 226 | Identifier= 227 | Operator=bold 228 | Number=bold; fore:#E27878 229 | Regex=fore:#A093C7 230 | Global Class=fore:#C0CA8E 231 | Word=fore:#89B8C2 232 | Verbatim=fore:#89B8C2 233 | [Configuration Files] 234 | FileNameExtensions=ini; inf; properties; oem; sif; url; sed; theme; clw 235 | Default= 236 | Comment=fore:#C6C8D1 237 | Section=bold; fore:#84A0C6 238 | Assignment=fore:#89B8C2 239 | Default Value=bold; fore:#C0CA8E 240 | [CSS Style Sheets] 241 | FileNameExtensions=css; less; hss; sass; scss 242 | Default= 243 | Comment=fore:#C6C8D1 244 | HTML Tag=bold 245 | Tag-Class=bold; fore:#C0CA8E 246 | Tag-ID=bold; fore:#E2A478 247 | Tag-Attribute=fore:#84A0C6 248 | Pseudo-Class=fore:#A093C7 249 | Pseudo-Element=italic 250 | CSS Property=bold 251 | String=fore:#89B8C2 252 | Value=fore:#84A0C6 253 | Operator=bold 254 | Important=bold; fore:#89B8C2 255 | Directive=bold; italic 256 | Media=bold; italic; fore:#E2A478 257 | Variable=bold; fore:#E2A478 258 | Unknown Pseudo-Class=italic; fore:#E27878 259 | Unknown Property=bold; italic; fore:#E27878 260 | [CSV Prism] 261 | FileNameExtensions=csv 262 | Default= 263 | Margins and Line Numbers= 264 | Extra Line Spacing (Size)=size:-1 265 | Column 0=bold 266 | Column 1=fore:#E27878 267 | Column 2=bold; fore:#E2A478 268 | Column 3=fore:#C0CA8E 269 | Column 4=fore:#B4BE82 270 | Column 5=fore:#89B8C2 271 | Column 6=fore:#A093C7 272 | Column 7=bold; fore:#84A0C6 273 | Column 8= 274 | Column 9=italic; fore:#B4BE82 275 | [D Source Code] 276 | FileNameExtensions=d; dd; di 277 | Default= 278 | Comment=fore:#C6C8D1 279 | Comment Doc=fore:#C6C8D1 280 | Number=bold; fore:#E27878 281 | Keyword=bold 282 | Keyword 2nd=bold; fore:#A093C7 283 | Typedef=italic 284 | String=fore:#89B8C2 285 | Operator=bold 286 | Identifier= 287 | [Diff Files] 288 | FileNameExtensions=diff; patch 289 | Default= 290 | Comment=fore:#C6C8D1 291 | Command=bold; fore:#C0CA8E 292 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 293 | Position Setting=fore:#BFBFBF; back:#002B55 294 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 295 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 296 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 297 | [Go Source Code] 298 | FileNameExtensions=go 299 | Default= 300 | Comment=fore:#C6C8D1 301 | Number=bold; fore:#E27878 302 | Keyword=bold 303 | Keyword 2nd=bold; fore:#A093C7 304 | Typedef=bold; italic 305 | String=fore:#89B8C2 306 | Operator=bold 307 | Identifier= 308 | [Inno Setup Script] 309 | FileNameExtensions=iss; isl; islu 310 | Default= 311 | Comment=fore:#C6C8D1 312 | Keyword=bold 313 | Parameter=bold; fore:#C0CA8E 314 | Section=bold 315 | Preprocessor=bold; fore:#84A0C6 316 | Inline Expansion=bold; fore:#A093C7 317 | Pascal Comment=fore:#C6C8D1 318 | Pascal Keyword=bold; italic 319 | String=fore:#89B8C2 320 | [Java Source Code] 321 | FileNameExtensions=java; jad; aidl; bsh 322 | Default= 323 | Comment=fore:#C6C8D1 324 | Keyword=bold; italic; fore:#A093C7 325 | Identifier= 326 | String=fore:#89B8C2 327 | Regex=fore:#A093C7 328 | Number=bold; fore:#E27878 329 | Operator=bold 330 | [JavaScript] 331 | FileNameExtensions=js; jse; jsm; as; mjs; qs 332 | Default= 333 | Comment=fore:#C6C8D1 334 | Keyword=bold; fore:#A093C7 335 | Identifier= 336 | String=fore:#89B8C2 337 | Regex=fore:#B4BE82 338 | Number=bold; fore:#E27878 339 | Operator=bold 340 | [JSON] 341 | FileNameExtensions=json; har; ipynb; wxcp; jshintrc; eslintrc; babelrc; prettierrc; stylelintrc; jsonld; jsonc; arcconfig; arclint; jscop 342 | Default= 343 | Comment=fore:#646464 344 | Keyword=bold; fore:#957000 345 | LD Keyword=fore:#E2A478 346 | String=fore:#89B8C2 347 | Number=bold; fore:#E27878 348 | Operator= 349 | Property Name=fore:#B4BE82 350 | ESC Sequence=fore:#A093C7 351 | Parsing Error=fore:#E27878 352 | [LaTeX Files] 353 | FileNameExtensions=tex; latex; sty; texi; texinfo; txi 354 | Default= 355 | Command=bold 356 | Comment=fore:#C6C8D1 357 | Math=bold; fore:#B4BE82 358 | Special Char=fore:#89B8C2 359 | Tag=bold; fore:#A093C7 360 | Verbatim Segment=bold; italic; back:#3D425B 361 | Error=fore:#FFFF00; back:#A00000 362 | [Lua Script] 363 | FileNameExtensions=lua; wlua; nse; luadoc; luax 364 | Default= 365 | Comment=fore:#C6C8D1 366 | Number=bold; fore:#E27878 367 | Keyword=bold 368 | Basic Functions=bold 369 | String, Table & Math Functions=bold; fore:#B4BE82 370 | Input, Output & System Facilities=bold; fore:#A093C7 371 | String=fore:#89B8C2 372 | Literal String=fore:#89B8C2 373 | Preprocessor=fore:#FF8000 374 | Operator=bold 375 | Identifier= 376 | Label=bold; fore:#84A0C6 377 | [Makefiles] 378 | FileNameExtensions=mak; make; mk; dsp; msc; msvc; am; pro; pri; gmk; ninja; dsw; \^Makefile$; \^Kbuild$ 379 | Default= 380 | Comment=fore:#C6C8D1 381 | Identifier=fore:#C0CA8E 382 | Operator= 383 | Target=bold 384 | Preprocessor=bold; fore:#A093C7 385 | [Markdown] 386 | FileNameExtensions=md; markdown; mdown; mkdn; mkd 387 | Default= 388 | Line Begin= 389 | Strong=bold; fore:#C0CA8E 390 | Emphasis=italic; fore:#C0CA8E 391 | Header 1=bold; fore:#E27878 392 | Header 2=bold; fore:#E27878 393 | Header 3=bold; fore:#E27878 394 | Header 4=bold; fore:#E27878 395 | Header 5=bold; fore:#E27878 396 | Header 6=bold; fore:#E27878 397 | Pre Char=fore:#E2A478; back:#3D425B 398 | Unordered List=bold; fore:#89B8C2 399 | Ordered List=bold; fore:#89B8C2 400 | Block Quote=fore:#E2A478 401 | Strikeout=italic; fore:#A093C7 402 | Horizontal Rule=size:+2; bold 403 | Link=fore:#89B8C2 404 | Code=fore:#C0CA8E 405 | [MATLAB] 406 | FileNameExtensions=matlab; m; sce; sci 407 | Default= 408 | Comment=fore:#C6C8D1 409 | Command=bold 410 | Number=bold; fore:#E27878 411 | Keyword=bold; fore:#A093C7 412 | String=fore:#89B8C2 413 | Operator=bold 414 | Identifier= 415 | [Nim Source Code] 416 | FileNameExtensions=nim; nimrod 417 | Default= 418 | Comment=fore:#C6C8D1 419 | Keyword=bold; fore:#A093C7 420 | Identifier= 421 | String Double Quoted=fore:#89B8C2 422 | String Single Quoted=fore:#B4BE82 423 | String Triple Double Quotes=italic; fore:#89B8C2 424 | String Triple Single Quotes=italic; fore:#B4BE82 425 | Number=bold; fore:#E27878 426 | Operator=bold 427 | Function name=fore:#C0CA8E 428 | Parsing Error=italic; fore:#FFFF00; back:#A00000 429 | [NSIS Script] 430 | FileNameExtensions=nsi; nsh 431 | Default= 432 | Comment=fore:#C6C8D1 433 | String=fore:#89B8C2 434 | Function=bold; fore:#A093C7 435 | Variable=italic; fore:#C0CA8E 436 | Variable within String=bold; italic; fore:#C0CA8E 437 | Number=bold; fore:#E27878 438 | Constant=fore:#B4BE82 439 | Section=bold; fore:#E2A478 440 | Sub Section=fore:#0033CC 441 | Section Group=bold; fore:#B4BE82 442 | Function Definition=bold; italic 443 | PageEx=bold; italic 444 | If Definition=bold; italic 445 | Macro Definition=bold; italic 446 | [Pascal Source Code] 447 | FileNameExtensions=pas; dpr; dpk; dfm; pp; lfm; lpr; fpd 448 | Default= 449 | Comment=fore:#C6C8D1 450 | Keyword=bold; fore:#A093C7 451 | Identifier= 452 | String=fore:#89B8C2 453 | Number=bold; fore:#E27878 454 | Operator=bold 455 | Inline Asm=fore:#E2A478 456 | Preprocessor=bold; fore:#C0CA8E 457 | [Perl Script] 458 | FileNameExtensions=pl; pm; cgi; pod; plx; stp 459 | Default= 460 | Comment=fore:#C6C8D1 461 | Keyword=bold 462 | Identifier= 463 | String Double Quoted=fore:#89B8C2 464 | String Single Quoted=fore:#B4BE82 465 | Number=bold; fore:#E27878 466 | Operator=bold 467 | Scalar $var=italic; fore:#E2A478 468 | Array @var=italic; fore:#C0CA8E 469 | Hash %var=italic; fore:#B4BE82 470 | Symbol Table *var=fore:#E98989 471 | Regex /re/ or m{re}=fore:#A093C7 472 | Substitution s/re/ore/=fore:#A093C7; back:#1E2132 473 | Back Ticks=fore:#C0CA8E 474 | Here-Doc (Delimiter)=bold; back:#1E2132 475 | Here-Doc (Single Quoted, q)=italic; fore:#B4BE82; back:#1E2132 476 | Here-Doc (Double Quoted, qq)=italic; fore:#89B8C2; back:#1E2132 477 | Here-Doc (Back Ticks, qx)=bold; italic; fore:#C0CA8E; back:#1E2132 478 | Single Quoted String (Generic, q)=fore:#B4BE82 479 | Double Quoted String (qq)=fore:#89B8C2 480 | Back Ticks (qx)=fore:#C0CA8E 481 | Regex (qr)=fore:#A093C7 482 | Array (qw)=fore:#E2A478 483 | Prototype=bold; fore:#A093C7 484 | Format Identifier=bold; fore:#89B8C2 485 | Format Body=fore:#0093EA; back:#2A2A2A 486 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 487 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 488 | Data Section=fore:#BFBFBF; back:#2A2A2A 489 | Parsing Error=bold; italic; fore:#E27878 490 | [PowerShell Script] 491 | FileNameExtensions=ps1; psd1; psm1; psc1 492 | Default= 493 | Comment=fore:#C6C8D1 494 | Keyword=bold; italic; fore:#A093C7 495 | Identifier= 496 | String=fore:#89B8C2 497 | Number=bold; fore:#E27878 498 | Operator=bold 499 | Variable=italic; fore:#C0CA8E 500 | Cmdlet=bold; fore:#84A0C6 501 | Alias=bold; fore:#B4BE82 502 | [Python Script] 503 | FileNameExtensions=py; pyw; pyx; pxd; pxi; boo; empy; cobra; gs 504 | Default= 505 | Comment=fore:#C6C8D1 506 | Keyword=bold; fore:#A093C7 507 | Identifier= 508 | String Double Quoted=fore:#89B8C2 509 | String Single Quoted=fore:#B4BE82 510 | String Triple Double Quotes=italic; fore:#89B8C2 511 | String Triple Single Quotes=italic; fore:#B4BE82 512 | Number=bold; fore:#E27878 513 | Operator=bold 514 | Function Name=italic 515 | Class Name=fore:#C0CA8E 516 | [Registry Files] 517 | FileNameExtensions=reg 518 | Default= 519 | Comment=fore:#C6C8D1 520 | Value Name= 521 | String=fore:#89B8C2 522 | Value Type=bold 523 | Hex=bold; fore:#E27878 524 | Added Key=bold; fore:#E2A478 525 | Deleted Key=fore:#C0CA8E 526 | Escaped=bold; fore:#B4BE82 527 | GUID in Key Path=bold; fore:#A093C7 528 | Parameter=fore:#B4BE82 529 | Operator=bold 530 | [Resource Script] 531 | FileNameExtensions=rc; rc2; rct; rh; dlg; lang 532 | Default= 533 | Comment=fore:#C6C8D1 534 | Keyword=bold 535 | Identifier= 536 | String=fore:#89B8C2 537 | Number=bold; fore:#E27878 538 | Operator=bold 539 | Preprocessor=fore:#A093C7 540 | [R-S-SPlus Statistics Code] 541 | FileNameExtensions=r; rdata; rds; rda 542 | Default= 543 | Comment=fore:#C6C8D1 544 | Keyword=bold; italic; fore:#B4BE82 545 | Base Package Functions=bold; fore:#84A0C6 546 | Other Package Functions=bold; fore:#C0CA8E 547 | Number=bold; fore:#E27878 548 | String=fore:#89B8C2 549 | Operator=bold 550 | Identifier= 551 | Infix=fore:#A093C7 552 | Infix EOL=fore:#A093C7; back:#3D425B; eolfilled 553 | [Ruby Script] 554 | FileNameExtensions=rb; ruby; rbw; rake; rjs; rakefile; gemspec; podspec; \^Rakefile$; \^Podfile$ 555 | Default= 556 | Comment=fore:#C6C8D1 557 | Keyword=bold; fore:#A093C7 558 | Identifier= 559 | Number=bold; fore:#E27878 560 | Operator=bold 561 | String=bold; fore:#89B8C2 562 | Class Name=italic 563 | Function Name=fore:#A093C7 564 | POD=fore:#004000; back:#C0FFC0; eolfilled 565 | Regex=fore:#B4BE82 566 | Symbol=bold; fore:#E2A478 567 | Module Name=bold; fore:#E98989 568 | Instance Var=bold; fore:#B4BE82 569 | Class Var=bold; fore:#C0CA8E 570 | Data Section=bold; back:#3D425B; eolfilled 571 | [Rust Source Code] 572 | FileNameExtensions=rs; rust 573 | Default= 574 | Identifier= 575 | Keyword=bold; fore:#A093C7 576 | Build-In Type=bold; fore:#89B8C2 577 | Other Keyword=bold; italic 578 | Number=bold; fore:#E27878 579 | Comment=italic; fore:#488080 580 | String=fore:#89B8C2 581 | Operator=bold 582 | Macro Definition=fore:#B4BE82 583 | Rust Lifetime=fore:#E2A478 584 | Parsing Error=italic; fore:#E27878 585 | Byte String=fore:#A093C7 586 | [Shell Script] 587 | FileNameExtensions=sh; csh; zsh; bash; tcsh; m4; in; \^mozconfig$ 588 | Default= 589 | Error=italic; fore:#E27878 590 | Comment=fore:#C6C8D1 591 | Number=bold; fore:#E27878 592 | Keyword=bold; fore:#A093C7 593 | String Double Quoted=fore:#89B8C2 594 | String Single Quoted=fore:#B4BE82 595 | Operator=bold 596 | Identifier= 597 | Scalar=fore:#E98989 598 | Parameter Expansion=fore:#A093C7 599 | Back Ticks=fore:#C0CA8E 600 | Here-Doc (Delimiter)=bold; fore:#E2A478 601 | Here-Doc (Single Quoted, q)=bold; back:#3D425B; eolfilled 602 | [SQL Query] 603 | FileNameExtensions=sql; mysql; hsql 604 | Default= 605 | Comment=fore:#C6C8D1 606 | Keyword=bold 607 | Value Type=bold; fore:#C0CA8E 608 | String=fore:#89B8C2 609 | Identifier=fore:#A093C7 610 | Quoted Identifier=bold; fore:#A093C7 611 | Number=bold; fore:#E27878 612 | Operator=bold 613 | [Tcl Script] 614 | FileNameExtensions=tcl; itcl; tm 615 | Default= 616 | Comment=fore:#C6C8D1 617 | Keyword=bold; fore:#A093C7 618 | Number=bold; fore:#E27878 619 | String=fore:#89B8C2 620 | Operator=bold 621 | Identifier= 622 | Substitution=bold 623 | Modifier=italic; fore:#B4BE82 624 | [TOML Config] 625 | FileNameExtensions=toml 626 | Default= 627 | Keyword=bold; fore:#A093C7 628 | Comment=fore:#C6C8D1 629 | Section=bold; fore:#84A0C6 630 | Key= 631 | Assignment=bold 632 | Value=fore:#89B8C2 633 | Number=bold; fore:#E27878 634 | Date-Time=fore:#B4BE82 635 | String=fore:#89B8C2 636 | Parsing Error=italic; fore:#E27878 637 | [VBScript] 638 | FileNameExtensions=vbs; dsm 639 | Default= 640 | Comment=fore:#C6C8D1 641 | Keyword=bold; fore:#A093C7 642 | Identifier= 643 | String=fore:#89B8C2 644 | Number=bold; fore:#E27878 645 | Operator=bold 646 | [VHDL] 647 | FileNameExtensions=vhdl; vhd 648 | Default= 649 | Comment=fore:#C6C8D1 650 | Number=bold; fore:#E27878 651 | String=fore:#B4BE82 652 | Operator= 653 | Identifier= 654 | Keyword=bold; fore:#A093C7 655 | Standard Operator=bold; fore:#E2A478 656 | Attribute=fore:#C0CA8E 657 | Standard Function=bold; fore:#B4BE82 658 | Standard Package=bold; fore:#84A0C6 659 | Standard Type=bold; fore:#84A0C6 660 | [Visual Basic] 661 | FileNameExtensions=vb; bas; frm; cls; ctl; pag; dsr; dob 662 | Default= 663 | Comment=fore:#C6C8D1 664 | Keyword=bold; fore:#A093C7 665 | Identifier= 666 | String=fore:#89B8C2 667 | Number=bold; fore:#E27878 668 | Operator= 669 | Preprocessor=bold; fore:#C0CA8E 670 | [Web Source Code] 671 | FileNameExtensions=html; htm; asp; aspx; shtml; htd; xhtml; php; php3; phtml; htt; cfm; tpl; dtd; hta; htc; jsp; mht; jd 672 | Default= 673 | HTML Tag=bold; fore:#A093C7 674 | HTML Unknown Tag=fore:#E27878 675 | HTML Attribute=fore:#89B8C2 676 | HTML Unknown Attribute=fore:#E27878 677 | HTML Value=fore:#C0CA8E 678 | HTML String=fore:#B4BE82 679 | HTML Other Inside Tag=fore:#C0CA8E 680 | HTML Comment=fore:#C6C8D1 681 | HTML Entity=fore:#C0CA8E 682 | HTML Element Text= 683 | XML Identifier=bold 684 | SGML=bold; fore:#A093C7 685 | CDATA=fore:#646464 686 | ASP Start Tag=bold; italic; fore:#84A0C6 687 | PHP Start Tag=bold; italic; fore:#84A0C6 688 | PHP Default= 689 | PHP Comment=fore:#C6C8D1 690 | PHP Keyword=bold; fore:#A093C7 691 | PHP String=fore:#89B8C2 692 | PHP Simple String=fore:#B4BE82 693 | PHP Number=bold; fore:#E27878 694 | PHP Operator=bold 695 | PHP Variable=italic; fore:#C0CA8E 696 | PHP String Variable=bold; italic; fore:#E2A478 697 | PHP Complex Variable=italic; fore:#84A0C6 698 | JS Default= 699 | JS Comment=fore:#C6C8D1 700 | JS Keyword=bold 701 | JS Identifier= 702 | JS String=fore:#89B8C2 703 | JS Regex=fore:#C0CA8E 704 | JS Number=bold; fore:#E27878 705 | JS Symbols=bold 706 | ASP JS Default= 707 | ASP JS Comment=fore:#C6C8D1 708 | ASP JS Keyword=bold 709 | ASP JS Identifier= 710 | ASP JS String=fore:#89B8C2 711 | ASP JS Regex=fore:#C0CA8E 712 | ASP JS Number=bold; fore:#E27878 713 | ASP JS Symbols=bold 714 | VBS Default= 715 | VBS Comment=fore:#C6C8D1 716 | VBS Keyword=bold 717 | VBS Identifier= 718 | VBS String=fore:#89B8C2 719 | VBS Number=bold; fore:#E27878 720 | ASP VBS Default= 721 | ASP VBS Comment=fore:#C6C8D1 722 | ASP VBS Keyword=bold 723 | ASP VBS Identifier= 724 | ASP VBS String=fore:#89B8C2 725 | ASP VBS Number=bold; fore:#E27878 726 | [XML Document] 727 | FileNameExtensions=xml; xsl; rss; svg; xul; xsd; xslt; axl; rdf; xaml; vcproj; ffs_gui; nzb; resx; plist; xrc; fbp; manifest 728 | Default= 729 | XML Tag=fore:#A093C7 730 | XML Attribute=fore:#89B8C2 731 | XML Value=fore:#C0CA8E 732 | XML String=fore:#B4BE82 733 | XML Other Inside Tag=bold; fore:#C0CA8E 734 | XML Comment=fore:#C6C8D1 735 | XML Entity=bold 736 | XML Element Text= 737 | XML Identifier=bold 738 | SGML=bold; fore:#A093C7 739 | CDATA=fore:#B4BE82 740 | [YAML] 741 | FileNameExtensions=yaml; yml 742 | Default= 743 | Comment=fore:#C6C8D1 744 | Identifier=fore:#89B8C2 745 | Keyword=bold 746 | Number=bold; fore:#E27878 747 | Reference=fore:#C0CA8E 748 | Document=bold; back:#3D425B; eolfilled 749 | Text=fore:#A093C7 750 | Error=italic; fore:#E27878 751 | Operator=bold; fore:#E2A478 752 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_Tomorrow Night.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: Tomorrow Night (by Chris Kempson, License:MIT) 7 | # https://github.com/chriskempson/tomorrow-theme 8 | # 9 | 10 | [Custom Colors] 11 | 01=#1D1F21 12 | 02=#282A2E 13 | 03=#373B41 14 | 04=#C5C8C6 15 | 05=#969896 16 | 06=#F8FD99 17 | 07=#F8FD99 18 | 08=#C5C8C6 19 | 09=#81A2BE 20 | 10=#CC6666 21 | 11=#DE935F 22 | 12=#F0C674 23 | 13=#B5BD68 24 | 14=#8ABEB7 25 | 15=#81A2BE 26 | 16=#B294BB 27 | [Styles] 28 | Use2ndDefaultStyle=true 29 | [CIL Assembly] 30 | Keyword=bold; fore:#b294bb 31 | Type Keyword=fore:#81a2be 32 | Directive=bold 33 | Instruction= 34 | Comment=fore:#969896 35 | String=fore:#8abeb7 36 | Label=bold; fore:#81a2be 37 | Number=bold; fore:#cc6666 38 | Operator= 39 | [Common Base] 40 | Default Style=font:Meiryo; size:9; fore:#C5C8C6; back:#1D1F21 41 | Margins and Line Numbers=font:Arial; size:8; fore:#969896; back:#282A2E 42 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 43 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 44 | Indentation Guide (Color)=fore:#969896 45 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 46 | Whitespace (Colors, Size 0-12)=fore:#F0C674 47 | Current Line Background (Color)=back:#282A2E 48 | Caret (Color, Size 1-3)=size:2; fore:#C5C8C6 49 | Long Line Marker (Colors)=fore:#373B41 50 | Bookmarks and Folding (Colors, Size)=fore:#DE935F; back:#FEFEFE; case:U; alpha:50 51 | Mark Occurrences (Indicator)=fore:#CC6666; alpha:100; alpha2:100; indic_roundbox 52 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 53 | Multi Edit Indicator=fore:#00A5FF; indic_box 54 | Inline-IME Color=fore:#B5BD68 55 | [2nd Common Base] 56 | 2nd Default Style=font:Meiryo; size:9; fore:#C5C8C6; back:#1D1F21 57 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#969896; back:#282A2E 58 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 59 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 60 | 2nd Indentation Guide (Color)=fore:#969896 61 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 62 | 2nd Whitespace (Colors, Size 0-12)=fore:#F0C674 63 | 2nd Current Line Background (Color)=back:#282A2E 64 | 2nd Caret (Color, Size 1-3)=size:2; fore:#C5C8C6 65 | 2nd Long Line Marker (Colors)=fore:#373B41 66 | 2nd Extra Line Spacing (Size)=size:2 67 | 2nd Bookmarks and Folding (Colors, Size)=fore:#DE935F; back:#FEFEFE; case:U; alpha:50 68 | 2nd Mark Occurrences (Indicator)=fore:#CC6666; alpha:100; alpha2:100; indic_roundbox 69 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 70 | 2nd Inline-IME Color=fore:#B5BD68 71 | [Text Files] 72 | Default=font:Meiryo; size:9 73 | [ANSI Art] 74 | Default=font:Lucida Console 75 | Margins and Line Numbers=font:Arial; size:7 76 | Extra Line Spacing (Size)=size:0 77 | [Apache Config Files] 78 | Comment=fore:#969896 79 | String=fore:#8ABEB7 80 | Number=bold; fore:#CC6666 81 | Directive=bold 82 | IP Address=bold; fore:#81A2BE 83 | [Assembly Script] 84 | Comment=fore:#969896 85 | String=fore:#8ABEB7 86 | Number=bold; fore:#CC6666 87 | Operator=bold 88 | CPU Instruction=bold 89 | FPU Instruction=bold 90 | Extended Instruction=bold 91 | Directive=bold; italic 92 | Directive Operand=bold; italic 93 | Register=fore:#DE935F 94 | [AutoHotkey_L Script] 95 | Comment=fore:#969896 96 | String=fore:#8ABEB7 97 | Label=bold; fore:#81A2BE 98 | HotKey=bold; fore:#DE935F 99 | HotString=fore:#F0C674 100 | KeyHotstringOption=fore:#F0C674 101 | Hex Number=fore:#CC6666 102 | Number=bold; fore:#CC6666 103 | Variable=bold; fore:#B294BB 104 | Variable Dereferencing=bold; fore:#B294BB 105 | Object=bold 106 | User-Defined Function=bold; italic 107 | Directive=italic 108 | Command=bold 109 | Parameter=fore:#F0C674 110 | Flow of Control=bold; italic 111 | Function=italic 112 | Built-In Variables=bold; fore:#F0C674 113 | Key=bold 114 | Escape=bold; fore:#B5BD68 115 | Error=italic; fore:#CC6666 116 | [AutoIt3 Script] 117 | Comment=fore:#969896 118 | Number=bold; fore:#CC6666 119 | Function=bold 120 | User-Defined Function=fore:#DE935F 121 | Keyword=bold; italic 122 | Macro=bold; fore:#81A2BE 123 | String=fore:#8ABEB7 124 | Operator=bold 125 | Variable=italic; fore:#B294BB 126 | Send Key=bold; fore:#B5BD68 127 | Preprocessor=bold 128 | Special=bold 129 | [AviSynth Script] 130 | Comment=fore:#969896 131 | String=fore:#8ABEB7 132 | Number=bold; fore:#CC6666 133 | Keyword=bold; italic 134 | Filter=bold 135 | Plugin=bold; fore:#F0C674 136 | Function=fore:#F0C674 137 | Clip Property=fore:#B294BB 138 | [Awk Script] 139 | Keyword=bold 140 | Keyword 2nd=bold; fore:#B294BB 141 | Comment=fore:#969896 142 | String=fore:#8ABEB7 143 | Number=bold; fore:#CC6666 144 | Operator=bold 145 | [Batch Files] 146 | Comment=fore:#969896 147 | Keyword=bold 148 | Identifier=fore:#81A2BE 149 | Operator=bold 150 | Command=bold; italic 151 | Label=bold; fore:#81A2BE 152 | [C# Source Code] 153 | Comment=fore:#969896 154 | Keyword=bold 155 | Identifier=fore:#81A2BE 156 | String=fore:#8ABEB7 157 | Verbatim String=fore:#B294BB 158 | Number=bold; fore:#CC6666 159 | Operator=bold 160 | Preprocessor=bold 161 | Global Class=bold; fore:#F0C674 162 | [C/C++ Source Code] 163 | Comment=fore:#969896 164 | Keyword=bold; italic 165 | Keyword 2nd=bold; italic; fore:#B294BB 166 | Typedefs/Classes=bold; italic 167 | String=fore:#8ABEB7 168 | Number=bold; fore:#CC6666 169 | Operator=bold 170 | Preprocessor=bold 171 | [Cmake Script] 172 | Comment=fore:#969896 173 | String=fore:#8ABEB7 174 | Function=bold 175 | Parameter=bold; fore:#F0C674 176 | Variable=fore:#B294BB 177 | While Def=bold; italic 178 | For Each Def=bold; italic 179 | If Def=bold; italic 180 | Macro Def=bold; italic 181 | Variable within String=bold; fore:#B294BB 182 | Number=bold; fore:#CC6666 183 | [Coffeescript] 184 | Comment=fore:#969896 185 | String=fore:#8ABEB7 186 | Preprocessor=bold 187 | Identifier= 188 | Operator=bold; fore:#C5C8C6 189 | Number=bold; fore:#CC6666 190 | Regex=fore:#B294BB 191 | Global Class=fore:#F0C674 192 | Word=fore:#8ABEB7 193 | Verbatim=fore:#8ABEB7 194 | [Configuration Files] 195 | Comment=fore:#969896 196 | Section=bold; fore:#81A2BE 197 | Assignment=fore:#8ABEB7 198 | Default Value=bold; fore:#F0C674 199 | [CSS Style Sheets] 200 | Comment=fore:#969896 201 | HTML Tag=bold 202 | Tag-Class=bold; fore:#F0C674 203 | Tag-ID=bold; fore:#DE935F 204 | Tag-Attribute=fore:#81A2BE 205 | Pseudo-Class=fore:#B294BB 206 | Pseudo-Element=italic 207 | CSS Property=bold 208 | String=fore:#8ABEB7 209 | Value=fore:#81A2BE 210 | Operator=bold 211 | Important=bold; fore:#8ABEB7 212 | Directive=bold; italic 213 | Media=bold; italic; fore:#DE935F 214 | Variable=bold; fore:#DE935F 215 | Unknown Pseudo-Class=italic; fore:#CC6666 216 | Unknown Property=bold; italic; fore:#CC6666 217 | [CSV Prism] 218 | Column 0=bold 219 | Column 1=fore:#CC6666 220 | Column 2=bold; fore:#DE935F 221 | Column 3=fore:#F0C674 222 | Column 4=fore:#B5BD68 223 | Column 5=fore:#8ABEB7 224 | Column 6=fore:#B294BB 225 | Column 7=bold; fore:#81A2BE 226 | Column 8= 227 | Column 9=italic; fore:#B5BD68 228 | [D Source Code] 229 | Comment=fore:#969896 230 | Comment Doc=fore:#969896 231 | Number=bold; fore:#CC6666 232 | Keyword=bold 233 | Keyword 2nd=bold; fore:#B294BB 234 | Typedef=italic 235 | String=fore:#8ABEB7 236 | Operator=bold 237 | [Diff Files] 238 | Comment=fore:#969896 239 | Command=bold; fore:#F0C674 240 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 241 | Position Setting=fore:#BFBFBF; back:#002B55 242 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 243 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 244 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 245 | [Go Source Code] 246 | Comment=fore:#969896 247 | Number=bold; fore:#CC6666 248 | Keyword=bold 249 | Keyword 2nd=bold; fore:#B294BB 250 | Typedef=bold; italic 251 | String=fore:#8ABEB7 252 | Operator=bold 253 | [Inno Setup Script] 254 | Comment=fore:#969896 255 | Keyword=bold 256 | Parameter=bold; fore:#F0C674 257 | Section=bold; fore:#C5C8C6 258 | Preprocessor=bold; fore:#81A2BE 259 | Inline Expansion=bold; fore:#B294BB 260 | Pascal Comment=fore:#969896 261 | Pascal Keyword=bold; italic 262 | String=fore:#8ABEB7 263 | [Java Source Code] 264 | Comment=fore:#969896 265 | Keyword=bold; italic; fore:#B294BB 266 | String=fore:#8ABEB7 267 | Regex=fore:#B294BB 268 | Number=bold; fore:#CC6666 269 | Operator=bold 270 | [JavaScript] 271 | Comment=fore:#969896 272 | Keyword=bold; fore:#B294BB 273 | String=fore:#8ABEB7 274 | Regex=fore:#B5BD68 275 | Number=bold; fore:#CC6666 276 | Operator=bold 277 | [JSON] 278 | LD Keyword=fore:#DE935F 279 | String=fore:#89B8C2 280 | Number=bold; fore:#E27878 281 | Operator= 282 | Property Name=fore:#B5BD68 283 | ESC Sequence=fore:#A093C7 284 | Parsing Error=fore:#E27878 285 | [LaTeX Files] 286 | Command=bold 287 | Comment=fore:#969896 288 | Math=bold; fore:#B5BD68 289 | Special Char=fore:#8ABEB7 290 | Tag=bold; fore:#B294BB 291 | Verbatim Segment=bold; italic; fore:#C5C8C6; back:#373B41 292 | [Lua Script] 293 | Comment=fore:#969896 294 | Number=bold; fore:#CC6666 295 | Keyword=bold 296 | Basic Functions=bold 297 | String, Table & Math Functions=bold; fore:#B5BD68 298 | Input, Output & System Facilities=bold; fore:#B294BB 299 | String=fore:#8ABEB7 300 | Literal String=fore:#8ABEB7 301 | Operator=bold 302 | Label=bold; fore:#81A2BE 303 | [Makefiles] 304 | Comment=fore:#969896 305 | Identifier=fore:#F0C674 306 | Target=bold 307 | Preprocessor=bold; fore:#B294BB 308 | [Markdown] 309 | Strong=bold; fore:#F0C674 310 | Emphasis=italic; fore:#F0C674 311 | Header 1=bold; fore:#CC6666 312 | Header 2=bold; fore:#CC6666 313 | Header 3=bold; fore:#CC6666 314 | Header 4=bold; fore:#CC6666 315 | Header 5=bold; fore:#CC6666 316 | Header 6=bold; fore:#CC6666 317 | Pre Char=fore:#DE935F; back:#3D425B 318 | Unordered List=bold; fore:#8ABEB7 319 | Ordered List=bold; fore:#8ABEB7 320 | Block Quote=fore:#DE935F 321 | Strikeout=italic; fore:#B294BB 322 | Horizontal Rule=size:+2; bold 323 | Link=fore:#8ABEB7 324 | Code=fore:#F0C674 325 | [MATLAB] 326 | Comment=fore:#969896 327 | Number=bold; fore:#CC6666 328 | Keyword=bold; fore:#B294BB 329 | String=fore:#8ABEB7 330 | Operator=bold 331 | [Nim Source Code] 332 | Comment=fore:#969896 333 | Keyword=bold; fore:#B294BB 334 | String Double Quoted=fore:#8ABEB7 335 | String Single Quoted=fore:#B5BD68 336 | String Triple Double Quotes=italic; fore:#8ABEB7 337 | String Triple Single Quotes=italic; fore:#B5BD68 338 | Number=bold; fore:#CC6666 339 | Operator=bold 340 | Function name=fore:#F0C674 341 | [NSIS Script] 342 | Comment=fore:#969896 343 | String=fore:#8ABEB7 344 | Function=bold; fore:#B294BB 345 | Variable=italic; fore:#F0C674 346 | Variable within String=bold; italic; fore:#F0C674 347 | Number=bold; fore:#CC6666 348 | Constant=fore:#B5BD68 349 | Section=bold; fore:#DE935F 350 | Section Group=bold; fore:#B5BD68 351 | Function Definition=bold; italic 352 | PageEx=bold; italic 353 | If Definition=bold; italic 354 | Macro Definition=bold; italic 355 | [Pascal Source Code] 356 | Comment=fore:#969896 357 | Keyword=bold; fore:#B294BB 358 | String=fore:#8ABEB7 359 | Number=bold; fore:#CC6666 360 | Inline Asm=fore:#DE935F 361 | Preprocessor=bold; fore:#F0C674 362 | [Perl Script] 363 | Comment=fore:#969896 364 | Keyword=bold 365 | String Double Quoted=fore:#8ABEB7 366 | String Single Quoted=fore:#B5BD68 367 | Number=bold; fore:#CC6666 368 | Scalar $var=italic; fore:#DE935F 369 | Array @var=italic; fore:#F0C674 370 | Hash %var=italic; fore:#B5BD68 371 | Symbol Table *var=fore:#81A2BE 372 | Regex /re/ or m{re}=fore:#B294BB 373 | Substitution s/re/ore/=fore:#B294BB; back:#282A2E 374 | Back Ticks=fore:#F0C674 375 | Here-Doc (Delimiter)=bold; back:#282A2E 376 | Here-Doc (Single Quoted, q)=italic; fore:#B5BD68; back:#282A2E 377 | Here-Doc (Double Quoted, qq)=italic; fore:#8ABEB7; back:#282A2E 378 | Here-Doc (Back Ticks, qx)=bold; italic; fore:#F0C674; back:#282A2E 379 | Single Quoted String (Generic, q)=fore:#B5BD68 380 | Double Quoted String (qq)=fore:#8ABEB7 381 | Back Ticks (qx)=fore:#F0C674 382 | Regex (qr)=fore:#B294BB 383 | Array (qw)=fore:#DE935F 384 | Prototype=bold; fore:#B294BB 385 | Format Identifier=bold; fore:#8ABEB7 386 | Format Body=fore:#0093EA; back:#2A2A2A 387 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 388 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 389 | Data Section=fore:#BFBFBF; back:#2A2A2A 390 | Parsing Error=bold; italic; fore:#CC6666 391 | [PowerShell Script] 392 | Comment=fore:#969896 393 | Keyword=bold; italic; fore:#B294BB 394 | String=fore:#8ABEB7 395 | Number=bold; fore:#CC6666 396 | Variable=italic; fore:#F0C674 397 | Cmdlet=bold; fore:#81A2BE 398 | Alias=bold; fore:#B5BD68 399 | [Python Script] 400 | Comment=fore:#969896 401 | Keyword=bold; fore:#B294BB 402 | String Double Quoted=fore:#8ABEB7 403 | String Single Quoted=fore:#B5BD68 404 | String Triple Double Quotes=italic; fore:#8ABEB7 405 | String Triple Single Quotes=italic; fore:#B5BD68 406 | Number=bold; fore:#CC6666 407 | Operator=bold 408 | Function Name=italic 409 | Class Name=fore:#F0C674 410 | [Registry Files] 411 | Comment=fore:#969896 412 | String=fore:#8ABEB7 413 | Value Type=bold 414 | Hex=bold; fore:#CC6666 415 | Added Key=bold; fore:#DE935F 416 | Deleted Key=fore:#F0C674 417 | Escaped=bold; fore:#B5BD68 418 | GUID in Key Path=bold; fore:#B294BB 419 | Parameter=fore:#B5BD68 420 | [Resource Script] 421 | Comment=fore:#969896 422 | Keyword=bold 423 | String=fore:#8ABEB7 424 | Number=bold; fore:#CC6666 425 | Operator=bold 426 | Preprocessor=fore:#B294BB 427 | [R-S-SPlus Statistics Code] 428 | Comment=fore:#969896 429 | Keyword=bold; italic; fore:#B5BD68 430 | Base Package Functions=bold; fore:#81A2BE 431 | Other Package Functions=bold; fore:#F0C674 432 | Number=bold; fore:#CC6666 433 | String=fore:#8ABEB7 434 | Operator=bold 435 | Infix=fore:#B294BB 436 | Infix EOL=fore:#B294BB; back:#373B41; eolfilled 437 | [Ruby Script] 438 | Comment=fore:#969896 439 | Keyword=bold; fore:#B294BB 440 | Number=bold; fore:#CC6666 441 | Operator=bold 442 | String=bold; fore:#8ABEB7 443 | Class Name=italic 444 | Function Name=fore:#B294BB 445 | Regex=fore:#B5BD68 446 | Symbol=bold; fore:#DE935F 447 | Module Name=bold; fore:#81A2BE 448 | Instance Var=bold; fore:#B5BD68 449 | Class Var=bold; fore:#F0C674 450 | Data Section=bold; fore:#C5C8C6; back:#373B41; eolfilled 451 | [Rust Source Code] 452 | Keyword=bold; fore:#B294BB 453 | Build-In Type=bold; fore:#8ABEB7 454 | Other Keyword=bold; italic 455 | Number=bold; fore:#CC6666 456 | String=fore:#8ABEB7 457 | Operator=bold 458 | Macro Definition=fore:#B5BD68 459 | Rust Lifetime=fore:#DE935F 460 | Parsing Error=italic; fore:#CC6666 461 | Byte String=fore:#B294BB 462 | [Shell Script] 463 | Error=italic; fore:#CC6666 464 | Comment=fore:#969896 465 | Number=bold; fore:#CC6666 466 | Keyword=bold; fore:#B294BB 467 | String Double Quoted=fore:#8ABEB7 468 | String Single Quoted=fore:#B5BD68 469 | Operator=bold 470 | Scalar=fore:#81A2BE 471 | Parameter Expansion=fore:#B294BB 472 | Back Ticks=fore:#F0C674 473 | Here-Doc (Delimiter)=bold; fore:#DE935F 474 | Here-Doc (Single Quoted, q)=bold; fore:#C5C8C6; back:#373B41; eolfilled 475 | [SQL Query] 476 | Comment=fore:#969896 477 | Keyword=bold 478 | Value Type=bold; fore:#F0C674 479 | String=fore:#8ABEB7 480 | Identifier=fore:#B294BB 481 | Quoted Identifier=bold; fore:#B294BB 482 | Number=bold; fore:#CC6666 483 | Operator=bold 484 | [Tcl Script] 485 | Comment=fore:#969896 486 | Keyword=bold; fore:#B294BB 487 | Number=bold; fore:#CC6666 488 | String=fore:#8ABEB7 489 | Operator=bold 490 | Identifier= 491 | Substitution=bold; fore:#C5C8C6 492 | Modifier=italic; fore:#B5BD68 493 | [TOML Config] 494 | Keyword=bold; fore:#B294BB 495 | Comment=fore:#969896 496 | Section=bold; fore:#81A2BE 497 | Key= 498 | Assignment=bold 499 | Value=fore:#8ABEB7 500 | Number=bold; fore:#CC6666 501 | Date-Time=fore:#B5BD68 502 | String=fore:#8ABEB7 503 | Parsing Error=italic; fore:#CC6666 504 | [VBScript] 505 | Comment=fore:#969896 506 | Keyword=bold; fore:#B294BB 507 | String=fore:#8ABEB7 508 | Number=bold; fore:#CC6666 509 | Operator=bold 510 | [VHDL] 511 | Comment=fore:#969896 512 | Number=bold; fore:#CC6666 513 | String=fore:#B5BD68 514 | Operator= 515 | Keyword=bold; fore:#B294BB 516 | Standard Operator=bold; fore:#DE935F 517 | Attribute=fore:#F0C674 518 | Standard Function=bold; fore:#B5BD68 519 | Standard Package=bold; fore:#81A2BE 520 | Standard Type=bold; fore:#81A2BE 521 | [Visual Basic] 522 | Comment=fore:#969896 523 | Keyword=bold; fore:#B294BB 524 | String=fore:#8ABEB7 525 | Number=bold; fore:#CC6666 526 | Preprocessor=bold; fore:#F0C674 527 | [Web Source Code] 528 | HTML Tag=bold; fore:#B294BB 529 | HTML Unknown Tag=fore:#CC6666 530 | HTML Attribute=fore:#8ABEB7 531 | HTML Unknown Attribute=fore:#CC6666 532 | HTML Value=fore:#F0C674 533 | HTML String=fore:#B5BD68 534 | HTML Other Inside Tag=fore:#F0C674 535 | HTML Comment=fore:#969896 536 | HTML Entity=fore:#F0C674 537 | XML Identifier=bold 538 | SGML=bold; fore:#B294BB 539 | ASP Start Tag=bold; italic; fore:#81A2BE 540 | PHP Start Tag=bold; italic; fore:#81A2BE 541 | PHP Comment=fore:#969896 542 | PHP Keyword=bold; fore:#B294BB 543 | PHP String=fore:#8ABEB7 544 | PHP Simple String=fore:#B5BD68 545 | PHP Number=bold; fore:#CC6666 546 | PHP Operator=bold 547 | PHP Variable=italic; fore:#F0C674 548 | PHP String Variable=bold; italic; fore:#DE935F 549 | PHP Complex Variable=italic; fore:#81A2BE 550 | JS Comment=fore:#969896 551 | JS Keyword=bold 552 | JS String=fore:#8ABEB7 553 | JS Regex=fore:#F0C674 554 | JS Number=bold; fore:#CC6666 555 | JS Symbols=bold 556 | ASP JS Comment=fore:#969896 557 | ASP JS Keyword=bold 558 | ASP JS String=fore:#8ABEB7 559 | ASP JS Regex=fore:#F0C674 560 | ASP JS Number=bold; fore:#CC6666 561 | ASP JS Symbols=bold 562 | VBS Comment=fore:#969896 563 | VBS Keyword=bold 564 | VBS String=fore:#8ABEB7 565 | VBS Number=bold; fore:#CC6666 566 | ASP VBS Comment=fore:#969896 567 | ASP VBS Keyword=bold 568 | ASP VBS String=fore:#8ABEB7 569 | ASP VBS Number=bold; fore:#CC6666 570 | [XML Document] 571 | XML Tag=fore:#B294BB 572 | XML Attribute=fore:#8ABEB7 573 | XML Value=fore:#F0C674 574 | XML String=fore:#B5BD68 575 | XML Other Inside Tag=bold; fore:#F0C674 576 | XML Comment=fore:#969896 577 | XML Entity=bold 578 | XML Identifier=bold 579 | SGML=bold; fore:#B294BB 580 | CDATA=fore:#B5BD68 581 | [YAML] 582 | Comment=fore:#969896 583 | Identifier=fore:#8ABEB7 584 | Keyword=bold 585 | Number=bold; fore:#CC6666 586 | Reference=fore:#F0C674 587 | Document=bold; fore:#C5C8C6; back:#373B41; eolfilled 588 | Text=fore:#B294BB 589 | Error=italic; fore:#CC6666 590 | Operator=bold; fore:#DE935F 591 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_ayu Dark.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: ayu Dark (by Ike Ku et al, License:MIT) 7 | # https://github.com/dempfi/ayu 8 | # 9 | 10 | [Custom Colors] 11 | 01=#0A0E14 12 | 02=#01060E 13 | 03=#273747 14 | 04=#B3B1AD 15 | 05=#626A73 16 | 06=#F8FD99 17 | 07=#F8FD99 18 | 08=#B3B1AD 19 | 09=#59C2FF 20 | 10=#F07178 21 | 11=#FF8F40 22 | 12=#FFB454 23 | 13=#C2D94C 24 | 14=#39BAE6 25 | 15=#59C2FF 26 | 16=#D4BFFF 27 | [Styles] 28 | Use2ndDefaultStyle=true 29 | [CIL Assembly] 30 | Keyword=bold; fore:#d4bfff 31 | Type Keyword=fore:#59c2ff 32 | Directive=bold 33 | Instruction= 34 | Comment=fore:#626a73 35 | String=fore:#39bae6 36 | Label=bold; fore:#59c2ff 37 | Number=bold; fore:#f07178 38 | Operator= 39 | [Common Base] 40 | FileNameExtensions= 41 | Default Style=font:Meiryo; size:9; fore:#B3B1AD; back:#0A0E14 42 | Margins and Line Numbers=font:Arial; size:8; fore:#626A73; back:#01060E 43 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 44 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 45 | Control Characters (Font)=size:-1 46 | Indentation Guide (Color)=fore:#626A73 47 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 48 | Whitespace (Colors, Size 0-12)=fore:#FFB454 49 | Current Line Background (Color)=back:#01060E 50 | Caret (Color, Size 1-3)=size:2; fore:#B3B1AD 51 | Long Line Marker (Colors)=fore:#273747 52 | Extra Line Spacing (Size)=size:2 53 | Bookmarks and Folding (Colors, Size)=fore:#FF8F40; back:#FEFEFE; case:U; alpha:50 54 | Mark Occurrences (Indicator)=fore:#F07178; alpha:100; alpha2:100; indic_roundbox 55 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 56 | Multi Edit Indicator=fore:#00A5FF; indic_box 57 | Inline-IME Color=fore:#C2D94C 58 | [2nd Common Base] 59 | FileNameExtensions= 60 | 2nd Default Style=font:Meiryo; size:9; fore:#B3B1AD; back:#0A0E14 61 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#626A73; back:#01060E 62 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 63 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 64 | 2nd Control Characters (Font)=size:-1 65 | 2nd Indentation Guide (Color)=fore:#626A73 66 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 67 | 2nd Whitespace (Colors, Size 0-12)=fore:#FFB454 68 | 2nd Current Line Background (Color)=back:#01060E 69 | 2nd Caret (Color, Size 1-3)=size:2; fore:#B3B1AD 70 | 2nd Long Line Marker (Colors)=fore:#273747 71 | 2nd Extra Line Spacing (Size)=size:2 72 | 2nd Bookmarks and Folding (Colors, Size)=fore:#FF8F40; back:#FEFEFE; case:U; alpha:50 73 | 2nd Mark Occurrences (Indicator)=fore:#F07178; alpha:100; alpha2:100; indic_roundbox 74 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 75 | 2nd Multi Edit Indicator=fore:#00A5FF; indic_box 76 | 2nd Inline-IME Color=fore:#C2D94C 77 | [Text Files] 78 | FileNameExtensions=txt; text; tmp; log; asc; doc; wtx 79 | Default=font:Meiryo; size:9 80 | Margins and Line Numbers=font:Lucida Console; size:-2 81 | Extra Line Spacing (Size)=size:-1 82 | [ANSI Art] 83 | FileNameExtensions=nfo; diz; \^Readme$ 84 | Default=font:Lucida Console 85 | Margins and Line Numbers=font:Arial; size:7 86 | Matching Braces= 87 | Matching Braces Error= 88 | Extra Line Spacing (Size)=size:0 89 | [Apache Config Files] 90 | FileNameExtensions=conf; cfg; cnf; htaccess; prefs; iface; prop; po; te; \^Kconfig$; \^Doxyfile$ 91 | Default= 92 | Comment=fore:#626A73 93 | String=fore:#39BAE6 94 | Number=bold; fore:#F07178 95 | Directive=bold 96 | IP Address=bold; fore:#59C2FF 97 | [Assembly Script] 98 | FileNameExtensions=asm; s; sx; inc; a51 99 | Default= 100 | Comment=fore:#626A73 101 | Identifier= 102 | String=fore:#39BAE6 103 | Number=bold; fore:#F07178 104 | Operator=bold 105 | CPU Instruction=bold 106 | FPU Instruction=bold 107 | Extended Instruction=bold 108 | Directive=bold; italic 109 | Directive Operand=bold; italic 110 | Register=fore:#FF8F40 111 | [AutoHotkey_L Script] 112 | FileNameExtensions=ahkl; ahk; ia; scriptlet 113 | Default= 114 | Identifier= 115 | Comment=fore:#626A73 116 | String=fore:#39BAE6 117 | Label=bold; fore:#59C2FF 118 | HotKey=bold; fore:#FF8F40 119 | HotString=fore:#FFB454 120 | KeyHotstringOption=fore:#FFB454 121 | Hex Number=fore:#F07178 122 | Number=bold; fore:#F07178 123 | Variable=bold; fore:#D4BFFF 124 | Variable Dereferencing=bold; fore:#D4BFFF 125 | Object=bold 126 | User-Defined Function=bold; italic 127 | Directive=italic 128 | Command=bold 129 | Parameter=fore:#FFB454 130 | Flow of Control=bold; italic 131 | Function=italic 132 | Built-In Variables=bold; fore:#FFB454 133 | Key=bold 134 | Escape=bold; fore:#C2D94C 135 | Error=italic; fore:#F07178 136 | [AutoIt3 Script] 137 | FileNameExtensions=au3 138 | Default= 139 | Comment=fore:#626A73 140 | Number=bold; fore:#F07178 141 | Function=bold 142 | User-Defined Function=fore:#FF8F40 143 | Keyword=bold; italic 144 | Macro=bold; fore:#59C2FF 145 | String=fore:#39BAE6 146 | Operator=bold 147 | Variable=italic; fore:#D4BFFF 148 | Send Key=bold; fore:#C2D94C 149 | Preprocessor=bold 150 | Special=bold 151 | [AviSynth Script] 152 | FileNameExtensions=avs; avsi 153 | Default= 154 | Comment=fore:#626A73 155 | Operator= 156 | String=fore:#39BAE6 157 | Number=bold; fore:#F07178 158 | Keyword=bold; italic 159 | Filter=bold 160 | Plugin=bold; fore:#FFB454 161 | Function=fore:#FFB454 162 | Clip Property=fore:#D4BFFF 163 | [Awk Script] 164 | FileNameExtensions=awk 165 | Default= 166 | Keyword=bold 167 | Keyword 2nd=bold; fore:#D4BFFF 168 | Identifier= 169 | Comment=fore:#626A73 170 | String=fore:#39BAE6 171 | Number=bold; fore:#F07178 172 | Operator=bold 173 | [Batch Files] 174 | FileNameExtensions=bat; cmd 175 | Default= 176 | Comment=fore:#626A73 177 | Keyword=bold 178 | Identifier=fore:#59C2FF 179 | Operator=bold 180 | Command=bold; italic 181 | Label=bold; fore:#59C2FF 182 | [C# Source Code] 183 | FileNameExtensions=cs; csx; vala 184 | Default= 185 | Comment=fore:#626A73 186 | Keyword=bold 187 | Identifier=fore:#59C2FF 188 | String=fore:#39BAE6 189 | Verbatim String=fore:#D4BFFF 190 | Number=bold; fore:#F07178 191 | Operator=bold 192 | Preprocessor=bold 193 | Global Class=bold; fore:#FFB454 194 | [C/C++ Source Code] 195 | FileNameExtensions=c; cpp; cxx; cc; h; hpp; hxx; hh; mm; idl; midl; inl; odl; xpm; pch 196 | Default= 197 | Identifier= 198 | Comment=fore:#626A73 199 | Keyword=bold; italic 200 | Keyword 2nd=bold; italic; fore:#D4BFFF 201 | Typedefs/Classes=bold; italic 202 | String=fore:#39BAE6 203 | Number=bold; fore:#F07178 204 | Operator=bold 205 | Preprocessor=bold 206 | [Cmake Script] 207 | FileNameExtensions=cmake; ctest; \^cmakelists\.txt$ 208 | Default= 209 | Comment=fore:#626A73 210 | String=fore:#39BAE6 211 | Function=bold 212 | Parameter=bold; fore:#FFB454 213 | Variable=fore:#D4BFFF 214 | While Def=bold; italic 215 | For Each Def=bold; italic 216 | If Def=bold; italic 217 | Macro Def=bold; italic 218 | Variable within String=bold; fore:#D4BFFF 219 | Number=bold; fore:#F07178 220 | [Coffeescript] 221 | FileNameExtensions=coffee; cakefile 222 | Default= 223 | Comment=fore:#626A73 224 | String=fore:#39BAE6 225 | Preprocessor=bold 226 | Identifier= 227 | Operator=bold; fore:#B3B1AD 228 | Number=bold; fore:#F07178 229 | Regex=fore:#D4BFFF 230 | Global Class=fore:#FFB454 231 | Word=fore:#39BAE6 232 | Verbatim=fore:#39BAE6 233 | [Configuration Files] 234 | FileNameExtensions=ini; inf; properties; oem; sif; url; sed; theme; clw 235 | Default= 236 | Comment=fore:#626A73 237 | Section=bold; fore:#59C2FF 238 | Assignment=fore:#39BAE6 239 | Default Value=bold; fore:#FFB454 240 | [CSS Style Sheets] 241 | FileNameExtensions=css; less; hss; sass; scss 242 | Default= 243 | Comment=fore:#626A73 244 | HTML Tag=bold 245 | Tag-Class=bold; fore:#FFB454 246 | Tag-ID=bold; fore:#FF8F40 247 | Tag-Attribute=fore:#59C2FF 248 | Pseudo-Class=fore:#D4BFFF 249 | Pseudo-Element=italic 250 | CSS Property=bold 251 | String=fore:#39BAE6 252 | Value=fore:#59C2FF 253 | Operator=bold 254 | Important=bold; fore:#39BAE6 255 | Directive=bold; italic 256 | Media=bold; italic; fore:#FF8F40 257 | Variable=bold; fore:#FF8F40 258 | Unknown Pseudo-Class=italic; fore:#F07178 259 | Unknown Property=bold; italic; fore:#F07178 260 | [CSV Prism] 261 | FileNameExtensions=csv 262 | Default= 263 | Margins and Line Numbers= 264 | Extra Line Spacing (Size)=size:-1 265 | Column 0=bold 266 | Column 1=fore:#F07178 267 | Column 2=bold; fore:#FF8F40 268 | Column 3=fore:#FFB454 269 | Column 4=fore:#C2D94C 270 | Column 5=fore:#39BAE6 271 | Column 6=fore:#D4BFFF 272 | Column 7=bold; fore:#59C2FF 273 | Column 8= 274 | Column 9=italic; fore:#C2D94C 275 | [D Source Code] 276 | FileNameExtensions=d; dd; di 277 | Default= 278 | Comment=fore:#626A73 279 | Comment Doc=fore:#626A73 280 | Number=bold; fore:#F07178 281 | Keyword=bold 282 | Keyword 2nd=bold; fore:#D4BFFF 283 | Typedef=italic 284 | String=fore:#39BAE6 285 | Operator=bold 286 | Identifier= 287 | [Diff Files] 288 | FileNameExtensions=diff; patch 289 | Default= 290 | Comment=fore:#626A73 291 | Command=bold; fore:#FFB454 292 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 293 | Position Setting=fore:#BFBFBF; back:#002B55 294 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 295 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 296 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 297 | [Go Source Code] 298 | FileNameExtensions=go 299 | Default= 300 | Comment=fore:#626A73 301 | Number=bold; fore:#F07178 302 | Keyword=bold 303 | Keyword 2nd=bold; fore:#D4BFFF 304 | Typedef=bold; italic 305 | String=fore:#39BAE6 306 | Operator=bold 307 | Identifier= 308 | [Inno Setup Script] 309 | FileNameExtensions=iss; isl; islu 310 | Default= 311 | Comment=fore:#626A73 312 | Keyword=bold 313 | Parameter=bold; fore:#FFB454 314 | Section=bold; fore:#B3B1AD 315 | Preprocessor=bold; fore:#59C2FF 316 | Inline Expansion=bold; fore:#D4BFFF 317 | Pascal Comment=fore:#626A73 318 | Pascal Keyword=bold; italic 319 | String=fore:#39BAE6 320 | [Java Source Code] 321 | FileNameExtensions=java; jad; aidl; bsh 322 | Default= 323 | Comment=fore:#626A73 324 | Keyword=bold; italic; fore:#D4BFFF 325 | Identifier= 326 | String=fore:#39BAE6 327 | Regex=fore:#D4BFFF 328 | Number=bold; fore:#F07178 329 | Operator=bold 330 | [JavaScript] 331 | FileNameExtensions=js; jse; jsm; as; mjs; qs 332 | Default= 333 | Comment=fore:#626A73 334 | Keyword=bold; fore:#D4BFFF 335 | Identifier= 336 | String=fore:#39BAE6 337 | Regex=fore:#C2D94C 338 | Number=bold; fore:#F07178 339 | Operator=bold 340 | [JSON] 341 | FileNameExtensions=json; har; ipynb; wxcp; jshintrc; eslintrc; babelrc; prettierrc; stylelintrc; jsonld; jsonc; arcconfig; arclint; jscop 342 | Default= 343 | Comment=fore:#646464 344 | Keyword=bold; fore:#957000 345 | LD Keyword=fore:#FF8F40 346 | String=fore:#89B8C2 347 | Number=bold; fore:#E27878 348 | Operator= 349 | Property Name=fore:#C2D94C 350 | ESC Sequence=fore:#A093C7 351 | Parsing Error=fore:#E27878 352 | [LaTeX Files] 353 | FileNameExtensions=tex; latex; sty; texi; texinfo; txi 354 | Default= 355 | Command=bold 356 | Comment=fore:#626A73 357 | Math=bold; fore:#C2D94C 358 | Special Char=fore:#39BAE6 359 | Tag=bold; fore:#D4BFFF 360 | Verbatim Segment=bold; italic; fore:#B3B1AD; back:#273747 361 | Error=fore:#FFFF00; back:#A00000 362 | [Lua Script] 363 | FileNameExtensions=lua; wlua; nse; luadoc; luax 364 | Default= 365 | Comment=fore:#626A73 366 | Number=bold; fore:#F07178 367 | Keyword=bold 368 | Basic Functions=bold 369 | String, Table & Math Functions=bold; fore:#C2D94C 370 | Input, Output & System Facilities=bold; fore:#D4BFFF 371 | String=fore:#39BAE6 372 | Literal String=fore:#39BAE6 373 | Preprocessor=fore:#FF8000 374 | Operator=bold 375 | Identifier= 376 | Label=bold; fore:#59C2FF 377 | [Makefiles] 378 | FileNameExtensions=mak; make; mk; dsp; msc; msvc; am; pro; pri; gmk; ninja; dsw; \^Makefile$; \^Kbuild$ 379 | Default= 380 | Comment=fore:#626A73 381 | Identifier=fore:#FFB454 382 | Operator= 383 | Target=bold 384 | Preprocessor=bold; fore:#D4BFFF 385 | [Markdown] 386 | FileNameExtensions=md; markdown; mdown; mkdn; mkd 387 | Default= 388 | Line Begin= 389 | Strong=bold; fore:#FFB454 390 | Emphasis=italic; fore:#FFB454 391 | Header 1=bold; fore:#F07178 392 | Header 2=bold; fore:#F07178 393 | Header 3=bold; fore:#F07178 394 | Header 4=bold; fore:#F07178 395 | Header 5=bold; fore:#F07178 396 | Header 6=bold; fore:#F07178 397 | Pre Char=fore:#FF8F40; back:#3D425B 398 | Unordered List=bold; fore:#39BAE6 399 | Ordered List=bold; fore:#39BAE6 400 | Block Quote=fore:#FF8F40 401 | Strikeout=italic; fore:#D4BFFF 402 | Horizontal Rule=size:+2; bold 403 | Link=fore:#39BAE6 404 | Code=fore:#FFB454 405 | [MATLAB] 406 | FileNameExtensions=matlab; m; sce; sci 407 | Default= 408 | Comment=fore:#626A73 409 | Command=bold 410 | Number=bold; fore:#F07178 411 | Keyword=bold; fore:#D4BFFF 412 | String=fore:#39BAE6 413 | Operator=bold 414 | Identifier= 415 | [Nim Source Code] 416 | FileNameExtensions=nim; nimrod 417 | Default= 418 | Comment=fore:#626A73 419 | Keyword=bold; fore:#D4BFFF 420 | Identifier= 421 | String Double Quoted=fore:#39BAE6 422 | String Single Quoted=fore:#C2D94C 423 | String Triple Double Quotes=italic; fore:#39BAE6 424 | String Triple Single Quotes=italic; fore:#C2D94C 425 | Number=bold; fore:#F07178 426 | Operator=bold 427 | Function name=fore:#FFB454 428 | Parsing Error=italic; fore:#FFFF00; back:#A00000 429 | [NSIS Script] 430 | FileNameExtensions=nsi; nsh 431 | Default= 432 | Comment=fore:#626A73 433 | String=fore:#39BAE6 434 | Function=bold; fore:#D4BFFF 435 | Variable=italic; fore:#FFB454 436 | Variable within String=bold; italic; fore:#FFB454 437 | Number=bold; fore:#F07178 438 | Constant=fore:#C2D94C 439 | Section=bold; fore:#FF8F40 440 | Sub Section=fore:#0033CC 441 | Section Group=bold; fore:#C2D94C 442 | Function Definition=bold; italic 443 | PageEx=bold; italic 444 | If Definition=bold; italic 445 | Macro Definition=bold; italic 446 | [Pascal Source Code] 447 | FileNameExtensions=pas; dpr; dpk; dfm; pp; lfm; lpr; fpd 448 | Default= 449 | Comment=fore:#626A73 450 | Keyword=bold; fore:#D4BFFF 451 | Identifier= 452 | String=fore:#39BAE6 453 | Number=bold; fore:#F07178 454 | Operator=bold 455 | Inline Asm=fore:#FF8F40 456 | Preprocessor=bold; fore:#FFB454 457 | [Perl Script] 458 | FileNameExtensions=pl; pm; cgi; pod; plx; stp 459 | Default= 460 | Comment=fore:#626A73 461 | Keyword=bold 462 | Identifier= 463 | String Double Quoted=fore:#39BAE6 464 | String Single Quoted=fore:#C2D94C 465 | Number=bold; fore:#F07178 466 | Operator=bold 467 | Scalar $var=italic; fore:#FF8F40 468 | Array @var=italic; fore:#FFB454 469 | Hash %var=italic; fore:#C2D94C 470 | Symbol Table *var=fore:#59C2FF 471 | Regex /re/ or m{re}=fore:#D4BFFF 472 | Substitution s/re/ore/=fore:#D4BFFF; back:#01060E 473 | Back Ticks=fore:#FFB454 474 | Here-Doc (Delimiter)=bold; back:#01060E 475 | Here-Doc (Single Quoted, q)=italic; fore:#C2D94C; back:#01060E 476 | Here-Doc (Double Quoted, qq)=italic; fore:#39BAE6; back:#01060E 477 | Here-Doc (Back Ticks, qx)=bold; italic; fore:#FFB454; back:#01060E 478 | Single Quoted String (Generic, q)=fore:#C2D94C 479 | Double Quoted String (qq)=fore:#39BAE6 480 | Back Ticks (qx)=fore:#FFB454 481 | Regex (qr)=fore:#D4BFFF 482 | Array (qw)=fore:#FF8F40 483 | Prototype=bold; fore:#D4BFFF 484 | Format Identifier=bold; fore:#39BAE6 485 | Format Body=fore:#0093EA; back:#2A2A2A 486 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 487 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 488 | Data Section=fore:#BFBFBF; back:#2A2A2A 489 | Parsing Error=bold; italic; fore:#F07178 490 | [PowerShell Script] 491 | FileNameExtensions=ps1; psd1; psm1; psc1 492 | Default= 493 | Comment=fore:#626A73 494 | Keyword=bold; italic; fore:#D4BFFF 495 | Identifier= 496 | String=fore:#39BAE6 497 | Number=bold; fore:#F07178 498 | Operator=bold 499 | Variable=italic; fore:#FFB454 500 | Cmdlet=bold; fore:#59C2FF 501 | Alias=bold; fore:#C2D94C 502 | [Python Script] 503 | FileNameExtensions=py; pyw; pyx; pxd; pxi; boo; empy; cobra; gs 504 | Default= 505 | Comment=fore:#626A73 506 | Keyword=bold; fore:#D4BFFF 507 | Identifier= 508 | String Double Quoted=fore:#39BAE6 509 | String Single Quoted=fore:#C2D94C 510 | String Triple Double Quotes=italic; fore:#39BAE6 511 | String Triple Single Quotes=italic; fore:#C2D94C 512 | Number=bold; fore:#F07178 513 | Operator=bold 514 | Function Name=italic 515 | Class Name=fore:#FFB454 516 | [Registry Files] 517 | FileNameExtensions=reg 518 | Default= 519 | Comment=fore:#626A73 520 | Value Name= 521 | String=fore:#39BAE6 522 | Value Type=bold 523 | Hex=bold; fore:#F07178 524 | Added Key=bold; fore:#FF8F40 525 | Deleted Key=fore:#FFB454 526 | Escaped=bold; fore:#C2D94C 527 | GUID in Key Path=bold; fore:#D4BFFF 528 | Parameter=fore:#C2D94C 529 | Operator=bold 530 | [Resource Script] 531 | FileNameExtensions=rc; rc2; rct; rh; dlg; lang 532 | Default= 533 | Comment=fore:#626A73 534 | Keyword=bold 535 | Identifier= 536 | String=fore:#39BAE6 537 | Number=bold; fore:#F07178 538 | Operator=bold 539 | Preprocessor=fore:#D4BFFF 540 | [R-S-SPlus Statistics Code] 541 | FileNameExtensions=r; rdata; rds; rda 542 | Default= 543 | Comment=fore:#626A73 544 | Keyword=bold; italic; fore:#C2D94C 545 | Base Package Functions=bold; fore:#59C2FF 546 | Other Package Functions=bold; fore:#FFB454 547 | Number=bold; fore:#F07178 548 | String=fore:#39BAE6 549 | Operator=bold 550 | Identifier= 551 | Infix=fore:#D4BFFF 552 | Infix EOL=fore:#D4BFFF; back:#273747; eolfilled 553 | [Ruby Script] 554 | FileNameExtensions=rb; ruby; rbw; rake; rjs; rakefile; gemspec; podspec; \^Rakefile$; \^Podfile$ 555 | Default= 556 | Comment=fore:#626A73 557 | Keyword=bold; fore:#D4BFFF 558 | Identifier= 559 | Number=bold; fore:#F07178 560 | Operator=bold 561 | String=bold; fore:#39BAE6 562 | Class Name=italic 563 | Function Name=fore:#D4BFFF 564 | POD=fore:#004000; back:#C0FFC0; eolfilled 565 | Regex=fore:#C2D94C 566 | Symbol=bold; fore:#FF8F40 567 | Module Name=bold; fore:#59C2FF 568 | Instance Var=bold; fore:#C2D94C 569 | Class Var=bold; fore:#FFB454 570 | Data Section=bold; fore:#B3B1AD; back:#273747; eolfilled 571 | [Rust Source Code] 572 | FileNameExtensions=rs; rust 573 | Default= 574 | Identifier= 575 | Keyword=bold; fore:#D4BFFF 576 | Build-In Type=bold; fore:#39BAE6 577 | Other Keyword=bold; italic 578 | Number=bold; fore:#F07178 579 | Comment=italic; fore:#488080 580 | String=fore:#39BAE6 581 | Operator=bold 582 | Macro Definition=fore:#C2D94C 583 | Rust Lifetime=fore:#FF8F40 584 | Parsing Error=italic; fore:#F07178 585 | Byte String=fore:#D4BFFF 586 | [Shell Script] 587 | FileNameExtensions=sh; csh; zsh; bash; tcsh; m4; in; \^mozconfig$ 588 | Default= 589 | Error=italic; fore:#F07178 590 | Comment=fore:#626A73 591 | Number=bold; fore:#F07178 592 | Keyword=bold; fore:#D4BFFF 593 | String Double Quoted=fore:#39BAE6 594 | String Single Quoted=fore:#C2D94C 595 | Operator=bold 596 | Identifier= 597 | Scalar=fore:#59C2FF 598 | Parameter Expansion=fore:#D4BFFF 599 | Back Ticks=fore:#FFB454 600 | Here-Doc (Delimiter)=bold; fore:#FF8F40 601 | Here-Doc (Single Quoted, q)=bold; fore:#B3B1AD; back:#273747; eolfilled 602 | [SQL Query] 603 | FileNameExtensions=sql; mysql; hsql 604 | Default= 605 | Comment=fore:#626A73 606 | Keyword=bold 607 | Value Type=bold; fore:#FFB454 608 | String=fore:#39BAE6 609 | Identifier=fore:#D4BFFF 610 | Quoted Identifier=bold; fore:#D4BFFF 611 | Number=bold; fore:#F07178 612 | Operator=bold 613 | [Tcl Script] 614 | FileNameExtensions=tcl; itcl; tm 615 | Default= 616 | Comment=fore:#626A73 617 | Keyword=bold; fore:#D4BFFF 618 | Number=bold; fore:#F07178 619 | String=fore:#39BAE6 620 | Operator=bold 621 | Identifier= 622 | Substitution=bold; fore:#B3B1AD 623 | Modifier=italic; fore:#C2D94C 624 | [TOML Config] 625 | FileNameExtensions=toml 626 | Default= 627 | Keyword=bold; fore:#D4BFFF 628 | Comment=fore:#626A73 629 | Section=bold; fore:#59C2FF 630 | Key= 631 | Assignment=bold 632 | Value=fore:#39BAE6 633 | Number=bold; fore:#F07178 634 | Date-Time=fore:#C2D94C 635 | String=fore:#39BAE6 636 | Parsing Error=italic; fore:#F07178 637 | [VBScript] 638 | FileNameExtensions=vbs; dsm 639 | Default= 640 | Comment=fore:#626A73 641 | Keyword=bold; fore:#D4BFFF 642 | Identifier= 643 | String=fore:#39BAE6 644 | Number=bold; fore:#F07178 645 | Operator=bold 646 | [VHDL] 647 | FileNameExtensions=vhdl; vhd 648 | Default= 649 | Comment=fore:#626A73 650 | Number=bold; fore:#F07178 651 | String=fore:#C2D94C 652 | Operator= 653 | Identifier= 654 | Keyword=bold; fore:#D4BFFF 655 | Standard Operator=bold; fore:#FF8F40 656 | Attribute=fore:#FFB454 657 | Standard Function=bold; fore:#C2D94C 658 | Standard Package=bold; fore:#59C2FF 659 | Standard Type=bold; fore:#59C2FF 660 | [Visual Basic] 661 | FileNameExtensions=vb; bas; frm; cls; ctl; pag; dsr; dob 662 | Default= 663 | Comment=fore:#626A73 664 | Keyword=bold; fore:#D4BFFF 665 | Identifier= 666 | String=fore:#39BAE6 667 | Number=bold; fore:#F07178 668 | Operator= 669 | Preprocessor=bold; fore:#FFB454 670 | [Web Source Code] 671 | FileNameExtensions=html; htm; asp; aspx; shtml; htd; xhtml; php; php3; phtml; htt; cfm; tpl; dtd; hta; htc; jsp; mht; jd 672 | Default= 673 | HTML Tag=bold; fore:#D4BFFF 674 | HTML Unknown Tag=fore:#F07178 675 | HTML Attribute=fore:#39BAE6 676 | HTML Unknown Attribute=fore:#F07178 677 | HTML Value=fore:#FFB454 678 | HTML String=fore:#C2D94C 679 | HTML Other Inside Tag=fore:#FFB454 680 | HTML Comment=fore:#626A73 681 | HTML Entity=fore:#FFB454 682 | HTML Element Text= 683 | XML Identifier=bold 684 | SGML=bold; fore:#D4BFFF 685 | CDATA=fore:#646464 686 | ASP Start Tag=bold; italic; fore:#59C2FF 687 | PHP Start Tag=bold; italic; fore:#59C2FF 688 | PHP Default= 689 | PHP Comment=fore:#626A73 690 | PHP Keyword=bold; fore:#D4BFFF 691 | PHP String=fore:#39BAE6 692 | PHP Simple String=fore:#C2D94C 693 | PHP Number=bold; fore:#F07178 694 | PHP Operator=bold 695 | PHP Variable=italic; fore:#FFB454 696 | PHP String Variable=bold; italic; fore:#FF8F40 697 | PHP Complex Variable=italic; fore:#59C2FF 698 | JS Default= 699 | JS Comment=fore:#626A73 700 | JS Keyword=bold 701 | JS Identifier= 702 | JS String=fore:#39BAE6 703 | JS Regex=fore:#FFB454 704 | JS Number=bold; fore:#F07178 705 | JS Symbols=bold 706 | ASP JS Default= 707 | ASP JS Comment=fore:#626A73 708 | ASP JS Keyword=bold 709 | ASP JS Identifier= 710 | ASP JS String=fore:#39BAE6 711 | ASP JS Regex=fore:#FFB454 712 | ASP JS Number=bold; fore:#F07178 713 | ASP JS Symbols=bold 714 | VBS Default= 715 | VBS Comment=fore:#626A73 716 | VBS Keyword=bold 717 | VBS Identifier= 718 | VBS String=fore:#39BAE6 719 | VBS Number=bold; fore:#F07178 720 | ASP VBS Default= 721 | ASP VBS Comment=fore:#626A73 722 | ASP VBS Keyword=bold 723 | ASP VBS Identifier= 724 | ASP VBS String=fore:#39BAE6 725 | ASP VBS Number=bold; fore:#F07178 726 | [XML Document] 727 | FileNameExtensions=xml; xsl; rss; svg; xul; xsd; xslt; axl; rdf; xaml; vcproj; ffs_gui; nzb; resx; plist; xrc; fbp; manifest 728 | Default= 729 | XML Tag=fore:#D4BFFF 730 | XML Attribute=fore:#39BAE6 731 | XML Value=fore:#FFB454 732 | XML String=fore:#C2D94C 733 | XML Other Inside Tag=bold; fore:#FFB454 734 | XML Comment=fore:#626A73 735 | XML Entity=bold 736 | XML Element Text= 737 | XML Identifier=bold 738 | SGML=bold; fore:#D4BFFF 739 | CDATA=fore:#C2D94C 740 | [YAML] 741 | FileNameExtensions=yaml; yml 742 | Default= 743 | Comment=fore:#626A73 744 | Identifier=fore:#39BAE6 745 | Keyword=bold 746 | Number=bold; fore:#F07178 747 | Reference=fore:#FFB454 748 | Document=bold; fore:#B3B1AD; back:#273747; eolfilled 749 | Text=fore:#D4BFFF 750 | Error=italic; fore:#F07178 751 | Operator=bold; fore:#FF8F40 752 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_ayu Light.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: ayu Light (by Ike Ku et al, License:MIT) 7 | # https://github.com/dempfi/ayu 8 | # 9 | [Custom Colors] 10 | 01=#fafafa; Background 11 | 02=#f0f1f2; Current line 12 | 03=#edf0f5; Selection 13 | 04=#6c7680; Fore 14 | 05=#abb0b6; Comment 15 | 06=#F8FD99 16 | 07=#E0EC04 17 | 08=#6c7680; #f0f1f2 Gray 8 18 | 09=#399ee6; Pink/Magenta 5 19 | 10=#f07171; Red 61 20 | 11=#fa8d3e; Orange 21 21 | 12=#f2ae49; Yellow 38 22 | 13=#86b300; Green 37 23 | 14=#55b4d4; Aqua/Cyan 64 24 | 15=#399ee6; Blue 12 25 | 16=#a37acc; Purple/Violet 61 26 | [Styles] 27 | Use2ndDefaultStyle=true 28 | [Common Base] 29 | Default Style=font:Meiryo; size:9; fore:#6c7680; back:#fafafa 30 | Margins and Line Numbers=font:Arial; size:8; fore:#abb0b6; back:#f0f1f2 31 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 32 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 33 | Indentation Guide (Color)=fore:#abb0b6 34 | Selected Text (Colors)=back:#E0EC04; eolfilled; alpha:50 35 | Whitespace (Colors, Size 0-12)=fore:#f2ae49 36 | Current Line Background (Color)=back:#f0f1f2 37 | Caret (Color, Size 1-3)=size:2; fore:#6c7680 38 | Long Line Marker (Colors)=fore:#edf0f5 39 | Bookmarks and Folding (Colors, Size)=fore:#fa8d3e; back:#010101; alpha:50; case:U 40 | Mark Occurrences (Indicator)=fore:#f07171; alpha:100; alpha2:100; indic_roundbox 41 | Hyperlink Hotspots=italic; fore:#0068D0; indic_roundbox 42 | Multi Edit Indicator=fore:#00A5FF; indic_box 43 | Inline-IME Color=fore:#f07171 44 | [2nd Common Base] 45 | 2nd Default Style=font:Meiryo; size:9; fore:#6c7680; back:#fafafa 46 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#abb0b6; back:#f0f1f2 47 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 48 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 49 | 2nd Indentation Guide (Color)=fore:#abb0b6 50 | 2nd Selected Text (Colors)=back:#E0EC04; eolfilled; alpha:50 51 | 2nd Whitespace (Colors, Size 0-12)=fore:#f2ae49 52 | 2nd Current Line Background (Color)=back:#f0f1f2 53 | 2nd Caret (Color, Size 1-3)=size:2; fore:#6c7680 54 | 2nd Long Line Marker (Colors)=fore:#edf0f5 55 | 2nd Extra Line Spacing (Size)=size:2 56 | 2nd Bookmarks and Folding (Colors, Size)=fore:#fa8d3e; back:#010101; alpha:50; case:U 57 | 2nd Mark Occurrences (Indicator)=fore:#f07171; alpha:100; alpha2:100; indic_roundbox 58 | 2nd Hyperlink Hotspots=italic; fore:#0068D0; indic_roundbox 59 | Multi Edit Indicator=fore:#00A5FF; indic_box 60 | 2nd Inline-IME Color=fore:#f07171 61 | [Text Files] 62 | Default=font:Meiryo; size:9 63 | [ANSI Art] 64 | Default=font:Lucida Console 65 | Margins and Line Numbers=font:Arial; size:7 66 | Extra Line Spacing (Size)=size:0 67 | [Apache Config Files] 68 | Comment=fore:#abb0b6 69 | String=fore:#55b4d4 70 | Number=bold; fore:#f07171 71 | Directive=bold 72 | IP Address=bold; fore:#399ee6 73 | [Assembly Script] 74 | Comment=fore:#abb0b6 75 | String=fore:#55b4d4 76 | Number=bold; fore:#f07171 77 | Operator=bold 78 | CPU Instruction=bold 79 | FPU Instruction=bold 80 | Extended Instruction=bold 81 | Directive=bold; italic 82 | Directive Operand=bold; italic 83 | Register=fore:#fa8d3e 84 | [AutoHotkey_L Script] 85 | Comment=fore:#abb0b6 86 | String=fore:#55b4d4 87 | Label=bold; fore:#399ee6 88 | HotKey=bold; fore:#fa8d3e 89 | HotString=fore:#f2ae49 90 | KeyHotstringOption=fore:#f2ae49 91 | Hex Number=fore:#f07171 92 | Number=bold; fore:#f07171 93 | Variable=bold; fore:#a37acc 94 | Variable Dereferencing=bold; fore:#a37acc 95 | Object=bold 96 | User-Defined Function=bold; italic 97 | Directive=italic 98 | Command=bold 99 | Parameter=fore:#f2ae49 100 | Flow of Control=bold; italic 101 | Function=italic 102 | Key=bold 103 | Escape=bold; fore:#86b300 104 | Error=italic; fore:#f07171 105 | Built-In Variables=bold; fore:#f2ae49 106 | [AutoIt3 Script] 107 | Comment=fore:#abb0b6 108 | Number=bold; fore:#f07171 109 | Function=bold 110 | User-Defined Function=fore:#fa8d3e 111 | Keyword=bold; italic 112 | Macro=bold; fore:#399ee6 113 | String=fore:#55b4d4 114 | Operator=bold 115 | Variable=italic; fore:#a37acc 116 | Send Key=bold; fore:#86b300 117 | Preprocessor=bold 118 | Special=bold 119 | [AviSynth Script] 120 | Comment=fore:#abb0b6 121 | String=fore:#55b4d4 122 | Number=bold; fore:#f07171 123 | Keyword=bold; italic 124 | Filter=bold 125 | Clip Property=fore:#a37acc 126 | Plugin=bold; fore:#f2ae49 127 | Function=fore:#f2ae49 128 | [Awk Script] 129 | Keyword=bold 130 | Keyword 2nd=bold; fore:#a37acc 131 | Comment=fore:#abb0b6 132 | String=fore:#55b4d4 133 | Number=bold; fore:#f07171 134 | Operator=bold 135 | [Batch Files] 136 | Comment=fore:#abb0b6 137 | Keyword=bold 138 | Identifier=fore:#399ee6 139 | Operator=bold 140 | Command=bold; italic 141 | Label=bold; fore:#399ee6 142 | [C# Source Code] 143 | Comment=fore:#abb0b6 144 | Keyword=bold 145 | Identifier=fore:#399ee6 146 | String=fore:#55b4d4 147 | Verbatim String=fore:#a37acc 148 | Number=bold; fore:#f07171 149 | Operator=bold 150 | Preprocessor=bold 151 | Global Class=bold; fore:#f2ae49 152 | [C/C++ Source Code] 153 | Comment=fore:#abb0b6 154 | Keyword=bold; italic 155 | Keyword 2nd=fore:#a37acc; bold; italic 156 | Typedefs/Classes=bold; italic 157 | String=fore:#55b4d4 158 | Number=bold; fore:#f07171 159 | Operator=bold 160 | Preprocessor=bold 161 | [CIL Assembly] 162 | Keyword=bold; fore:#a37acc 163 | Type Keyword=fore:#399ee6 164 | Directive=bold 165 | Instruction= 166 | Comment=fore:#abb0b6 167 | String=fore:#55b4d4 168 | Label=bold; fore:#399ee6 169 | Number=bold; fore:#f07171 170 | Operator= 171 | [Cmake Script] 172 | Comment=fore:#abb0b6 173 | String=fore:#55b4d4 174 | Function=bold 175 | Parameter=bold; fore:#f2ae49 176 | Variable=fore:#a37acc 177 | While Def=bold; italic 178 | For Each Def=bold; italic 179 | If Def=bold; italic 180 | Macro Def=bold; italic 181 | Variable within String=bold; fore:#a37acc 182 | Number=bold; fore:#f07171 183 | [Coffeescript] 184 | Comment=fore:#abb0b6 185 | String=fore:#55b4d4 186 | Identifier= 187 | Operator=bold; fore:#6c7680 188 | Preprocessor=bold 189 | Number=bold; fore:#f07171 190 | Regex=fore:#a37acc 191 | Global Class=fore:#f2ae49 192 | Word=fore:#55b4d4 193 | Verbatim=fore:#55b4d4 194 | [Configuration Files] 195 | Comment=fore:#abb0b6 196 | Section=bold; fore:#399ee6 197 | Assignment=fore:#55b4d4 198 | Default Value=fore:#f2ae49 ;bold 199 | [CSS Style Sheets] 200 | Comment=fore:#abb0b6 201 | HTML Tag=bold 202 | Tag-Class=bold; fore:#f2ae49 203 | Tag-ID=bold; fore:#fa8d3e 204 | Tag-Attribute=fore:#399ee6 205 | Pseudo-Class=fore:#a37acc 206 | Pseudo-Element=italic 207 | CSS Property=bold 208 | String=fore:#55b4d4 209 | Value=fore:#399ee6 210 | Operator=bold 211 | Important=bold; fore:#55b4d4 212 | Directive=bold; italic 213 | Media=bold; italic; fore:#fa8d3e 214 | Variable=bold; fore:#fa8d3e 215 | Unknown Pseudo-Class=fore:#f07171; italic 216 | Unknown Property=bold; fore:#f07171; italic 217 | [CSV Prism] 218 | Column 0=bold 219 | Column 1=fore:#f07171 220 | Column 2=bold; fore:#fa8d3e 221 | Column 3=fore:#f2ae49 222 | Column 4=fore:#86b300 223 | Column 5=fore:#55b4d4 224 | Column 6=fore:#a37acc 225 | Column 7=bold; fore:#399ee6 226 | Column 8= 227 | Column 9=italic; fore:#86b300 228 | [D Source Code] 229 | Comment=fore:#abb0b6 230 | Comment Doc=fore:#abb0b6 231 | Number=bold; fore:#f07171 232 | Keyword=bold 233 | Keyword 2nd=bold; fore:#a37acc 234 | Typedef=italic 235 | String=fore:#55b4d4 236 | Operator=bold 237 | [Diff Files] 238 | Comment=fore:#abb0b6 239 | Command=bold; fore:#f2ae49 240 | Source and Destination=fore:#2F2F2F; back:#C7C7C7 241 | Position Setting=fore:#2F2F2F; back:#F1F8FF 242 | Line Addition=fore:#2F2F2F; back:#E6FFED; eolfilled 243 | Line Removal=fore:#2F2F2F; back:#FFCACA; eolfilled 244 | Line Change=fore:#2F2F2F; back:#FFFFDB; eolfilled 245 | [Go Source Code] 246 | Comment=fore:#abb0b6 247 | Number=bold; fore:#f07171 248 | Keyword=bold 249 | Keyword 2nd=bold; fore:#a37acc 250 | Typedef=bold; italic 251 | String=fore:#55b4d4 252 | Operator=bold 253 | [Inno Setup Script] 254 | Comment=fore:#abb0b6 255 | Keyword=bold 256 | Parameter=bold; fore:#f2ae49 257 | Section=bold; fore:#6c7680 258 | Preprocessor=bold; fore:#399ee6 259 | Inline Expansion=bold; fore:#a37acc 260 | Pascal Comment=fore:#abb0b6 261 | Pascal Keyword=bold; italic 262 | String=fore:#55b4d4 263 | [Java Source Code] 264 | Comment=fore:#abb0b6 265 | Keyword=fore:#a37acc; bold; italic 266 | String=fore:#55b4d4 267 | Regex=fore:#a37acc 268 | Number=bold; fore:#f07171 269 | Operator=bold 270 | [JavaScript] 271 | Comment=fore:#abb0b6 272 | Keyword=fore:#a37acc; bold 273 | String=fore:#55b4d4 274 | Regex=fore:#86b300 275 | Number=bold; fore:#f07171 276 | Operator=bold 277 | [JSON] 278 | String=fore:#89B8C2 279 | Number=bold; fore:#E27878 280 | LD Keyword=fore:#fa8d3e 281 | Operator= 282 | Property Name=fore:#86b300 283 | Regex=fore:#86b300 284 | ESC Sequence=fore:#A093C7 285 | Parsing Error=fore:#E27878 286 | [LaTeX Files] 287 | Command=bold 288 | Comment=fore:#abb0b6 289 | Math=bold; fore:#86b300 290 | Special Char=fore:#55b4d4 291 | Tag=bold; fore:#a37acc 292 | Verbatim Segment=bold; italic; bold; fore:#6c7680; back:#edf0f5 293 | [Lua Script] 294 | Comment=fore:#abb0b6 295 | Number=bold; fore:#f07171 296 | Keyword=bold 297 | Basic Functions=bold 298 | String, Table & Math Functions=bold; fore:#86b300 299 | Input, Output & System Facilities=bold; fore:#a37acc 300 | String=fore:#55b4d4 301 | Literal String=fore:#55b4d4 302 | Operator=bold 303 | Label=bold; fore:#399ee6 304 | [Makefiles] 305 | Comment=fore:#abb0b6 306 | Identifier=fore:#f2ae49 307 | Target=bold 308 | Preprocessor=bold; fore:#a37acc 309 | [Markdown] 310 | Strong=bold; fore:#f2ae49 311 | Emphasis=italic; fore:#f2ae49 312 | Header 1=bold; fore:#f07171 313 | Header 2=bold; fore:#f07171 314 | Header 3=bold; fore:#f07171 315 | Header 4=bold; fore:#f07171 316 | Header 5=bold; fore:#f07171 317 | Header 6=bold; fore:#f07171 318 | Unordered List=bold; fore:#55b4d4 319 | Ordered List=bold; fore:#55b4d4 320 | Pre Char=fore:#fa8d3e; back:#3d425b 321 | Block Quote=fore:#fa8d3e 322 | Strikeout=fore:#a37acc; italic 323 | Horizontal Rule=size:+2; bold 324 | Link=fore:#55b4d4 325 | Code=fore:#f2ae49 326 | [MATLAB] 327 | Comment=fore:#abb0b6 328 | Number=bold; fore:#f07171 329 | Keyword=fore:#a37acc; bold 330 | String=fore:#55b4d4 331 | Operator=bold 332 | [Nim Source Code] 333 | Comment=fore:#abb0b6 334 | Keyword=fore:#a37acc; bold 335 | String Double Quoted=fore:#55b4d4 336 | String Single Quoted=fore:#86b300 337 | String Triple Double Quotes=italic; fore:#55b4d4 338 | String Triple Single Quotes=italic; fore:#86b300 339 | Number=bold; fore:#f07171 340 | Operator=bold 341 | Function name=fore:#f2ae49 342 | [NSIS Script] 343 | Comment=fore:#abb0b6 344 | String=fore:#55b4d4 345 | Function=fore:#a37acc; bold 346 | Variable=italic; fore:#f2ae49 347 | Variable within String=bold; italic; fore:#f2ae49 348 | Number=bold; fore:#f07171 349 | Constant=fore:#86b300 350 | Section=bold; fore:#fa8d3e 351 | Sub Sectionbold; fore:#6c7680 352 | Section Group=bold; fore:#86b300 353 | Function Definition=bold; italic 354 | PageEx=bold; italic 355 | If Definition=bold; italic 356 | Macro Definition=bold; italic 357 | [Pascal Source Code] 358 | Comment=fore:#abb0b6 359 | Keyword=fore:#a37acc; bold 360 | String=fore:#55b4d4 361 | Number=bold; fore:#f07171 362 | Inline Asm=fore:#fa8d3e 363 | Preprocessor=bold; fore:#f2ae49 364 | [Perl Script] 365 | Comment=fore:#abb0b6 366 | Keyword=bold 367 | String Double Quoted=fore:#55b4d4 368 | String Single Quoted=fore:#86b300 369 | Number=bold; fore:#f07171 370 | Scalar $var=italic; fore:#fa8d3e 371 | Array @var=italic; fore:#f2ae49 372 | Hash %var=italic; fore:#86b300 373 | Symbol Table *var=fore:#399ee6 374 | Regex /re/ or m{re}=fore:#a37acc 375 | Substitution s/re/ore/=fore:#a37acc; back:#f0f1f2 376 | Back Ticks=fore:#f2ae49 377 | Here-Doc (Delimiter)=bold; back:#f0f1f2 378 | Here-Doc (Single Quoted, q)=italic; fore:#86b300; back:#f0f1f2 379 | Here-Doc (Double Quoted, qq)=italic; fore:#55b4d4; back:#f0f1f2 380 | Here-Doc (Back Ticks, qx)=italic; bold; fore:#f2ae49; back:#f0f1f2 381 | Single Quoted String (Generic, q)=fore:#86b300 382 | Double Quoted String (qq)=fore:#55b4d4 383 | Back Ticks (qx)=fore:#f2ae49 384 | Regex (qr)=fore:#a37acc 385 | Array (qw)=fore:#fa8d3e 386 | Prototype=bold; fore:#a37acc 387 | Format Identifier=bold; fore:#55b4d4 388 | Format Body=fore:#006DAE; back:#C7C7C7 389 | POD (Common)=fore:#2F2F2F; back:#E6FFED; eolfilled 390 | POD (Verbatim)=fore:#2F2F2F; back:#FFFFDB; eolfilled 391 | Data Section=fore:#2F2F2F; back:#C7C7C7 392 | Parsing Error=bold; italic; fore:#f07171 393 | [PowerShell Script] 394 | Comment=fore:#abb0b6 395 | Keyword=fore:#a37acc; bold; italic 396 | String=fore:#55b4d4 397 | Number=bold; fore:#f07171 398 | Variable=italic; fore:#f2ae49 399 | Cmdlet=fore:#399ee6; bold 400 | Alias=bold; fore:#86b300 401 | [Python Script] 402 | Comment=fore:#abb0b6 403 | Keyword=fore:#a37acc; bold 404 | String Double Quoted=fore:#55b4d4 405 | String Single Quoted=fore:#86b300 406 | String Triple Double Quotes=italic; fore:#55b4d4 407 | String Triple Single Quotes=italic; fore:#86b300 408 | Number=bold; fore:#f07171 409 | Operator=bold 410 | Function Name=italic 411 | Class Name=fore:#f2ae49 412 | [Registry Files] 413 | Comment=fore:#abb0b6 414 | Value Name= 415 | String=fore:#55b4d4 416 | Value Type=bold 417 | Hex=bold; fore:#f07171 418 | Added Key=bold; fore:#fa8d3e; 419 | Deleted Key=fore:#f2ae49 420 | GUID in Key Path=bold; fore:#a37acc 421 | Parameter=fore:#86b300 422 | Escaped=bold; fore:#86b300 423 | [Resource Script] 424 | Comment=fore:#abb0b6 425 | Keyword=bold 426 | String=fore:#55b4d4 427 | Number=bold; fore:#f07171 428 | Operator=bold 429 | Preprocessor=fore:#a37acc 430 | [R-S-SPlus Statistics Code] 431 | Comment=fore:#abb0b6 432 | Keyword=fore:#86b300; bold; italic 433 | Base Package Functions=bold; fore:#399ee6 434 | Other Package Functions=bold; fore:#f2ae49 435 | Number=bold; fore:#f07171 436 | String=fore:#55b4d4 437 | Operator=bold 438 | Infix=fore:#a37acc 439 | Infix EOL=fore:#a37acc; back:#edf0f5; eolfilled 440 | [Ruby Script] 441 | Comment=fore:#abb0b6 442 | Keyword=fore:#a37acc; bold 443 | Number=bold; fore:#f07171 444 | Operator=bold 445 | String=fore:#55b4d4; bold 446 | Class Name=italic 447 | Function Name=fore:#a37acc 448 | Regex=fore:#86b300 449 | Symbol=bold; fore:#fa8d3e 450 | Module Name=bold; fore:#399ee6 451 | Instance Var=bold; fore:#86b300 452 | Class Var=bold; fore:#f2ae49 453 | Data Section=bold; fore:#6c7680; back:#edf0f5; eolfilled 454 | [Rust Source Code] 455 | Keyword=fore:#a37acc; bold 456 | Build-In Type=bold; fore:#55b4d4 457 | Other Keyword=bold; italic 458 | Number=bold; fore:#f07171 459 | String=fore:#55b4d4 460 | Operator=bold 461 | Macro Definition=fore:#86b300 462 | Rust Lifetime=fore:#fa8d3e 463 | Byte String=fore:#a37acc 464 | Parsing Error=italic; fore:#f07171 465 | [Shell Script] 466 | Error=italic; fore:#f07171 467 | Comment=fore:#abb0b6 468 | Number=bold; fore:#f07171 469 | Keyword=fore:#a37acc; bold 470 | String Double Quoted=fore:#55b4d4 471 | String Single Quoted=fore:#86b300 472 | Scalar=fore:#399ee6 473 | Parameter Expansion=fore:#a37acc 474 | Back Ticks=fore:#f2ae49 475 | Here-Doc (Delimiter)=bold; fore:#fa8d3e 476 | Here-Doc (Single Quoted, q)=bold; fore:#6c7680; back:#edf0f5; eolfilled 477 | Operator=bold 478 | [SQL Query] 479 | Comment=fore:#abb0b6 480 | Keyword=bold 481 | Value Type=bold; fore:#f2ae49 482 | String=fore:#55b4d4 483 | Identifier=fore:#a37acc 484 | Quoted Identifier=bold; fore:#a37acc 485 | Number=bold; fore:#f07171 486 | Operator=bold 487 | [Tcl Script] 488 | Comment=fore:#abb0b6 489 | Keyword=fore:#a37acc; bold 490 | Number=bold; fore:#f07171 491 | String=fore:#55b4d4 492 | Operator=bold 493 | Identifier= 494 | Modifier=italic; fore:#86b300 495 | Substitution=bold; fore:#6c7680 496 | [TOML Config] 497 | Keyword=bold; fore:#a37acc 498 | Comment=fore:#abb0b6 499 | Section=bold; fore:#399ee6 500 | Key= 501 | Assignment=bold 502 | Value=fore:#55b4d4 503 | Number=bold; fore:#f07171 504 | Date-Time=fore:#86b300 505 | String=fore:#55b4d4 506 | Parsing Error=italic; fore:#f07171; 507 | [VBScript] 508 | Comment=fore:#abb0b6 509 | Keyword=bold; fore:#a37acc 510 | String=fore:#55b4d4 511 | Number=bold; fore:#f07171 512 | Operator=bold 513 | [VHDL] 514 | Comment=fore:#abb0b6 515 | Number=bold; fore:#f07171 516 | String=fore:#86b300 517 | Operator= 518 | Keyword=bold; fore:#a37acc 519 | Standard Operator=bold; fore:#fa8d3e 520 | Attribute=fore:#f2ae49 521 | Standard Function=bold; fore:#86b300 522 | Standard Package=bold; fore:#399ee6 523 | Standard Type=bold; fore:#399ee6 524 | [Visual Basic] 525 | Comment=fore:#abb0b6 526 | Keyword=bold; fore:#a37acc 527 | String=fore:#55b4d4 528 | Number=bold; fore:#f07171 529 | Operator= 530 | Preprocessor=bold; fore:#f2ae49 531 | [Web Source Code] 532 | HTML Tag=bold; fore:#a37acc 533 | HTML Unknown Tag=fore:#f07171 534 | HTML Attribute=fore:#55b4d4 535 | HTML Unknown Attribute=fore:#f07171 536 | HTML Value=fore:#f2ae49 537 | HTML String=fore:#86b300 538 | HTML Comment=fore:#abb0b6 539 | HTML Entity=fore:#f2ae49 540 | HTML Other Inside Tag=fore:#f2ae49 541 | XML Identifier=bold 542 | SGML=fore:#a37acc; bold 543 | ASP Start Tag=bold; italic; fore:#399ee6 544 | PHP Start Tag=bold; italic; fore:#399ee6 545 | PHP Comment=fore:#abb0b6 546 | PHP Keyword=bold; fore:#a37acc 547 | PHP String=fore:#55b4d4 548 | PHP Simple String=fore:#86b300 549 | PHP Number=bold; fore:#f07171 550 | PHP Operator=bold 551 | PHP Variable=italic; fore:#f2ae49 552 | PHP String Variable=bold; italic; fore:#fa8d3e 553 | PHP Complex Variable=italic; fore:#399ee6 554 | JS Comment=fore:#abb0b6 555 | JS Keyword=bold 556 | JS String=fore:#55b4d4 557 | JS Regex=fore:#f2ae49 558 | JS Number=bold; fore:#f07171 559 | JS Symbols=bold 560 | ASP JS Comment=fore:#abb0b6 561 | ASP JS Keyword=bold 562 | ASP JS String=fore:#55b4d4 563 | ASP JS Regex=fore:#f2ae49 564 | ASP JS Number=bold; fore:#f07171 565 | ASP JS Symbols=bold 566 | VBS Comment=fore:#abb0b6 567 | VBS Keyword=bold 568 | VBS String=fore:#55b4d4 569 | VBS Number=bold; fore:#f07171 570 | ASP VBS Comment=fore:#abb0b6 571 | ASP VBS Keyword=bold 572 | ASP VBS String=fore:#55b4d4 573 | ASP VBS Number=bold; fore:#f07171 574 | [XML Document] 575 | XML Tag=fore:#a37acc 576 | XML Attribute=fore:#55b4d4 577 | XML Value=fore:#f2ae49 578 | XML String=fore:#86b300 579 | XML Other Inside Tag=bold; fore:#f2ae49 580 | XML Comment=fore:#abb0b6 581 | XML Entity=bold 582 | XML Identifier=bold 583 | SGML=fore:#a37acc; bold 584 | CDATA=fore:#86b300 585 | [YAML] 586 | Comment=fore:#abb0b6 587 | Identifier=fore:#55b4d4 588 | Keyword=bold 589 | Number=bold; fore:#f07171 590 | Document=bold; fore:#6c7680; back:#edf0f5; eolfilled 591 | Error=italic; fore:#f07171 592 | Operator=bold; fore:#fa8d3e 593 | Text=fore:#a37acc 594 | Reference=fore:#f2ae49 595 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_ayu Mirage.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: ayu Mirage (by Ike Ku et al, License:MIT) 7 | # https://github.com/dempfi/ayu 8 | # 9 | [Custom Colors] 10 | 01=#1f2430; Background 11 | 02=#191e2a; Current line 12 | 03=#34455a; Selection 13 | 04=#cbccc6; Fore 14 | 05=#5c6773; Comment 15 | 06=#F8FD99 16 | 07=#F8FD99 17 | 08=#cbccc6; #191e2a Gray 8 18 | 09=#73d0ff; Pink/Magenta 5 19 | 10=#f28779; Red 61 20 | 11=#ffa759; Orange 21 21 | 12=#ffd580; Yellow 38 22 | 13=#bae67e; Green 37 23 | 14=#5ccfe6; Aqua/Cyan 64 24 | 15=#73d0ff; Blue 12 25 | 16=#d4bfff; Purple/Violet 61 26 | [Styles] 27 | Use2ndDefaultStyle=true 28 | [Common Base] 29 | Default Style=font:Meiryo; size:9; fore:#cbccc6; back:#1f2430 30 | Margins and Line Numbers=font:Arial; size:8; fore:#5c6773; back:#191e2a 31 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 32 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 33 | Indentation Guide (Color)=fore:#5c6773 34 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 35 | Whitespace (Colors, Size 0-12)=fore:#ffd580 36 | Current Line Background (Color)=back:#191e2a 37 | Caret (Color, Size 1-3)=size:2; fore:#cbccc6 38 | Long Line Marker (Colors)=fore:#34455a 39 | Bookmarks and Folding (Colors, Size)=fore:#ffa759; back:#fefefe; alpha:50; case:U 40 | Mark Occurrences (Indicator)=fore:#f28779; alpha:100; alpha2:100; indic_roundbox 41 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 42 | Multi Edit Indicator=fore:#00A5FF; indic_box 43 | Inline-IME Color=fore:#bae67e 44 | [2nd Common Base] 45 | 2nd Default Style=font:Meiryo; size:9; fore:#cbccc6; back:#1f2430 46 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#5c6773; back:#191e2a 47 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 48 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 49 | 2nd Indentation Guide (Color)=fore:#5c6773 50 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 51 | 2nd Whitespace (Colors, Size 0-12)=fore:#ffd580 52 | 2nd Current Line Background (Color)=back:#191e2a 53 | 2nd Caret (Color, Size 1-3)=size:2; fore:#cbccc6 54 | 2nd Long Line Marker (Colors)=fore:#34455a 55 | 2nd Extra Line Spacing (Size)=size:2 56 | 2nd Bookmarks and Folding (Colors, Size)=fore:#ffa759; back:#fefefe; alpha:50; case:U 57 | 2nd Mark Occurrences (Indicator)=fore:#f28779; alpha:100; alpha2:100; indic_roundbox 58 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 59 | Multi Edit Indicator=fore:#00A5FF; indic_box 60 | 2nd Inline-IME Color=fore:#bae67e 61 | [Text Files] 62 | Default=font:Meiryo; size:9 63 | [ANSI Art] 64 | Default=font:Lucida Console 65 | Margins and Line Numbers=font:Arial; size:7 66 | Extra Line Spacing (Size)=size:0 67 | [Apache Config Files] 68 | Comment=fore:#5c6773 69 | String=fore:#5ccfe6 70 | Number=bold; fore:#f28779 71 | Directive=bold 72 | IP Address=bold; fore:#73d0ff 73 | [Assembly Script] 74 | Comment=fore:#5c6773 75 | String=fore:#5ccfe6 76 | Number=bold; fore:#f28779 77 | Operator=bold 78 | CPU Instruction=bold 79 | FPU Instruction=bold 80 | Extended Instruction=bold 81 | Directive=bold; italic 82 | Directive Operand=bold; italic 83 | Register=fore:#ffa759 84 | [AutoHotkey_L Script] 85 | Comment=fore:#5c6773 86 | String=fore:#5ccfe6 87 | Label=bold; fore:#73d0ff 88 | HotKey=bold; fore:#ffa759 89 | HotString=fore:#ffd580 90 | KeyHotstringOption=fore:#ffd580 91 | Hex Number=fore:#f28779 92 | Number=bold; fore:#f28779 93 | Variable=bold; fore:#d4bfff 94 | Variable Dereferencing=bold; fore:#d4bfff 95 | Object=bold 96 | User-Defined Function=bold; italic 97 | Directive=italic 98 | Command=bold 99 | Parameter=fore:#ffd580 100 | Flow of Control=bold; italic 101 | Function=italic 102 | Key=bold 103 | Escape=bold; fore:#bae67e 104 | Error=italic; fore:#f28779 105 | Built-In Variables=bold; fore:#ffd580 106 | [AutoIt3 Script] 107 | Comment=fore:#5c6773 108 | Number=bold; fore:#f28779 109 | Function=bold 110 | User-Defined Function=fore:#ffa759 111 | Keyword=bold; italic 112 | Macro=bold; fore:#73d0ff 113 | String=fore:#5ccfe6 114 | Operator=bold 115 | Variable=italic; fore:#d4bfff 116 | Send Key=bold; fore:#bae67e 117 | Preprocessor=bold 118 | Special=bold 119 | [AviSynth Script] 120 | Comment=fore:#5c6773 121 | String=fore:#5ccfe6 122 | Number=bold; fore:#f28779 123 | Keyword=bold; italic 124 | Filter=bold 125 | Clip Property=fore:#d4bfff 126 | Plugin=bold; fore:#ffd580 127 | Function=fore:#ffd580 128 | [Awk Script] 129 | Keyword=bold 130 | Keyword 2nd=bold; fore:#d4bfff 131 | Comment=fore:#5c6773 132 | String=fore:#5ccfe6 133 | Number=bold; fore:#f28779 134 | Operator=bold 135 | [Batch Files] 136 | Comment=fore:#5c6773 137 | Keyword=bold 138 | Identifier=fore:#73d0ff 139 | Operator=bold 140 | Command=bold; italic 141 | Label=bold; fore:#73d0ff 142 | [C# Source Code] 143 | Comment=fore:#5c6773 144 | Keyword=bold 145 | Identifier=fore:#73d0ff 146 | String=fore:#5ccfe6 147 | Verbatim String=fore:#d4bfff 148 | Number=bold; fore:#f28779 149 | Operator=bold 150 | Preprocessor=bold 151 | Global Class=bold; fore:#ffd580 152 | [C/C++ Source Code] 153 | Comment=fore:#5c6773 154 | Keyword=bold; italic 155 | Keyword 2nd=fore:#d4bfff; bold; italic 156 | Typedefs/Classes=bold; italic 157 | String=fore:#5ccfe6 158 | Number=bold; fore:#f28779 159 | Operator=bold 160 | Preprocessor=bold 161 | [CIL Assembly] 162 | Keyword=bold; fore:#d4bfff 163 | Type Keyword=fore:#73d0ff 164 | Directive=bold 165 | Instruction= 166 | Comment=fore:#5c6773 167 | String=fore:#5ccfe6 168 | Label=bold; fore:#73d0ff 169 | Number=bold; fore:#f28779 170 | Operator= 171 | [Cmake Script] 172 | Comment=fore:#5c6773 173 | String=fore:#5ccfe6 174 | Function=bold 175 | Parameter=bold; fore:#ffd580 176 | Variable=fore:#d4bfff 177 | While Def=bold; italic 178 | For Each Def=bold; italic 179 | If Def=bold; italic 180 | Macro Def=bold; italic 181 | Variable within String=bold; fore:#d4bfff 182 | Number=bold; fore:#f28779 183 | [Coffeescript] 184 | Comment=fore:#5c6773 185 | String=fore:#5ccfe6 186 | Identifier= 187 | Operator=bold; fore:#cbccc6 188 | Preprocessor=bold 189 | Number=bold; fore:#f28779 190 | Regex=fore:#d4bfff 191 | Global Class=fore:#ffd580 192 | Word=fore:#5ccfe6 193 | Verbatim=fore:#5ccfe6 194 | [Configuration Files] 195 | Comment=fore:#5c6773 196 | Section=bold; fore:#73d0ff 197 | Assignment=fore:#5ccfe6 198 | Default Value=fore:#ffd580 ;bold 199 | [CSS Style Sheets] 200 | Comment=fore:#5c6773 201 | HTML Tag=bold 202 | Tag-Class=bold; fore:#ffd580 203 | Tag-ID=bold; fore:#ffa759 204 | Tag-Attribute=fore:#73d0ff 205 | Pseudo-Class=fore:#d4bfff 206 | Pseudo-Element=italic 207 | CSS Property=bold 208 | String=fore:#5ccfe6 209 | Value=fore:#73d0ff 210 | Operator=bold 211 | Important=bold; fore:#5ccfe6 212 | Directive=bold; italic 213 | Media=bold; italic; fore:#ffa759 214 | Variable=bold; fore:#ffa759 215 | Unknown Pseudo-Class=fore:#f28779; italic 216 | Unknown Property=bold; fore:#f28779; italic 217 | [CSV Prism] 218 | Column 0=bold 219 | Column 1=fore:#f28779 220 | Column 2=bold; fore:#ffa759 221 | Column 3=fore:#ffd580 222 | Column 4=fore:#bae67e 223 | Column 5=fore:#5ccfe6 224 | Column 6=fore:#d4bfff 225 | Column 7=bold; fore:#73d0ff 226 | Column 8= 227 | Column 9=italic; fore:#bae67e 228 | [D Source Code] 229 | Comment=fore:#5c6773 230 | Comment Doc=fore:#5c6773 231 | Number=bold; fore:#f28779 232 | Keyword=bold 233 | Keyword 2nd=bold; fore:#d4bfff 234 | Typedef=italic 235 | String=fore:#5ccfe6 236 | Operator=bold 237 | [Diff Files] 238 | Comment=fore:#5c6773 239 | Command=bold; fore:#ffd580 240 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 241 | Position Setting=fore:#BFBFBF; back:#002B55 242 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 243 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 244 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 245 | [Go Source Code] 246 | Comment=fore:#5c6773 247 | Number=bold; fore:#f28779 248 | Keyword=bold 249 | Keyword 2nd=bold; fore:#d4bfff 250 | Typedef=bold; italic 251 | String=fore:#5ccfe6 252 | Operator=bold 253 | [Inno Setup Script] 254 | Comment=fore:#5c6773 255 | Keyword=bold 256 | Parameter=bold; fore:#ffd580 257 | Section=bold; fore:#cbccc6 258 | Preprocessor=bold; fore:#73d0ff 259 | Inline Expansion=bold; fore:#d4bfff 260 | Pascal Comment=fore:#5c6773 261 | Pascal Keyword=bold; italic 262 | String=fore:#5ccfe6 263 | [Java Source Code] 264 | Comment=fore:#5c6773 265 | Keyword=fore:#d4bfff; bold; italic 266 | String=fore:#5ccfe6 267 | Regex=fore:#d4bfff 268 | Number=bold; fore:#f28779 269 | Operator=bold 270 | [JavaScript] 271 | Comment=fore:#5c6773 272 | Keyword=fore:#d4bfff; bold 273 | String=fore:#5ccfe6 274 | Regex=fore:#bae67e 275 | Number=bold; fore:#f28779 276 | Operator=bold 277 | [JSON] 278 | String=fore:#89B8C2 279 | Number=bold; fore:#E27878 280 | LD Keyword=fore:#ffa759 281 | Operator= 282 | Property Name=fore:#bae67e 283 | Regex=fore:#bae67e 284 | ESC Sequence=fore:#A093C7 285 | Parsing Error=fore:#E27878 286 | [LaTeX Files] 287 | Command=bold 288 | Comment=fore:#5c6773 289 | Math=bold; fore:#bae67e 290 | Special Char=fore:#5ccfe6 291 | Tag=bold; fore:#d4bfff 292 | Verbatim Segment=bold; italic; bold; fore:#cbccc6; back:#34455a 293 | [Lua Script] 294 | Comment=fore:#5c6773 295 | Number=bold; fore:#f28779 296 | Keyword=bold 297 | Basic Functions=bold 298 | String, Table & Math Functions=bold; fore:#bae67e 299 | Input, Output & System Facilities=bold; fore:#d4bfff 300 | String=fore:#5ccfe6 301 | Literal String=fore:#5ccfe6 302 | Operator=bold 303 | Label=bold; fore:#73d0ff 304 | [Makefiles] 305 | Comment=fore:#5c6773 306 | Identifier=fore:#ffd580 307 | Target=bold 308 | Preprocessor=bold; fore:#d4bfff 309 | [Markdown] 310 | Strong=bold; fore:#ffd580 311 | Emphasis=italic; fore:#ffd580 312 | Header 1=bold; fore:#f28779 313 | Header 2=bold; fore:#f28779 314 | Header 3=bold; fore:#f28779 315 | Header 4=bold; fore:#f28779 316 | Header 5=bold; fore:#f28779 317 | Header 6=bold; fore:#f28779 318 | Unordered List=bold; fore:#5ccfe6 319 | Ordered List=bold; fore:#5ccfe6 320 | Pre Char=fore:#ffa759; back:#3d425b 321 | Block Quote=fore:#ffa759 322 | Strikeout=fore:#d4bfff; italic 323 | Horizontal Rule=size:+2; bold 324 | Link=fore:#5ccfe6 325 | Code=fore:#ffd580 326 | [MATLAB] 327 | Comment=fore:#5c6773 328 | Number=bold; fore:#f28779 329 | Keyword=fore:#d4bfff; bold 330 | String=fore:#5ccfe6 331 | Operator=bold 332 | [Nim Source Code] 333 | Comment=fore:#5c6773 334 | Keyword=fore:#d4bfff; bold 335 | String Double Quoted=fore:#5ccfe6 336 | String Single Quoted=fore:#bae67e 337 | String Triple Double Quotes=italic; fore:#5ccfe6 338 | String Triple Single Quotes=italic; fore:#bae67e 339 | Number=bold; fore:#f28779 340 | Operator=bold 341 | Function name=fore:#ffd580 342 | [NSIS Script] 343 | Comment=fore:#5c6773 344 | String=fore:#5ccfe6 345 | Function=fore:#d4bfff; bold 346 | Variable=italic; fore:#ffd580 347 | Variable within String=bold; italic; fore:#ffd580 348 | Number=bold; fore:#f28779 349 | Constant=fore:#bae67e 350 | Section=bold; fore:#ffa759 351 | Sub Sectionbold; fore:#cbccc6 352 | Section Group=bold; fore:#bae67e 353 | Function Definition=bold; italic 354 | PageEx=bold; italic 355 | If Definition=bold; italic 356 | Macro Definition=bold; italic 357 | [Pascal Source Code] 358 | Comment=fore:#5c6773 359 | Keyword=fore:#d4bfff; bold 360 | String=fore:#5ccfe6 361 | Number=bold; fore:#f28779 362 | Inline Asm=fore:#ffa759 363 | Preprocessor=bold; fore:#ffd580 364 | [Perl Script] 365 | Comment=fore:#5c6773 366 | Keyword=bold 367 | String Double Quoted=fore:#5ccfe6 368 | String Single Quoted=fore:#bae67e 369 | Number=bold; fore:#f28779 370 | Scalar $var=italic; fore:#ffa759 371 | Array @var=italic; fore:#ffd580 372 | Hash %var=italic; fore:#bae67e 373 | Symbol Table *var=fore:#73d0ff 374 | Regex /re/ or m{re}=fore:#d4bfff 375 | Substitution s/re/ore/=fore:#d4bfff; back:#191e2a 376 | Back Ticks=fore:#ffd580 377 | Here-Doc (Delimiter)=bold; back:#191e2a 378 | Here-Doc (Single Quoted, q)=italic; fore:#bae67e; back:#191e2a 379 | Here-Doc (Double Quoted, qq)=italic; fore:#5ccfe6; back:#191e2a 380 | Here-Doc (Back Ticks, qx)=italic; bold; fore:#ffd580; back:#191e2a 381 | Single Quoted String (Generic, q)=fore:#bae67e 382 | Double Quoted String (qq)=fore:#5ccfe6 383 | Back Ticks (qx)=fore:#ffd580 384 | Regex (qr)=fore:#d4bfff 385 | Array (qw)=fore:#ffa759 386 | Prototype=bold; fore:#d4bfff 387 | Format Identifier=bold; fore:#5ccfe6 388 | Format Body=fore:#0093EA; back:#2A2A2A 389 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 390 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 391 | Data Section=fore:#BFBFBF; back:#2A2A2A 392 | Parsing Error=bold; italic; fore:#f28779 393 | [PowerShell Script] 394 | Comment=fore:#5c6773 395 | Keyword=fore:#d4bfff; bold; italic 396 | String=fore:#5ccfe6 397 | Number=bold; fore:#f28779 398 | Variable=italic; fore:#ffd580 399 | Cmdlet=fore:#73d0ff; bold 400 | Alias=bold; fore:#bae67e 401 | [Python Script] 402 | Comment=fore:#5c6773 403 | Keyword=fore:#d4bfff; bold 404 | String Double Quoted=fore:#5ccfe6 405 | String Single Quoted=fore:#bae67e 406 | String Triple Double Quotes=italic; fore:#5ccfe6 407 | String Triple Single Quotes=italic; fore:#bae67e 408 | Number=bold; fore:#f28779 409 | Operator=bold 410 | Function Name=italic 411 | Class Name=fore:#ffd580 412 | [Registry Files] 413 | Comment=fore:#5c6773 414 | Value Name= 415 | String=fore:#5ccfe6 416 | Value Type=bold 417 | Hex=bold; fore:#f28779 418 | Added Key=bold; fore:#ffa759; 419 | Deleted Key=fore:#ffd580 420 | GUID in Key Path=bold; fore:#d4bfff 421 | Parameter=fore:#bae67e 422 | Escaped=bold; fore:#bae67e 423 | [Resource Script] 424 | Comment=fore:#5c6773 425 | Keyword=bold 426 | String=fore:#5ccfe6 427 | Number=bold; fore:#f28779 428 | Operator=bold 429 | Preprocessor=fore:#d4bfff 430 | [R-S-SPlus Statistics Code] 431 | Comment=fore:#5c6773 432 | Keyword=fore:#bae67e; bold; italic 433 | Base Package Functions=bold; fore:#73d0ff 434 | Other Package Functions=bold; fore:#ffd580 435 | Number=bold; fore:#f28779 436 | String=fore:#5ccfe6 437 | Operator=bold 438 | Infix=fore:#d4bfff 439 | Infix EOL=fore:#d4bfff; back:#34455a; eolfilled 440 | [Ruby Script] 441 | Comment=fore:#5c6773 442 | Keyword=fore:#d4bfff; bold 443 | Number=bold; fore:#f28779 444 | Operator=bold 445 | String=fore:#5ccfe6; bold 446 | Class Name=italic 447 | Function Name=fore:#d4bfff 448 | Regex=fore:#bae67e 449 | Symbol=bold; fore:#ffa759 450 | Module Name=bold; fore:#73d0ff 451 | Instance Var=bold; fore:#bae67e 452 | Class Var=bold; fore:#ffd580 453 | Data Section=bold; fore:#cbccc6; back:#34455a; eolfilled 454 | [Rust Source Code] 455 | Keyword=fore:#d4bfff; bold 456 | Build-In Type=bold; fore:#5ccfe6 457 | Other Keyword=bold; italic 458 | Number=bold; fore:#f28779 459 | String=fore:#5ccfe6 460 | Operator=bold 461 | Macro Definition=fore:#bae67e 462 | Rust Lifetime=fore:#ffa759 463 | Byte String=fore:#d4bfff 464 | Parsing Error=italic; fore:#f28779 465 | [Shell Script] 466 | Error=italic; fore:#f28779 467 | Comment=fore:#5c6773 468 | Number=bold; fore:#f28779 469 | Keyword=fore:#d4bfff; bold 470 | String Double Quoted=fore:#5ccfe6 471 | String Single Quoted=fore:#bae67e 472 | Scalar=fore:#73d0ff 473 | Parameter Expansion=fore:#d4bfff 474 | Back Ticks=fore:#ffd580 475 | Here-Doc (Delimiter)=bold; fore:#ffa759 476 | Here-Doc (Single Quoted, q)=bold; fore:#cbccc6; back:#34455a; eolfilled 477 | Operator=bold 478 | [SQL Query] 479 | Comment=fore:#5c6773 480 | Keyword=bold 481 | Value Type=bold; fore:#ffd580 482 | String=fore:#5ccfe6 483 | Identifier=fore:#d4bfff 484 | Quoted Identifier=bold; fore:#d4bfff 485 | Number=bold; fore:#f28779 486 | Operator=bold 487 | [Tcl Script] 488 | Comment=fore:#5c6773 489 | Keyword=fore:#d4bfff; bold 490 | Number=bold; fore:#f28779 491 | String=fore:#5ccfe6 492 | Operator=bold 493 | Identifier= 494 | Modifier=italic; fore:#bae67e 495 | Substitution=bold; fore:#cbccc6 496 | [TOML Config] 497 | Keyword=bold; fore:#d4bfff 498 | Comment=fore:#5c6773 499 | Section=bold; fore:#73d0ff 500 | Key= 501 | Assignment=bold 502 | Value=fore:#5ccfe6 503 | Number=bold; fore:#f28779 504 | Date-Time=fore:#bae67e 505 | String=fore:#5ccfe6 506 | Parsing Error=italic; fore:#f28779; 507 | [VBScript] 508 | Comment=fore:#5c6773 509 | Keyword=bold; fore:#d4bfff 510 | String=fore:#5ccfe6 511 | Number=bold; fore:#f28779 512 | Operator=bold 513 | [VHDL] 514 | Comment=fore:#5c6773 515 | Number=bold; fore:#f28779 516 | String=fore:#bae67e 517 | Operator= 518 | Keyword=bold; fore:#d4bfff 519 | Standard Operator=bold; fore:#ffa759 520 | Attribute=fore:#ffd580 521 | Standard Function=bold; fore:#bae67e 522 | Standard Package=bold; fore:#73d0ff 523 | Standard Type=bold; fore:#73d0ff 524 | [Visual Basic] 525 | Comment=fore:#5c6773 526 | Keyword=bold; fore:#d4bfff 527 | String=fore:#5ccfe6 528 | Number=bold; fore:#f28779 529 | Operator= 530 | Preprocessor=bold; fore:#ffd580 531 | [Web Source Code] 532 | HTML Tag=bold; fore:#d4bfff 533 | HTML Unknown Tag=fore:#f28779 534 | HTML Attribute=fore:#5ccfe6 535 | HTML Unknown Attribute=fore:#f28779 536 | HTML Value=fore:#ffd580 537 | HTML String=fore:#bae67e 538 | HTML Comment=fore:#5c6773 539 | HTML Entity=fore:#ffd580 540 | HTML Other Inside Tag=fore:#ffd580 541 | XML Identifier=bold 542 | SGML=fore:#d4bfff; bold 543 | ASP Start Tag=bold; italic; fore:#73d0ff 544 | PHP Start Tag=bold; italic; fore:#73d0ff 545 | PHP Comment=fore:#5c6773 546 | PHP Keyword=bold; fore:#d4bfff 547 | PHP String=fore:#5ccfe6 548 | PHP Simple String=fore:#bae67e 549 | PHP Number=bold; fore:#f28779 550 | PHP Operator=bold 551 | PHP Variable=italic; fore:#ffd580 552 | PHP String Variable=bold; italic; fore:#ffa759 553 | PHP Complex Variable=italic; fore:#73d0ff 554 | JS Comment=fore:#5c6773 555 | JS Keyword=bold 556 | JS String=fore:#5ccfe6 557 | JS Regex=fore:#ffd580 558 | JS Number=bold; fore:#f28779 559 | JS Symbols=bold 560 | ASP JS Comment=fore:#5c6773 561 | ASP JS Keyword=bold 562 | ASP JS String=fore:#5ccfe6 563 | ASP JS Regex=fore:#ffd580 564 | ASP JS Number=bold; fore:#f28779 565 | ASP JS Symbols=bold 566 | VBS Comment=fore:#5c6773 567 | VBS Keyword=bold 568 | VBS String=fore:#5ccfe6 569 | VBS Number=bold; fore:#f28779 570 | ASP VBS Comment=fore:#5c6773 571 | ASP VBS Keyword=bold 572 | ASP VBS String=fore:#5ccfe6 573 | ASP VBS Number=bold; fore:#f28779 574 | [XML Document] 575 | XML Tag=fore:#d4bfff 576 | XML Attribute=fore:#5ccfe6 577 | XML Value=fore:#ffd580 578 | XML String=fore:#bae67e 579 | XML Other Inside Tag=bold; fore:#ffd580 580 | XML Comment=fore:#5c6773 581 | XML Entity=bold 582 | XML Identifier=bold 583 | SGML=fore:#d4bfff; bold 584 | CDATA=fore:#bae67e 585 | [YAML] 586 | Comment=fore:#5c6773 587 | Identifier=fore:#5ccfe6 588 | Keyword=bold 589 | Number=bold; fore:#f28779 590 | Document=bold; fore:#cbccc6; back:#34455a; eolfilled 591 | Error=italic; fore:#f28779 592 | Operator=bold; fore:#ffa759 593 | Text=fore:#d4bfff 594 | Reference=fore:#ffd580 595 | -------------------------------------------------------------------------------- /config/Notepad3/themes/Notepad3_gruvbox Dark Soft.ini: -------------------------------------------------------------------------------- 1 | # At first, setting to font, In Common Base/Base2 and Text 2 | ## Generated by Notepad3. Adjusted color by maboroshin. 3 | # Author (Notepad3): Florian 'Flo' Balmer, Rizonesoft, RaiKoHoff et al. 4 | # License (Notepad3): BSD 3-Clause. 5 | # https://github.com/rizonesoft/Notepad3 6 | # Apply Color theme to above: gruvbox Dark Soft (by Pavel Pertsev a.k.a. morhetz, License:MIT/X11) 7 | # https://github.com/morhetz/gruvbox 8 | # 9 | [Custom Colors] 10 | 01=#32302f; Background 11 | 02=#504945; Current line 12 | 03=#665c54; Selection 13 | 04=#ebdbb2; Fore 14 | 05=#928374; Comment 15 | 06=#F8FD99 16 | 07=#F8FD99 17 | 08=#ebdbb2; #504945 Gray 8 18 | 09=#83a598; Pink/Magenta 5 19 | 10=#fb4934; Red 61 20 | 11=#fe8019; Orange 21 21 | 12=#fabd2f; Yellow 38 22 | 13=#b8bb26; Green 37 23 | 14=#8ec07c; Aqua/Cyan 64 24 | 15=#83a598; Blue 12 25 | 16=#d3869b; Purple/Violet 61 26 | [Styles] 27 | Use2ndDefaultStyle=true 28 | [Common Base] 29 | Default Style=font:Meiryo; size:9; fore:#ebdbb2; back:#32302f 30 | Margins and Line Numbers=font:Arial; size:8; fore:#928374; back:#504945 31 | Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 32 | Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 33 | Indentation Guide (Color)=fore:#928374 34 | Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 35 | Whitespace (Colors, Size 0-12)=fore:#fabd2f 36 | Current Line Background (Color)=back:#504945 37 | Caret (Color, Size 1-3)=size:2; fore:#ebdbb2 38 | Long Line Marker (Colors)=fore:#665c54 39 | Bookmarks and Folding (Colors, Size)=fore:#fe8019; back:#fefefe; alpha:50; case:U 40 | Mark Occurrences (Indicator)=fore:#fb4934; alpha:100; alpha2:100; indic_roundbox 41 | Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 42 | Multi Edit Indicator=fore:#00A5FF; indic_box 43 | Inline-IME Color=fore:#b8bb26 44 | [2nd Common Base] 45 | 2nd Default Style=font:Meiryo; size:9; fore:#ebdbb2; back:#32302f 46 | 2nd Margins and Line Numbers=font:Arial; size:8; fore:#928374; back:#504945 47 | 2nd Matching Braces (Indicator)=back:#0FFF4B; alpha:90; indic_roundbox 48 | 2nd Matching Braces Error (Indicator)=back:#FF1EB0; alpha:90; indic_roundbox 49 | 2nd Indentation Guide (Color)=fore:#928374 50 | 2nd Selected Text (Colors)=back:#F8FD99; eolfilled; alpha:50 51 | 2nd Whitespace (Colors, Size 0-12)=fore:#fabd2f 52 | 2nd Current Line Background (Color)=back:#504945 53 | 2nd Caret (Color, Size 1-3)=size:2; fore:#ebdbb2 54 | 2nd Long Line Marker (Colors)=fore:#665c54 55 | 2nd Extra Line Spacing (Size)=size:2 56 | 2nd Bookmarks and Folding (Colors, Size)=fore:#fe8019; back:#fefefe; alpha:50; case:U 57 | 2nd Mark Occurrences (Indicator)=fore:#fb4934; alpha:100; alpha2:100; indic_roundbox 58 | 2nd Hyperlink Hotspots=italic; fore:#5555FF; indic_roundbox 59 | Multi Edit Indicator=fore:#00A5FF; indic_box 60 | 2nd Inline-IME Color=fore:#b8bb26 61 | [Text Files] 62 | Default=font:Meiryo; size:9 63 | [ANSI Art] 64 | Default=font:Lucida Console 65 | Margins and Line Numbers=font:Arial; size:7 66 | Extra Line Spacing (Size)=size:0 67 | [Apache Config Files] 68 | Comment=fore:#928374 69 | String=fore:#8ec07c 70 | Number=bold; fore:#fb4934 71 | Directive=bold 72 | IP Address=bold; fore:#83a598 73 | [Assembly Script] 74 | Comment=fore:#928374 75 | String=fore:#8ec07c 76 | Number=bold; fore:#fb4934 77 | Operator=bold 78 | CPU Instruction=bold 79 | FPU Instruction=bold 80 | Extended Instruction=bold 81 | Directive=bold; italic 82 | Directive Operand=bold; italic 83 | Register=fore:#fe8019 84 | [AutoHotkey_L Script] 85 | Comment=fore:#928374 86 | String=fore:#8ec07c 87 | Label=bold; fore:#83a598 88 | HotKey=bold; fore:#fe8019 89 | HotString=fore:#fabd2f 90 | KeyHotstringOption=fore:#fabd2f 91 | Hex Number=fore:#fb4934 92 | Number=bold; fore:#fb4934 93 | Variable=bold; fore:#d3869b 94 | Variable Dereferencing=bold; fore:#d3869b 95 | Object=bold 96 | User-Defined Function=bold; italic 97 | Directive=italic 98 | Command=bold 99 | Parameter=fore:#fabd2f 100 | Flow of Control=bold; italic 101 | Function=italic 102 | Key=bold 103 | Escape=bold; fore:#b8bb26 104 | Error=italic; fore:#fb4934 105 | Built-In Variables=bold; fore:#fabd2f 106 | [AutoIt3 Script] 107 | Comment=fore:#928374 108 | Number=bold; fore:#fb4934 109 | Function=bold 110 | User-Defined Function=fore:#fe8019 111 | Keyword=bold; italic 112 | Macro=bold; fore:#83a598 113 | String=fore:#8ec07c 114 | Operator=bold 115 | Variable=italic; fore:#d3869b 116 | Send Key=bold; fore:#b8bb26 117 | Preprocessor=bold 118 | Special=bold 119 | [AviSynth Script] 120 | Comment=fore:#928374 121 | String=fore:#8ec07c 122 | Number=bold; fore:#fb4934 123 | Keyword=bold; italic 124 | Filter=bold 125 | Clip Property=fore:#d3869b 126 | Plugin=bold; fore:#fabd2f 127 | Function=fore:#fabd2f 128 | [Awk Script] 129 | Keyword=bold 130 | Keyword 2nd=bold; fore:#d3869b 131 | Comment=fore:#928374 132 | String=fore:#8ec07c 133 | Number=bold; fore:#fb4934 134 | Operator=bold 135 | [Batch Files] 136 | Comment=fore:#928374 137 | Keyword=bold 138 | Identifier=fore:#83a598 139 | Operator=bold 140 | Command=bold; italic 141 | Label=bold; fore:#83a598 142 | [C# Source Code] 143 | Comment=fore:#928374 144 | Keyword=bold 145 | Identifier=fore:#83a598 146 | String=fore:#8ec07c 147 | Verbatim String=fore:#d3869b 148 | Number=bold; fore:#fb4934 149 | Operator=bold 150 | Preprocessor=bold 151 | Global Class=bold; fore:#fabd2f 152 | [C/C++ Source Code] 153 | Comment=fore:#928374 154 | Keyword=bold; italic 155 | Keyword 2nd=fore:#d3869b; bold; italic 156 | Typedefs/Classes=bold; italic 157 | String=fore:#8ec07c 158 | Number=bold; fore:#fb4934 159 | Operator=bold 160 | Preprocessor=bold 161 | [CIL Assembly] 162 | Keyword=bold; fore:#d3869b 163 | Type Keyword=fore:#83a598 164 | Directive=bold 165 | Instruction= 166 | Comment=fore:#928374 167 | String=fore:#8ec07c 168 | Label=bold; fore:#83a598 169 | Number=bold; fore:#fb4934 170 | Operator= 171 | [Cmake Script] 172 | Comment=fore:#928374 173 | String=fore:#8ec07c 174 | Function=bold 175 | Parameter=bold; fore:#fabd2f 176 | Variable=fore:#d3869b 177 | While Def=bold; italic 178 | For Each Def=bold; italic 179 | If Def=bold; italic 180 | Macro Def=bold; italic 181 | Variable within String=bold; fore:#d3869b 182 | Number=bold; fore:#fb4934 183 | [Coffeescript] 184 | Comment=fore:#928374 185 | String=fore:#8ec07c 186 | Identifier= 187 | Operator=bold; fore:#ebdbb2 188 | Preprocessor=bold 189 | Number=bold; fore:#fb4934 190 | Regex=fore:#d3869b 191 | Global Class=fore:#fabd2f 192 | Word=fore:#8ec07c 193 | Verbatim=fore:#8ec07c 194 | [Configuration Files] 195 | Comment=fore:#928374 196 | Section=bold; fore:#83a598 197 | Assignment=fore:#8ec07c 198 | Default Value=fore:#fabd2f ;bold 199 | [CSS Style Sheets] 200 | Comment=fore:#928374 201 | HTML Tag=bold 202 | Tag-Class=bold; fore:#fabd2f 203 | Tag-ID=bold; fore:#fe8019 204 | Tag-Attribute=fore:#83a598 205 | Pseudo-Class=fore:#d3869b 206 | Pseudo-Element=italic 207 | CSS Property=bold 208 | String=fore:#8ec07c 209 | Value=fore:#83a598 210 | Operator=bold 211 | Important=bold; fore:#8ec07c 212 | Directive=bold; italic 213 | Media=bold; italic; fore:#fe8019 214 | Variable=bold; fore:#fe8019 215 | Unknown Pseudo-Class=fore:#fb4934; italic 216 | Unknown Property=bold; fore:#fb4934; italic 217 | [CSV Prism] 218 | Column 0=bold 219 | Column 1=fore:#fb4934 220 | Column 2=bold; fore:#fe8019 221 | Column 3=fore:#fabd2f 222 | Column 4=fore:#b8bb26 223 | Column 5=fore:#8ec07c 224 | Column 6=fore:#d3869b 225 | Column 7=bold; fore:#83a598 226 | Column 8= 227 | Column 9=italic; fore:#b8bb26 228 | [D Source Code] 229 | Comment=fore:#928374 230 | Comment Doc=fore:#928374 231 | Number=bold; fore:#fb4934 232 | Keyword=bold 233 | Keyword 2nd=bold; fore:#d3869b 234 | Typedef=italic 235 | String=fore:#8ec07c 236 | Operator=bold 237 | [Diff Files] 238 | Comment=fore:#928374 239 | Command=bold; fore:#fabd2f 240 | Source and Destination=fore:#BFBFBF; back:#2A2A2A 241 | Position Setting=fore:#BFBFBF; back:#002B55 242 | Line Addition=fore:#BFBFBF; back:#002B0C; eolfilled 243 | Line Removal=fore:#BFBFBF; back:#2B0000; eolfilled 244 | Line Change=fore:#BFBFBF; back:#2B2B00; eolfilled 245 | [Go Source Code] 246 | Comment=fore:#928374 247 | Number=bold; fore:#fb4934 248 | Keyword=bold 249 | Keyword 2nd=bold; fore:#d3869b 250 | Typedef=bold; italic 251 | String=fore:#8ec07c 252 | Operator=bold 253 | [Inno Setup Script] 254 | Comment=fore:#928374 255 | Keyword=bold 256 | Parameter=bold; fore:#fabd2f 257 | Section=bold; fore:#ebdbb2 258 | Preprocessor=bold; fore:#83a598 259 | Inline Expansion=bold; fore:#d3869b 260 | Pascal Comment=fore:#928374 261 | Pascal Keyword=bold; italic 262 | String=fore:#8ec07c 263 | [Java Source Code] 264 | Comment=fore:#928374 265 | Keyword=fore:#d3869b; bold; italic 266 | String=fore:#8ec07c 267 | Regex=fore:#d3869b 268 | Number=bold; fore:#fb4934 269 | Operator=bold 270 | [JavaScript] 271 | Comment=fore:#928374 272 | Keyword=fore:#d3869b; bold 273 | String=fore:#8ec07c 274 | Regex=fore:#b8bb26 275 | Number=bold; fore:#fb4934 276 | Operator=bold 277 | [JSON] 278 | String=fore:#89B8C2 279 | Number=bold; fore:#E27878 280 | LD Keyword=fore:#fe8019 281 | Operator= 282 | Property Name=fore:#b8bb26 283 | Regex=fore:#b8bb26 284 | ESC Sequence=fore:#A093C7 285 | Parsing Error=fore:#E27878 286 | [LaTeX Files] 287 | Command=bold 288 | Comment=fore:#928374 289 | Math=bold; fore:#b8bb26 290 | Special Char=fore:#8ec07c 291 | Tag=bold; fore:#d3869b 292 | Verbatim Segment=bold; italic; bold; fore:#ebdbb2; back:#665c54 293 | [Lua Script] 294 | Comment=fore:#928374 295 | Number=bold; fore:#fb4934 296 | Keyword=bold 297 | Basic Functions=bold 298 | String, Table & Math Functions=bold; fore:#b8bb26 299 | Input, Output & System Facilities=bold; fore:#d3869b 300 | String=fore:#8ec07c 301 | Literal String=fore:#8ec07c 302 | Operator=bold 303 | Label=bold; fore:#83a598 304 | [Makefiles] 305 | Comment=fore:#928374 306 | Identifier=fore:#fabd2f 307 | Target=bold 308 | Preprocessor=bold; fore:#d3869b 309 | [Markdown] 310 | Strong=bold; fore:#fabd2f 311 | Emphasis=italic; fore:#fabd2f 312 | Header 1=bold; fore:#fb4934 313 | Header 2=bold; fore:#fb4934 314 | Header 3=bold; fore:#fb4934 315 | Header 4=bold; fore:#fb4934 316 | Header 5=bold; fore:#fb4934 317 | Header 6=bold; fore:#fb4934 318 | Unordered List=bold; fore:#8ec07c 319 | Ordered List=bold; fore:#8ec07c 320 | Pre Char=fore:#fe8019; back:#3d425b 321 | Block Quote=fore:#fe8019 322 | Strikeout=fore:#d3869b; italic 323 | Horizontal Rule=size:+2; bold 324 | Link=fore:#8ec07c 325 | Code=fore:#fabd2f 326 | [MATLAB] 327 | Comment=fore:#928374 328 | Number=bold; fore:#fb4934 329 | Keyword=fore:#d3869b; bold 330 | String=fore:#8ec07c 331 | Operator=bold 332 | [Nim Source Code] 333 | Comment=fore:#928374 334 | Keyword=fore:#d3869b; bold 335 | String Double Quoted=fore:#8ec07c 336 | String Single Quoted=fore:#b8bb26 337 | String Triple Double Quotes=italic; fore:#8ec07c 338 | String Triple Single Quotes=italic; fore:#b8bb26 339 | Number=bold; fore:#fb4934 340 | Operator=bold 341 | Function name=fore:#fabd2f 342 | [NSIS Script] 343 | Comment=fore:#928374 344 | String=fore:#8ec07c 345 | Function=fore:#d3869b; bold 346 | Variable=italic; fore:#fabd2f 347 | Variable within String=bold; italic; fore:#fabd2f 348 | Number=bold; fore:#fb4934 349 | Constant=fore:#b8bb26 350 | Section=bold; fore:#fe8019 351 | Sub Sectionbold; fore:#ebdbb2 352 | Section Group=bold; fore:#b8bb26 353 | Function Definition=bold; italic 354 | PageEx=bold; italic 355 | If Definition=bold; italic 356 | Macro Definition=bold; italic 357 | [Pascal Source Code] 358 | Comment=fore:#928374 359 | Keyword=fore:#d3869b; bold 360 | String=fore:#8ec07c 361 | Number=bold; fore:#fb4934 362 | Inline Asm=fore:#fe8019 363 | Preprocessor=bold; fore:#fabd2f 364 | [Perl Script] 365 | Comment=fore:#928374 366 | Keyword=bold 367 | String Double Quoted=fore:#8ec07c 368 | String Single Quoted=fore:#b8bb26 369 | Number=bold; fore:#fb4934 370 | Scalar $var=italic; fore:#fe8019 371 | Array @var=italic; fore:#fabd2f 372 | Hash %var=italic; fore:#b8bb26 373 | Symbol Table *var=fore:#83a598 374 | Regex /re/ or m{re}=fore:#d3869b 375 | Substitution s/re/ore/=fore:#d3869b; back:#504945 376 | Back Ticks=fore:#fabd2f 377 | Here-Doc (Delimiter)=bold; back:#504945 378 | Here-Doc (Single Quoted, q)=italic; fore:#b8bb26; back:#504945 379 | Here-Doc (Double Quoted, qq)=italic; fore:#8ec07c; back:#504945 380 | Here-Doc (Back Ticks, qx)=italic; bold; fore:#fabd2f; back:#504945 381 | Single Quoted String (Generic, q)=fore:#b8bb26 382 | Double Quoted String (qq)=fore:#8ec07c 383 | Back Ticks (qx)=fore:#fabd2f 384 | Regex (qr)=fore:#d3869b 385 | Array (qw)=fore:#fe8019 386 | Prototype=bold; fore:#d3869b 387 | Format Identifier=bold; fore:#8ec07c 388 | Format Body=fore:#0093EA; back:#2A2A2A 389 | POD (Common)=fore:#BFBFBF; back:#002B0C; eolfilled 390 | POD (Verbatim)=fore:#BFBFBF; back:#2B2B00; eolfilled 391 | Data Section=fore:#BFBFBF; back:#2A2A2A 392 | Parsing Error=bold; italic; fore:#fb4934 393 | [PowerShell Script] 394 | Comment=fore:#928374 395 | Keyword=fore:#d3869b; bold; italic 396 | String=fore:#8ec07c 397 | Number=bold; fore:#fb4934 398 | Variable=italic; fore:#fabd2f 399 | Cmdlet=fore:#83a598; bold 400 | Alias=bold; fore:#b8bb26 401 | [Python Script] 402 | Comment=fore:#928374 403 | Keyword=fore:#d3869b; bold 404 | String Double Quoted=fore:#8ec07c 405 | String Single Quoted=fore:#b8bb26 406 | String Triple Double Quotes=italic; fore:#8ec07c 407 | String Triple Single Quotes=italic; fore:#b8bb26 408 | Number=bold; fore:#fb4934 409 | Operator=bold 410 | Function Name=italic 411 | Class Name=fore:#fabd2f 412 | [Registry Files] 413 | Comment=fore:#928374 414 | Value Name= 415 | String=fore:#8ec07c 416 | Value Type=bold 417 | Hex=bold; fore:#fb4934 418 | Added Key=bold; fore:#fe8019; 419 | Deleted Key=fore:#fabd2f 420 | GUID in Key Path=bold; fore:#d3869b 421 | Parameter=fore:#b8bb26 422 | Escaped=bold; fore:#b8bb26 423 | [Resource Script] 424 | Comment=fore:#928374 425 | Keyword=bold 426 | String=fore:#8ec07c 427 | Number=bold; fore:#fb4934 428 | Operator=bold 429 | Preprocessor=fore:#d3869b 430 | [R-S-SPlus Statistics Code] 431 | Comment=fore:#928374 432 | Keyword=fore:#b8bb26; bold; italic 433 | Base Package Functions=bold; fore:#83a598 434 | Other Package Functions=bold; fore:#fabd2f 435 | Number=bold; fore:#fb4934 436 | String=fore:#8ec07c 437 | Operator=bold 438 | Infix=fore:#d3869b 439 | Infix EOL=fore:#d3869b; back:#665c54; eolfilled 440 | [Ruby Script] 441 | Comment=fore:#928374 442 | Keyword=fore:#d3869b; bold 443 | Number=bold; fore:#fb4934 444 | Operator=bold 445 | String=fore:#8ec07c; bold 446 | Class Name=italic 447 | Function Name=fore:#d3869b 448 | Regex=fore:#b8bb26 449 | Symbol=bold; fore:#fe8019 450 | Module Name=bold; fore:#83a598 451 | Instance Var=bold; fore:#b8bb26 452 | Class Var=bold; fore:#fabd2f 453 | Data Section=bold; fore:#ebdbb2; back:#665c54; eolfilled 454 | [Rust Source Code] 455 | Keyword=fore:#d3869b; bold 456 | Build-In Type=bold; fore:#8ec07c 457 | Other Keyword=bold; italic 458 | Number=bold; fore:#fb4934 459 | String=fore:#8ec07c 460 | Operator=bold 461 | Macro Definition=fore:#b8bb26 462 | Rust Lifetime=fore:#fe8019 463 | Byte String=fore:#d3869b 464 | Parsing Error=italic; fore:#fb4934 465 | [Shell Script] 466 | Error=italic; fore:#fb4934 467 | Comment=fore:#928374 468 | Number=bold; fore:#fb4934 469 | Keyword=fore:#d3869b; bold 470 | String Double Quoted=fore:#8ec07c 471 | String Single Quoted=fore:#b8bb26 472 | Scalar=fore:#83a598 473 | Parameter Expansion=fore:#d3869b 474 | Back Ticks=fore:#fabd2f 475 | Here-Doc (Delimiter)=bold; fore:#fe8019 476 | Here-Doc (Single Quoted, q)=bold; fore:#ebdbb2; back:#665c54; eolfilled 477 | Operator=bold 478 | [SQL Query] 479 | Comment=fore:#928374 480 | Keyword=bold 481 | Value Type=bold; fore:#fabd2f 482 | String=fore:#8ec07c 483 | Identifier=fore:#d3869b 484 | Quoted Identifier=bold; fore:#d3869b 485 | Number=bold; fore:#fb4934 486 | Operator=bold 487 | [Tcl Script] 488 | Comment=fore:#928374 489 | Keyword=fore:#d3869b; bold 490 | Number=bold; fore:#fb4934 491 | String=fore:#8ec07c 492 | Operator=bold 493 | Identifier= 494 | Modifier=italic; fore:#b8bb26 495 | Substitution=bold; fore:#ebdbb2 496 | [TOML Config] 497 | Keyword=bold; fore:#d3869b 498 | Comment=fore:#928374 499 | Section=bold; fore:#83a598 500 | Key= 501 | Assignment=bold 502 | Value=fore:#8ec07c 503 | Number=bold; fore:#fb4934 504 | Date-Time=fore:#b8bb26 505 | String=fore:#8ec07c 506 | Parsing Error=italic; fore:#fb4934; 507 | [VBScript] 508 | Comment=fore:#928374 509 | Keyword=bold; fore:#d3869b 510 | String=fore:#8ec07c 511 | Number=bold; fore:#fb4934 512 | Operator=bold 513 | [VHDL] 514 | Comment=fore:#928374 515 | Number=bold; fore:#fb4934 516 | String=fore:#b8bb26 517 | Operator= 518 | Keyword=bold; fore:#d3869b 519 | Standard Operator=bold; fore:#fe8019 520 | Attribute=fore:#fabd2f 521 | Standard Function=bold; fore:#b8bb26 522 | Standard Package=bold; fore:#83a598 523 | Standard Type=bold; fore:#83a598 524 | [Visual Basic] 525 | Comment=fore:#928374 526 | Keyword=bold; fore:#d3869b 527 | String=fore:#8ec07c 528 | Number=bold; fore:#fb4934 529 | Operator= 530 | Preprocessor=bold; fore:#fabd2f 531 | [Web Source Code] 532 | HTML Tag=bold; fore:#d3869b 533 | HTML Unknown Tag=fore:#fb4934 534 | HTML Attribute=fore:#8ec07c 535 | HTML Unknown Attribute=fore:#fb4934 536 | HTML Value=fore:#fabd2f 537 | HTML String=fore:#b8bb26 538 | HTML Comment=fore:#928374 539 | HTML Entity=fore:#fabd2f 540 | HTML Other Inside Tag=fore:#fabd2f 541 | XML Identifier=bold 542 | SGML=fore:#d3869b; bold 543 | ASP Start Tag=bold; italic; fore:#83a598 544 | PHP Start Tag=bold; italic; fore:#83a598 545 | PHP Comment=fore:#928374 546 | PHP Keyword=bold; fore:#d3869b 547 | PHP String=fore:#8ec07c 548 | PHP Simple String=fore:#b8bb26 549 | PHP Number=bold; fore:#fb4934 550 | PHP Operator=bold 551 | PHP Variable=italic; fore:#fabd2f 552 | PHP String Variable=bold; italic; fore:#fe8019 553 | PHP Complex Variable=italic; fore:#83a598 554 | JS Comment=fore:#928374 555 | JS Keyword=bold 556 | JS String=fore:#8ec07c 557 | JS Regex=fore:#fabd2f 558 | JS Number=bold; fore:#fb4934 559 | JS Symbols=bold 560 | ASP JS Comment=fore:#928374 561 | ASP JS Keyword=bold 562 | ASP JS String=fore:#8ec07c 563 | ASP JS Regex=fore:#fabd2f 564 | ASP JS Number=bold; fore:#fb4934 565 | ASP JS Symbols=bold 566 | VBS Comment=fore:#928374 567 | VBS Keyword=bold 568 | VBS String=fore:#8ec07c 569 | VBS Number=bold; fore:#fb4934 570 | ASP VBS Comment=fore:#928374 571 | ASP VBS Keyword=bold 572 | ASP VBS String=fore:#8ec07c 573 | ASP VBS Number=bold; fore:#fb4934 574 | [XML Document] 575 | XML Tag=fore:#d3869b 576 | XML Attribute=fore:#8ec07c 577 | XML Value=fore:#fabd2f 578 | XML String=fore:#b8bb26 579 | XML Other Inside Tag=bold; fore:#fabd2f 580 | XML Comment=fore:#928374 581 | XML Entity=bold 582 | XML Identifier=bold 583 | SGML=fore:#d3869b; bold 584 | CDATA=fore:#b8bb26 585 | [YAML] 586 | Comment=fore:#928374 587 | Identifier=fore:#8ec07c 588 | Keyword=bold 589 | Number=bold; fore:#fb4934 590 | Document=bold; fore:#ebdbb2; back:#665c54; eolfilled 591 | Error=italic; fore:#fb4934 592 | Operator=bold; fore:#fe8019 593 | Text=fore:#d3869b 594 | Reference=fore:#fabd2f 595 | -------------------------------------------------------------------------------- /config/Notepad3/themes/README.md: -------------------------------------------------------------------------------- 1 | # [`Notepad3`](https://github.com/rizonesoft/Notepad3) 的主题配色配置文件 2 | 3 | 文件来自 [`maboroshin/Notepad3ColorTheme`](https://github.com/maboroshin/Notepad3ColorTheme)。 4 | -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- 1 | # 个人配置说明 2 | 3 | 所有提供个人配置的说明 4 | 5 | ## Notepad3 6 | 7 | 1. [`theme/`](https://github.com/yi-Xu-0100/Application-Lists/tree/main/config/Notepad3) 内容是 [`Notepad3`](https://github.com/rizonesoft/Notepad3) 的主题配色配置文件,来自[`maboroshin/Notepad3ColorTheme`](https://github.com/maboroshin/Notepad3ColorTheme)。 8 | 2. [`register-right-click-menu.reg`](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/Notepad3/register-right-click-menu.reg) 是 `Windows` 的注册表文件,用于给 `Notepad3` 注册单文件右键打开选项。**要求 `Notepad3` 的安装位置在 `D:\\Applications\\Notepad3\\Notepad3.exe`,可编辑该文件以适配。** 9 | 10 | ## SumatraPDF.txt 11 | 12 | SumatraPDF 的配置文件。 13 | 14 | ## pakku.json 15 | 16 | [pakku](https://s.xmcp.ml/pakkujs/) 的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/pakku.json)。 17 | 18 | ## tampermonkey.zip 19 | 20 | [tampermonkey](https://www.tampermonkey.net/?ext=dhdg&browser=chrome) 的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/tampermonkey.zip)。 21 | 22 | ## stylus.json 23 | 24 | [stylus](https://add0n.com/stylus.html) 的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/stylus.json)。 25 | 26 | ## snipaste.ini 27 | 28 | [snipaste](https://zh.snipaste.com/) 的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/snipaste.ini)。 29 | 30 | ## TrafficMonitor 31 | 32 | [`TrafficMonitor`](https://github.com/zhongyang219/TrafficMonitor) 的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/tree/main/config/TrafficMonitor)。 33 | 34 | ## v2rayN.txt 35 | 36 | v2rayN 中设置的个人自定义 pac 配置。 37 | 38 | ## ClashForWindows 39 | 40 | ### cfw-settings.yaml 41 | 42 | [`clash_for_windows_pkg`](https://github.com/Fndroid/clash_for_windows_pkg) 的界面配置 - [`cfw-settings.yaml`](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/ClashForWindows/cfw-settings.yaml)。 43 | 44 | **请注意以下几点,没有提到可提 [`issue`](https://github.com/yi-Xu-0100/Application-Lists/issues)。** 45 | 46 | 1. 文件中的 `profilePath` 为无法使用的路径,使用配置后,需要在软件中选择自己的配置文件并重启软件! 47 | 2. `parsers` 默认启用,脚本均来自 [`yi-Xu-0100/cfw-script`](https://github.com/yi-Xu-0100/cfw-scripts),请自行适配! 48 | 3. `childProcess` 默认启动 [`subconverter`](https://github.com/tindy2013/subconverter),请自行适配! 49 | 50 | ### mixin.yaml 51 | 52 | [`mixin`](https://docs.cfw.lbyczf.com/contents/mixin.html) 配置片段的[示例](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/ClashForWindows/mixin.yaml)。 53 | 54 | ### parser.yaml 55 | 56 | [`parser`](https://docs.cfw.lbyczf.com/contents/parser.html) 配置片段的[示例](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/ClashForWindows/parser.yaml)。 57 | 58 | ## neatdownloadmanager.json 59 | 60 | neatdownloadmanager 的 menifest.json 文件,用于不在哔哩哔哩网站上显示下载图标。 61 | 62 | ## memreduct.ini 63 | 64 | memreduct 的 个人配置文件。 65 | 66 | ## cmd_init.bat 67 | 68 | cmd 启动加载的个人配置文件。 69 | 70 | ## Microsoft.PowerShell_profile.ps1 71 | 72 | [PowerShell](https://docs.microsoft.com/en-us/powershell/) 启动加载的个人配置文件。 73 | 74 | 1. 安装 `posh-git`。 75 | 76 | ```powershell 77 | Install-Module posh-git -Scope CurrentUser 78 | ``` 79 | 80 | 2. 使用 `$profile` 获得初始化脚本位置。 81 | 3. 将 [Microsoft.PowerShell_profile.ps1](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/Microsoft.PowerShell_profile.ps1) 的内容加入初始化脚本中。 82 | 83 | ## TranslucentTB.cfg 84 | 85 | [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB) 的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/translucenttb.cfg)。 86 | 87 | ## office 88 | 89 | `office 365` 组件并不需要全部使用,可以通过下面完成自选部分组件的安装。 90 | 91 | 1. 获取 `Microsoft Store URL`。访问 ,使用 `word` 的购买链接查询。( `word` 购买链接:) 92 | 93 | 2. **首先安装 `Microsoft.Office.Desktop_16051.14026.20246.0_neutral_~_8wekyb3d8bbwe.appxbundle`!(此处的版本号后缀可能有区别,个人取最大值,后缀为 `appxbundle` 即可)** 94 | 95 | 3. 安装完 `Microsoft.Office.Desktop` 之后,再挑选需要的组件(后缀为 `appxbundle` 即可)下载安装。 96 | 97 | 4. 基本安装流程就是一个标准的 `UWP` 应用。 98 | 99 | 5. 最后安装完登陆微软账户,激活完事~ 100 | 101 | ## saladict.json 102 | 103 | [沙拉查词](https://saladict.crimx.com/)的[配置文件](https://github.com/yi-Xu-0100/Application-Lists/blob/main/config/saladict.json)。 104 | -------------------------------------------------------------------------------- /config/SumatraPDF.txt: -------------------------------------------------------------------------------- 1 | # For documentation, see http://www.sumatrapdfreader.org/settings3.2.html 2 | 3 | MainWindowBackground = #80fff200 4 | EscToExit = false 5 | ReuseInstance = false 6 | UseSysColors = false 7 | RestoreSession = true 8 | 9 | FixedPageUI [ 10 | TextColor = #000000 11 | BackgroundColor = #ffffff 12 | SelectionColor = #f5fc0c 13 | WindowMargin = 2 4 2 4 14 | PageSpacing = 4 4 15 | ] 16 | EbookUI [ 17 | FontName = Georgia 18 | FontSize = 12.5 19 | TextColor = #5f4b32 20 | BackgroundColor = #fbf0d9 21 | UseFixedPageUI = false 22 | ] 23 | ComicBookUI [ 24 | WindowMargin = 0 0 0 0 25 | PageSpacing = 4 4 26 | CbxMangaMode = false 27 | ] 28 | ChmUI [ 29 | UseFixedPageUI = false 30 | ] 31 | ExternalViewers [ 32 | ] 33 | ShowMenubar = true 34 | ReloadModifiedDocuments = true 35 | FullPathInTitle = false 36 | ZoomLevels = 8.33 12.5 18 25 33.33 50 66.67 75 100 125 150 200 300 400 600 800 1000 1200 1600 2000 2400 3200 4800 6400 37 | ZoomIncrement = 0 38 | 39 | PrinterDefaults [ 40 | PrintScale = shrink 41 | ] 42 | ForwardSearch [ 43 | HighlightOffset = 0 44 | HighlightWidth = 15 45 | HighlightColor = #6581ff 46 | HighlightPermanent = false 47 | ] 48 | CustomScreenDPI = 0 49 | 50 | RememberStatePerDocument = true 51 | UiLanguage = cn 52 | ShowToolbar = true 53 | ShowFavorites = false 54 | AssociateSilently = false 55 | CheckForUpdates = true 56 | RememberOpenedFiles = false 57 | EnableTeXEnhancements = false 58 | DefaultDisplayMode = automatic 59 | DefaultZoom = fit page 60 | WindowState = 2 61 | WindowPos = 3153 188 960 703 62 | ShowToc = true 63 | SidebarDx = 358 64 | TocDy = 0 65 | ShowStartPage = true 66 | UseTabs = true 67 | 68 | FileStates [ 69 | ] 70 | SessionData [ 71 | ] 72 | TimeOfLastUpdateCheck = 30824074 949990869 73 | OpenCountWeek = 496 74 | 75 | # Settings after this line have not been recognized by the current version 76 | -------------------------------------------------------------------------------- /config/TrafficMonitor/config-common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/TrafficMonitor/config-common.png -------------------------------------------------------------------------------- /config/TrafficMonitor/config-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/TrafficMonitor/config-main.png -------------------------------------------------------------------------------- /config/TrafficMonitor/config-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/TrafficMonitor/config-task.png -------------------------------------------------------------------------------- /config/TrafficMonitor/config.ini: -------------------------------------------------------------------------------- 1 | [general] 2 | check_update_when_start = true 3 | allow_skin_cover_font = true 4 | allow_skin_cover_text = true 5 | language = 0 6 | show_all_interface = false 7 | get_cpu_usage_by_cpu_times = true 8 | monitor_time_span = 1000 9 | [config] 10 | transparency = 100 11 | always_on_top = false 12 | lock_window_pos = false 13 | show_notify_icon = false 14 | show_cpu_memory = true 15 | mouse_penetrate = false 16 | show_task_bar_wnd = true 17 | position_x = 807 18 | position_y = 648 19 | text_color = 16777215,0,0,0, 20 | specify_each_item_color = false 21 | hide_main_window = 1 22 | skin_selected = \皮肤11 23 | notify_icon_selected = 0 24 | font_name = Segoe UI Semibold 25 | font_size = 10 26 | font_style = 0 27 | swap_up_down = false 28 | hide_main_wnd_when_fullscreen = true 29 | up_string = "上传: " 30 | down_string = "下载: " 31 | cpu_string = "CPU: " 32 | memory_string = "内存: " 33 | speed_short_mode = false 34 | separate_value_unit_with_space = true 35 | unit_byte = true 36 | speed_unit = 0 37 | hide_unit = false 38 | hide_percent = false 39 | double_click_action = 0 40 | alow_out_of_border = 0 41 | show_tool_tip = true 42 | double_click_exe = C:\WINDOWS\system32\Taskmgr.exe 43 | notify_icon_auto_adapt = true 44 | [connection] 45 | auto_select = true 46 | select_all = false 47 | connection_name = Realtek PCIe GbE Family Controller 48 | [notify_tip] 49 | traffic_tip_enable = false 50 | traffic_tip_value = 200 51 | traffic_tip_unit = 0 52 | memory_usage_tip_enable = false 53 | memory_tip_value = 80 54 | [task_bar] 55 | task_bar_back_color = 0 56 | task_bar_text_color = 16777215,16777215,16777215,16777215,16777215,16777215,16777215,16777215, 57 | specify_each_item_color = false 58 | task_bar_show_cpu_memory = true 59 | font_name = 微软雅黑 60 | font_size = 9 61 | font_style = 0 62 | task_bar_swap_up_down = false 63 | up_string = "↑: " 64 | down_string = "↓: " 65 | cpu_string = "CPU: " 66 | memory_string = "内存: " 67 | task_bar_wnd_on_left = false 68 | task_bar_speed_short_mode = false 69 | unit_byte = true 70 | task_bar_speed_unit = 0 71 | task_bar_hide_unit = false 72 | task_bar_hide_percent = false 73 | value_right_align = false 74 | horizontal_arrange = false 75 | separate_value_unit_with_space = true 76 | digits_number = 3 77 | double_click_action = 0 78 | transparent_color = 0 79 | status_bar_color = 5921370 80 | show_status_bar = true 81 | show_tool_tip = true 82 | double_click_exe = C:\WINDOWS\system32\Taskmgr.exe 83 | tbar_display_item = 15 84 | cm_graph_type = false 85 | auto_adapt_light_theme = true 86 | dark_default_style = 0 87 | light_default_style = 0 88 | auto_set_background_color = true 89 | [connection_details] 90 | show_internet_ip = false 91 | [histroy_traffic] 92 | use_log_scale = true 93 | sunday_first = true 94 | view_type = 0 95 | width = -1 96 | height = -1 97 | [other] 98 | no_multistart_warning = false 99 | exit_when_start_by_restart_manager = true 100 | notify_interval = 60 101 | taksbar_transparent_color_enable = true 102 | debug_log = false 103 | last_light_mode = false 104 | show_mouse_panetrate_tip = true 105 | [app] 106 | version = 1.79.1 107 | [taskbar_default_style] 108 | default1_text_color = 16777215,16777215,16777215,16777215,16777215,16777215,16777215,16777215, 109 | default1_back_color = 0 110 | default1_transparent_color = 0 111 | default1_status_bar_color = 5921370 112 | default1_specify_each_item_color = false 113 | default2_text_color = 16777215,16777215,16777215,16777215,16777215,16777215,16777215,16777215, 114 | default2_back_color = 0 115 | default2_transparent_color = 0 116 | default2_status_bar_color = 5921370 117 | default2_specify_each_item_color = false 118 | default3_text_color = 16777215,16777215,16777215,16777215,16777215,16777215,16777215,16777215, 119 | default3_back_color = 0 120 | default3_transparent_color = 0 121 | default3_status_bar_color = 5921370 122 | default3_specify_each_item_color = false 123 | [window_size] 124 | OptionsDlg_width = -1 125 | OptionsDlg_height = -1 126 | -------------------------------------------------------------------------------- /config/TrafficMonitor/global_cfg.ini: -------------------------------------------------------------------------------- 1 | [config] 2 | portable_mode = true 3 | -------------------------------------------------------------------------------- /config/TrafficMonitor/skin/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/TrafficMonitor/skin/background.bmp -------------------------------------------------------------------------------- /config/TrafficMonitor/skin/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/TrafficMonitor/skin/background_l.bmp -------------------------------------------------------------------------------- /config/TrafficMonitor/skin/skin.ini: -------------------------------------------------------------------------------- 1 | [skin] 2 | text_color=16777215,0,0,0, 3 | specify_each_item_color=0 4 | skin_author="zy" 5 | font_name="Segoe UI Semibold" 6 | font_size=10 7 | font_style=0 8 | [layout] 9 | text_height=20 10 | no_text=1 11 | preview_width=171 12 | preview_height=108 13 | width_l=174 14 | height_l=41 15 | up_x_l=16 16 | up_y_l=1 17 | up_width_l=69 18 | up_align_l=1 19 | down_x_l=16 20 | down_y_l=20 21 | down_width_l=69 22 | down_align_l=1 23 | cpu_x_l=90 24 | cpu_y_l=20 25 | cpu_width_l=42 26 | cpu_align_l=2 27 | memory_x_l=132 28 | memory_y_l=20 29 | memory_width_l=42 30 | memory_align_l=2 31 | show_up_l=1 32 | show_down_l=1 33 | show_cpu_l=1 34 | show_memory_l=1 35 | preview_x_l=0 36 | preview_y_l=55 37 | width_s=90 38 | height_s=41 39 | up_x_s=16 40 | up_y_s=1 41 | up_width_s=69 42 | up_align_s=1 43 | down_x_s=16 44 | down_y_s=20 45 | down_width_s=69 46 | down_align_s=1 47 | cpu_x_s=0 48 | cpu_y_s=0 49 | cpu_width_s=0 50 | cpu_align_s=0 51 | memory_x_s=0 52 | memory_y_s=0 53 | memory_width_s=0 54 | memory_align_s=0 55 | show_up_s=1 56 | show_down_s=1 57 | show_cpu_s=0 58 | show_memory_s=0 59 | preview_x_s=0 60 | preview_y_s=0 61 | -------------------------------------------------------------------------------- /config/cmd_init.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | set http_proxy=socks5://127.0.0.1:7890 3 | set https_proxy=socks5://127.0.0.1:7890 4 | echo Personal profile: %~f0 5 | echo Complate personal profile init! 6 | -------------------------------------------------------------------------------- /config/memreduct.ini: -------------------------------------------------------------------------------- 1 | [memreduct] 2 | CheckUpdatesLast=1607674361 3 | SettingsLastPage=105 4 | AutoreductEnable=true 5 | AutoreductIntervalEnable=true 6 | HotkeyCleanEnable=false 7 | AutorunIsEnabled=true 8 | ReductMask2=39 9 | StatisticLastReduct=1608194122 10 | AutoreductIntervalValue=5 11 | AutoreductValue=45 12 | TrayUseTransparency=false 13 | TrayShowBorder=true 14 | TrayRoundCorners=true 15 | TrayChangeBg=true 16 | TrayUseAntialiasing=true 17 | IsStartMinimized=true 18 | BalloonCleanResults=false 19 | TrayLevelWarning=65 20 | TrayLevelDanger=85 21 | TrayFont=Microsoft YaHei UI;8;400 22 | -------------------------------------------------------------------------------- /config/neatdownloadmanager.json: -------------------------------------------------------------------------------- 1 | { 2 | "update_url": "https://clients2.google.com/service/update2/crx", 3 | "background": { 4 | "persistent": true, 5 | "scripts": ["bg.js"] 6 | }, 7 | "content_scripts": [ 8 | { 9 | "all_frames": true, 10 | "js": ["ct.js"], 11 | "matches": ["http://*/*", "https://*/*", "ftp://*/*", "file:///*"], 12 | "exclude_globs": ["*bilibili*"], 13 | "run_at": "document_start" 14 | } 15 | ], 16 | "browser_action": { 17 | "default_icon": { 18 | "16": "img/icon16.png" 19 | } 20 | }, 21 | "description": "Sends Download Links to Neat Download Manager", 22 | "icons": { 23 | "128": "img/icon128.png", 24 | "16": "img/icon16.png", 25 | "48": "img/icon48.png" 26 | }, 27 | "homepage_url": "https://www.neatdownloadmanager.com/", 28 | "manifest_version": 2, 29 | "offline_enabled": false, 30 | "name": "NeatDownloadManager Extension", 31 | "web_accessible_resources": ["img/icon16.png", "img/icon16_2x.png", "img/close16.png", "img/close16_2x.png"], 32 | "permissions": [ 33 | "\u003Call_urls>", 34 | "cookies", 35 | "contextMenus", 36 | "webRequest", 37 | "webRequestBlocking", 38 | "webNavigation", 39 | "nativeMessaging" 40 | ], 41 | "author": "J.Motallebi", 42 | "version": "1.4.0" 43 | } 44 | -------------------------------------------------------------------------------- /config/pakku.json: -------------------------------------------------------------------------------- 1 | { 2 | "MARK_THRESHOLD": "1", 3 | "DANMU_MARK": "prefix", 4 | "TAOLUS": "", 5 | "FOOLBAR": "off", 6 | "BLACKLIST": "[]", 7 | "_LAST_UPDATE_TIME": "1591537462798", 8 | "FLASH_NOTIF": "on", 9 | "_ADVANCED_USER": "on", 10 | "SHRINK": "off", 11 | "TRIM_SPACE": "on", 12 | "MAX_DIST": "5", 13 | "TRIM_ENDING": "on", 14 | "AUTO_DANMU_LIST": "off", 15 | "MAX_COSINE": "60", 16 | "REMOVE_SEEK": "off", 17 | "POPUP_BADGE": "percent", 18 | "WHITELIST": "[]", 19 | "FLUCTLIGHT": "off", 20 | "FORCELIST": "[[\"^23{2,}$\",\"233...\"],[\"^6{3,}$\",\"666...\"],[\"^[fF]+$\",\"FFF...\"],[\"^[hH]+$\",\"hhh...\"],[\"^[yYoO0][yYoO0\\\\s~]+$\",\"yoo...\"]]", 21 | "CLOUD_SYNC": "on", 22 | "PROC_TYPE7": "on", 23 | "THRESHOLD": "20", 24 | "TRIM_WIDTH": "on", 25 | "PROC_POOL1": "off", 26 | "CROSS_MODE": "on", 27 | "HIDE_THRESHOLD": "0", 28 | "BREAK_UPDATE": "off", 29 | "DANMU_SUBSCRIPT": "on", 30 | "PROC_TYPE4": "on", 31 | "TRIM_PINYIN": "on", 32 | "ENLARGE": "on", 33 | "AUTO_DISABLE_DANMU": "off", 34 | "MODE_ELEVATION": "on", 35 | "TOOLTIP": "on", 36 | "REPRESENTATIVE_PERCENT": "0", 37 | "SCROLL_THRESHOLD": "1200" 38 | } 39 | -------------------------------------------------------------------------------- /config/snipaste.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | first_run=false 3 | startup_fix=2 4 | read_tips=32 5 | 6 | [Interface] 7 | tray_color=@Variant(\0\0\0\x43\x1\0\0\xff\xff\xff\xff\xff\xff\0\0) 8 | 9 | [Misc] 10 | preload_dlls_last_interval=30 11 | -------------------------------------------------------------------------------- /config/tampermonkey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/config/tampermonkey.zip -------------------------------------------------------------------------------- /config/translucenttb.cfg: -------------------------------------------------------------------------------- 1 | accent=clear ; accent values are: clear (default), fluent (only on build 17063 and up), opaque, normal, or blur. 2 | color=000000 ; A color in hexadecimal notation. 3 | opacity=0 ; A value in the range 0 to 255. 4 | 5 | ; Dynamic Modes 6 | ; they all have their own accent, color and opacity configs. 7 | 8 | ; Dynamic Windows. State to use when a window is maximised. 9 | dynamic-ws=enable 10 | dynamic-ws-accent=blur 11 | dynamic-ws-color=000000 ; A color in hexadecimal notation. 12 | dynamic-ws-opacity=170 ; A value in the range 0 to 255. 13 | dynamic-ws-regular-on-peek=enable ; when using aero peek, behave as if no window was maximised. 14 | 15 | ; Dynamic Start. State to use when the start menu is opened. 16 | dynamic-start=enable 17 | dynamic-start-accent=normal 18 | dynamic-start-color=000000 ; A color in hexadecimal notation. 19 | dynamic-start-opacity=0 ; A value in the range 0 to 255. 20 | 21 | ; Dynamic Cortana. State to use when Cortana or the search menu is opened. 22 | dynamic-cortana=enable 23 | dynamic-cortana-accent=normal 24 | dynamic-cortana-color=000000 ; A color in hexadecimal notation. 25 | dynamic-cortana-opacity=0 ; A value in the range 0 to 255. 26 | 27 | ; Dynamic Timeline. State to use when the timeline (or task view on older builds) is opened. 28 | dynamic-timeline=enable 29 | dynamic-timeline-accent=normal 30 | dynamic-timeline-color=000000 ; A color in hexadecimal notation. 31 | dynamic-timeline-opacity=0 ; A value in the range 0 to 255. 32 | 33 | ; Controls how the Aero Peek button behaves (dynamic, show or hide) 34 | peek=dynamic 35 | peek-only-main=enable ; Decides wether only the main monitor is considered when dynamic peek is enabled. 36 | 37 | ; Advanced settings 38 | ; sleep time in milliseconds, a shorter time reduces flicker when opening start, but results in higher CPU usage. 39 | sleep-time=10 40 | ; hide icon in system tray. Changes to this requires a restart of the application. 41 | no-tray=disable 42 | ; more informative logging. Can make huge log files. 43 | verbose=disable 44 | -------------------------------------------------------------------------------- /config/v2rayN.txt: -------------------------------------------------------------------------------- 1 | ||*google.com, 2 | ||*v2ray.com, 3 | ||*office.com, 4 | ||*microsoft.com, 5 | ||*live.com, 6 | ||*amazonaws.com, 7 | ||*gpsspg.com, 8 | ||*renzhe.cloud, 9 | ||*daixiahu.co, 10 | ||*googlesyndication.com, 11 | ||*gogeeks.cn, 12 | ||*savevd.com, 13 | ||*vmgirls.com, 14 | ||*atool9.com, 15 | ||*videofk.com, 16 | ||*westlaw.com, 17 | ||*clarivate.com, 18 | ||*v2ex.com, 19 | ||*githubassets.com, 20 | ||*githubusercontent.com, 21 | ||*epicgames.com, 22 | ||*rhsj520.com, 23 | ||*888173.net, 24 | ||*helloavgirls.com, 25 | ||*avjoy.me, 26 | ||*pornhub.com, 27 | ||*sic.ac.cn, 28 | ||*researchgate.net, 29 | ||*sci-hub.*, 30 | ||*libgen.io, 31 | ||*mailer.cn, 32 | ||*rizonesoft.com, 33 | ||*osapublishing.org, 34 | ||*tchannels.me, 35 | ||*mpyit.com, 36 | ||*mt-naka.com, 37 | ||*riboptic.fr, 38 | ||*meiju11.com, 39 | ||*merlinblog.xyz, 40 | ||*inoreader.com, 41 | ||*briian.com, 42 | ||*steampowered.com, 43 | ||*yinwang.org, 44 | ||*gstatic.com, 45 | ||*sharepoint.com, 46 | ||*academia.edu, 47 | ||*aiwenjian.com, 48 | ||39.108.149.27, 49 | ||*wikisource.org, 50 | ||*oracle.com, 51 | ||*sci-hub.tw, 52 | ||*gist.githubusercontent.com, 53 | ||*psu.edu, 54 | ||*ieee.org, 55 | ||*daumcdn.net, 56 | ||*webofknowledge.com, 57 | ||*178.com, 58 | ||*camo.githubusercontent.com, 59 | ||*duyaoss.com, 60 | ||*goldendict.org, 61 | ||*amazonaws.com, 62 | ||*github.com, 63 | ||*acs.org, 64 | ||*gstatic.com, 65 | ||*wikimedia.org, 66 | ||*refractiveindex.info, 67 | ||*manchester.ac.uk, 68 | ||*arxiv.org, 69 | ||*fonts.proxy.ustclug.org, 70 | ||*fonts.googleapis.com, 71 | ||*endnote.com, 72 | ||*39txt.com, 73 | ||*nature.com, 74 | ||*icecreamapps.com, 75 | ||*avatars1.githubusercontent.com, 76 | ||*avatars2.githubusercontent.com, 77 | ||*avatars3.githubusercontent.com, 78 | ||*avatars0.githubusercontent.com, 79 | ||*user-images.githubusercontent.com, 80 | ||*highfieldhousehotel.co.uk, 81 | ||*ukco.uk, 82 | ||*ncwxdh.com, 83 | ||*zhubajie.com, 84 | ||*zhudaili.com, 85 | ||*eff.org, 86 | ||*ecsdl.org, 87 | ||*telegra.ph, 88 | ||*storage.googleapis.com, 89 | ||*tejian.org, 90 | ||*ubisoft.com, 91 | ||*gimp.org, 92 | ||*ti.com, 93 | ||*cn-ki.net, 94 | ||*stackoverflow.com, 95 | ||*speedtest.net, 96 | ||*ea.com, 97 | ||*bestbot.me, 98 | ||afgo.me, 99 | ||*afgo.me, 100 | ||*proxifier.com, 101 | ||*t.me, 102 | ||*storebot.me, 103 | ||*owllook.net, 104 | ||*thinkgeek.com, 105 | ||*pyyaml.org, 106 | ||*w3schools.com, 107 | ||*heroku.com, 108 | ||*github.io, 109 | ||*howiefh.github.io, 110 | ||*alloyteam.github.io, 111 | ||*lotabout.github.io, 112 | ||*youtube.co.uk, 113 | ||*morvanzhou.github.io, 114 | ||*doub.io, 115 | ||*write.org.cn, 116 | ||*youtube.com, 117 | ||*shadowsocks.org, 118 | ||*bit.no.com, 119 | ||*ahonn.me, 120 | ||*hexo.io, 121 | ||*gentle-oasis-59484.herokuapp.com, 122 | ||*pythonic.life, 123 | ||*ip.cn, 124 | ||*google.com.hk, 125 | ||*twitter.com, 126 | ||*banwagong.me, 127 | ||*clixsense.com, 128 | ||*gitbooks.io, 129 | ||*binux.me, 130 | ||*shadowsocks.com.hk, 131 | ||*ilovematlab.cn, 132 | ||*liaoxuefeng.com, 133 | ||*nmtxt.com, 134 | ||*atool.org, 135 | ||*clippingmagic.com, 136 | ||*theusefulvpn.com, 137 | ||*czzshr.github.io, 138 | ||*gifyoutube.com, 139 | ||*webtwt.com, 140 | ||*deviantart.com, 141 | ||*posemaniacs.com, 142 | ||*cummingordrumming.com, 143 | ||*footballorporn.cc, 144 | ||*xiamp4.com, 145 | ||*gingersoftware.com, 146 | ||*itellyou.cn, 147 | ||*flvcd.com, 148 | ||*freeplaymusic.com, 149 | ||*cityofhobart.org, 150 | ||*census.gov, 151 | ||*rutgers.edu, 152 | ||*evozi.com, 153 | ||*gleam.io, 154 | ||*userstyles.org, 155 | ||*wikipedia.org, 156 | ||*nand2tetris.org, 157 | ||*a9.com, 158 | ||*tlhiv.org, 159 | ||*acronymify.com, 160 | ||*sci-hub.cc, 161 | ||*kirelabs.org, 162 | ||*tinypng.com, 163 | ||*gmail.com, 164 | ||smtp.gmail.com, 165 | ||imap.gmail.com, 166 | ||xuetr.com, 167 | ||www.microsoft.com, 168 | @@v2ex.com, 169 | ||googlesyndication.com, 170 | ||pubs.rsc.org, 171 | ||rsshub.app, 172 | ||kindle4rss.com, 173 | ||coolshell.cn, 174 | ||wemp.app, 175 | ||ubisoft.com, 176 | ||ubi.com, 177 | @@static.hdslb.com, 178 | @@www.bilibili.com, 179 | @@interface.bilibili.com, 180 | @@security.bilibili.com, 181 | @@i0.hdslb.com, 182 | @@t.bilibili.com, 183 | @@s1.hdslb.com, 184 | @@s2.hdslb.com, 185 | @@message.bilibili.com, 186 | @@api.vc.bilibili.com, 187 | @@api.live.bilibili.com, 188 | @@api.bilibili.com, 189 | ||tdesktop.com -------------------------------------------------------------------------------- /docs/windows-applications.md: -------------------------------------------------------------------------------- 1 | # windows 必备应用列表 2 | 3 | windows 必备应用列表是个人重装电脑后会安装的应用。 4 | 5 | ## 文档类 6 | 7 | | 名称 | 需要安装 | 配置文件 | 备注 | 8 | | :---------------------: | :------: | :------: | :----------: | 9 | | [福昕 PDF 编辑器企业版] | ✔ | | 福昕 9.6.0 | 10 | | [CAJViewer] | ✔ | | CAJViewer7.3 | 11 | | [mathtype] | ✔ | | mathtype6.9 | 12 | 13 | [福昕 pdf 编辑器企业版]: https://www.foxitsoftware.cn/pdf-editor/ 14 | [cajviewer]: http://cajviewer.cnki.net/download.html 15 | [mathtype]: https://www.mathtype.cn/xiazai.html 16 | 17 | ## 通讯类 18 | 19 | | 名称 | 需要安装 | 配置文件 | 备注 | 20 | | :--------: | :------: | :------: | :--: | 21 | | [telegram] | ✔ | 账号同步 | | 22 | 23 | [telegram]: https://telegram.org/apps 24 | 25 | ## 浏览器插件类 26 | 27 | **注意: 此处插件可以通过浏览器账号同步设置。** 28 | 29 | | 名称 | 需要安装 | 配置说明 | 备注 | 30 | | :-----------------------------: | :------: | :---------------------: | :----------------: | 31 | | [soulsign-chrome] | ✔ | [个人开发脚本安装地址] | [公共脚本发布平台] | 32 | | [OneTab Plus: 标签效率管理扩展] | ✔ | | | 33 | | [沙拉查词] | ✔ | [沙拉查词配置说明] | | 34 | | [Tampermonkey BETA] | ✔ | [tampermonkey 配置说明] | | 35 | | [GitMaster] | ✔ | | | 36 | | [简悦] | ✔ | 云同步 | | 37 | | [简码] | ✔ | | | 38 | | [Infinity 新标签页 (Pro)] | ✔ | 账号同步 | | 39 | | [pakku 哔哩哔哩弹幕过滤器] | ✔ | [pakku 配置说明] | | 40 | | [Stylus] | ✔ | [Stylus 配置说明] | | 41 | | [广告终结者] | ✔ | | | 42 | | [HTTPS Everywhere] | ✔ | | | 43 | | [languagetool] | ✔ | | | 44 | | [grammarly] | ✔ | | | 45 | | [SingleFile] | ✔ | | | 46 | 47 | [soulsign-chrome]: https://github.com/inu1255/soulsign-chrome 48 | [个人开发脚本安装地址]: https://soulsign.inu1255.cn/?uid=1176 49 | [公共脚本发布平台]: https://soulsign.inu1255.cn/ 50 | [onetab plus: 标签效率管理扩展]: https://chrome.google.com/webstore/detail/onetab-plustab-manage-pro/lepdjbhbkpfenckechpdfohdmkhogojf 51 | [沙拉查词]: https://saladict.crimx.com/ 52 | [沙拉查词配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=saladictjson 53 | [tampermonkey beta]: https://www.tampermonkey.net/?ext=dhdg&browser=chrome 54 | [tampermonkey 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=tampermonkeyzip 55 | [gitmaster]: https://github.com/ineo6/git-master 56 | [简悦]: http://ksria.com/simpread/ 57 | [简码]: https://microsoftedge.microsoft.com/addons/detail/%E7%AE%80%E7%A0%81/dpgjdomgklccodklkokapnaehbocnmfo 58 | [infinity 新标签页 (pro)]: https://www.infinitynewtab.com/ 59 | [pakku 哔哩哔哩弹幕过滤器]: https://s.xmcp.ml/pakkujs/ 60 | [pakku 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=pakkujson 61 | [stylus]: https://add0n.com/stylus.html 62 | [stylus 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=stylusjson 63 | [广告终结者]: https://www.adtchrome.com/ 64 | [https everywhere]: https://github.com/efforg/https-everywhere 65 | [languagetool]: https://languagetool.org/ 66 | [grammarly]: https://app.grammarly.com/ 67 | [singlefile]: https://github.com/gildas-lormeau/SingleFile 68 | 69 | ## 工具类 70 | 71 | | 名称 | 需要安装 | 配置文件 | 备注 | 72 | | :---------------------: | :------: | :------------------------: | :--------------------: | 73 | | [Snipaste] | ✔ | [Snipaste 配置说明] | | 74 | | [天若 OCR 文字识别] | ✔ | 账号同步 | | 75 | | [TrafficMonitor] | ✔ | [TrafficMonitor 配置说明] | | 76 | | [clash_for_windows_pkg] | ✔ | [ClashForWindows 配置说明] | | 77 | | [QQ 影音] | ✔ | | | 78 | | [网易云音乐] | ✔ | 账号同步 | | 79 | | [百度网盘] | ✔ | 账号同步 | | 80 | | [TranslucentTB] | ✔ | [TranslucentTB 配置说明] | [TranslucentTB 中文版] | 81 | | [PowerShell] | ❌ | [PowerShell 配置说明] | | 82 | 83 | [snipaste]: https://zh.snipaste.com/ 84 | [snipaste 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=snipasteini 85 | [天若 ocr 文字识别]: https://tianruoocr.cn/ 86 | [trafficmonitor]: https://github.com/zhongyang219/TrafficMonitor/releases 87 | [trafficmonitor 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=trafficmonitor 88 | [clash_for_windows_pkg]: https://github.com/Fndroid/clash_for_windows_pkg 89 | [clashforwindows 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=clashforwindows 90 | [qq 影音]: https://player.qq.com/ 91 | [网易云音乐]: https://music.163.com/#/download 92 | [百度网盘]: https://pan.baidu.com/download 93 | [translucenttb]: https://github.com/TranslucentTB/TranslucentTB 94 | [translucenttb 中文版]: https://github.com/tpxxn/TranslucentTB 95 | [translucenttb 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=translucenttbcfg 96 | [powershell]: https://docs.microsoft.com/en-us/powershell/ 97 | [powershell 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=microsoftpowershell_profileps1 98 | -------------------------------------------------------------------------------- /docs/windows-system-reinstallation-applications.md: -------------------------------------------------------------------------------- 1 | # windows 重装应用列表 2 | 3 | windows 重装应用列表主要集中在可用性上,以最小使用单位为主,没有必要的应用不会添加。 4 | 5 | ## 文档处理类 6 | 7 | | 名称 | 需要安装 | 配置文件 | 备注 | 8 | | :--------: | :------: | :-----------------: | :---------------------------: | 9 | | [office] | ✔ | | [office 365 自选组件安装教程] | 10 | | [Notepad3] | | [Notepad3 配置说明] | | 11 | 12 | [office]: https://www.office.com/ 13 | [office 365 自选组件安装教程]: https://github.yixuju.cn/Application-Lists/#/office 14 | [notepad3]: https://www.rizonesoft.com/downloads/notepad3/ 15 | [notepad3 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=notepad3 16 | 17 | ## 通讯类 18 | 19 | | 名称 | 需要安装 | 配置文件 | 备注 | 20 | | :----: | :------: | :------: | :--: | 21 | | [TIM] | ✔ | 账号同步 | | 22 | | [微信] | ✔ | 账号同步 | | 23 | 24 | [tim]: https://tim.qq.com/ 25 | [微信]: https://weixin.qq.com/ 26 | 27 | ## 浏览器相关类 28 | 29 | | 名称 | 需要安装 | 配置文件 | 备注 | 30 | | :--------: | :------: | :------: | :--: | 31 | | [Edge-dev] | ✔ | 账号同步 | | 32 | 33 | [edge-dev]: https://www.microsoft.com/en-us/edge/business/download 34 | 35 | ## 工具类 36 | 37 | | 名称 | 需要安装 | 配置文件 | 备注 | 38 | | :--------------------: | :------: | :------: | :--: | 39 | | [Revo Uninstaller Pro] | ✔ | | | 40 | | [peaZip] | ✔ | | | 41 | 42 | [revo uninstaller pro]: https://www.revouninstaller.com/revo-uninstaller-free-download/ 43 | [peazip]: https://github.com/peazip/PeaZip 44 | 45 | ## 特殊自用类 46 | 47 | | 名称 | 需要安装 | 配置文件 | 备注 | 48 | | :----------------: | :------: | :------: | :--: | 49 | | [神舟 Hotkey 驱动] | ✔ | | | 50 | 51 | [神舟 hotkey 驱动]: http://www.hasee.com/Chinese/drivers/drivers/index.php/Download/Index/model.html?id=193 52 | -------------------------------------------------------------------------------- /docs/windows-tools.md: -------------------------------------------------------------------------------- 1 | # windows 普通工具列表 2 | 3 | - [工作类](#工作类) 4 | - [编程类](#编程类) 5 | - [生活娱乐类](#生活娱乐类) 6 | - [实用工具类](#实用工具类) 7 | 8 | windows 普通工具列表中主要包含不常用的工具或者可选择安装的应用。 9 | 10 | ## 工作类 11 | 12 | | 名称 | 需要安装 | 配置文件 | 备注 | 13 | | :---------------------: | :------: | :-------------------: | :---------------: | 14 | | [Origin Pro] | ✔ | | OriginPro9.0 | 15 | | [Solidworks] | ✔ | | Solidworks2019 | 16 | | [Altium Designer] | ✔ | | Altium Designer17 | 17 | | [Mathpix Snipping Tool] | ✔ | 账户同步 | | 18 | | [NoteExpress] | ✔ | | | 19 | | [Zemax] | ✔ | | Zemax2013 | 20 | | [SumatraPDF] | ✔ | [SumatraPDF 配置说明] | | 21 | | [为知笔记] | ✔ | 账号同步 | | 22 | | [CopyTranslator] | | | | 23 | | [TagSpace] | | | | 24 | 25 | [origin pro]: https://www.originlab.com/index.aspx?%20go=DOWNLOADS/OriginEvaluation 26 | [solidworks]: https://www.solidworks.com.cn/sw/support/downloads.htm 27 | [altium designer]: https://www.altium.com/altium-designer/ 28 | [mathpix snipping tool]: https://mathpix.com/ 29 | [noteexpress]: http://www.inoteexpress.com/aegean/index.php/home/ne/index.html 30 | [zemax]: https://www.zemax.com/ 31 | [sumatrapdf]: https://www.sumatrapdfreader.org/download-free-pdf-viewer.html 32 | [sumatrapdf 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=sumatrapdftxt 33 | [为知笔记]: https://www.wiz.cn/zh-cn/Configuration#sumatrapdftxt 34 | [copytranslator]: https://copytranslator.github.io/download/ 35 | [tagspace]: https://github.com/tagspaces/tagspaces 36 | 37 | ## 编程类 38 | 39 | | 名称 | 需要安装 | 配置文件 | 备注 | 40 | | :------------------: | :------: | :---------------: | :--------: | 41 | | [Putty] | | | | 42 | | [Terminal] | ✔ | | | 43 | | [VMWPro] | ✔ | | VMWPro15.0 | 44 | | [Visual Studio Code] | ✔ | 账号同步 | | 45 | | [matlab] | ✔ | | | 46 | | [Git] | ✔ | | | 47 | | [JDK] | ✔ | | | 48 | | [Node.js] | ✔ | | | 49 | | [Python] | ✔ | | | 50 | | [v2rayN] | | [v2rayN 配置说明] | | 51 | | [everything] | | | | 52 | 53 | [putty]: https://www.putty.org/ 54 | [terminal]: https://www.microsoft.com/zh-cn/p/windows-terminal/9n0dx20hk701 55 | [vmwpro]: https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html 56 | [visual studio code]: https://code.visualstudio.com/Download 57 | [matlab]: https://ww2.mathworks.cn/downloads/web_downloads/ 58 | [git]: https://git-scm.com/download/win 59 | [jdk]: https://www.oracle.com/java/technologies/javase-downloads.html 60 | [node.js]: https://nodejs.org/zh-cn/ 61 | [python]: https://www.python.org/downloads/windows/ 62 | [v2rayn]: https://github.com/2dust/v2rayN/releases 63 | [v2rayn 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=v2rayntxt 64 | [everything]: https://www.voidtools.com/zh-cn/ 65 | 66 | ## 生活娱乐类 67 | 68 | | 名称 | 需要安装 | 配置文件 | 备注 | 69 | | :-------------: | :------: | :------: | :--------: | 70 | | [QQ] | ✔ | 账号同步 | | 71 | | [GIMP] | ✔ | | | 72 | | [每日英语听力] | ✔ | 账号同步 | | 73 | | [暴雪战网] | ✔ | 账号同步 | | 74 | | [Steam] | ✔ | 账号同步 | | 75 | | [OnePass] | | | | 76 | | [NDM] | ✔ | | | 77 | | [Chrome] | ✔ | 账号同步 | [国内地址] | 78 | | [FormatFactory] | | | | 79 | 80 | [qq]: https://im.qq.com/pcqq/ 81 | [gimp]: https://www.gimp.org/downloads/ 82 | [每日英语听力]: http://dict.eudic.net/ting/ 83 | [暴雪战网]: https://www.battlenet.com.cn/account/download/index.xml 84 | [steam]: https://store.steampowered.com/about/ 85 | [onepass]: https://github.com/kaku2015/OnePassWindows 86 | [ndm]: https://www.neatdownloadmanager.com/index.php/ 87 | [chrome]: https://www.google.com/chrome/ 88 | [国内地址]: https://www.google.cn/chrome/ 89 | [formatfactory]: http://www.pcfreetime.com/formatfactory/CN/index.html 90 | 91 | ## 实用工具类 92 | 93 | | 名称 | 需要安装 | 配置文件 | 备注 | 94 | | :--------------------------------: | :------: | :-----------------------------------------: | :--: | 95 | | [NewFileTime] | | | | 96 | | [cmd_init.bat] | | [cmd_init.bat 配置说明] | | 97 | | [Microsoft.PowerShell_profile.ps1] | | [Microsoft.PowerShell_profile.ps1 配置说明] | | 98 | | [geekuninstaller] | | | | 99 | | [memreduct] | ✔ | [memreduct 配置说明] | | 100 | 101 | [geekuninstaller]: https://geekuninstaller.com/download 102 | [newfiletime]: http://www.softwareok.com/?Download=NewFileTime 103 | [cmd_init.bat]: https://github.com/yi-Xu-0100/Application-Lists/tree/master/Configuration#cmd_initbat 104 | [cmd_init.bat 配置说明]: https://github.com/yi-Xu-0100/Application-Lists/tree/master/Configuration#cmd_initbat 105 | [microsoft.powershell_profile.ps1]: https://github.com/yi-Xu-0100/Application-Lists/tree/master/Configuration##microsoftpowershell_profileps1 106 | [microsoft.powershell_profile.ps1 配置说明]: https://github.com/yi-Xu-0100/Application-Lists/tree/master/Configuration##microsoftpowershell_profileps1 107 | [memreduct]: https://github.com/henrypp/memreduct 108 | [memreduct 配置说明]: https://github.yixuju.cn/Application-Lists/#/config?id=memreductini 109 | -------------------------------------------------------------------------------- /init.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | function init(file) { 5 | if (fs.existsSync(path.resolve(__dirname, file.dist))) fs.unlinkSync(path.resolve(__dirname, file.dist)); 6 | fs.createReadStream(path.resolve(__dirname, file.src)).pipe(fs.createWriteStream(path.resolve(__dirname, file.dist))); 7 | } 8 | 9 | files = [ 10 | { 11 | src: './README.md', 12 | dist: './server/README.md', 13 | }, 14 | { 15 | src: './LICENSE', 16 | dist: './server/LICENSE', 17 | }, 18 | { 19 | src: './.docsify/_sidebar.md', 20 | dist: './server/_sidebar.md', 21 | }, 22 | { 23 | src: './.docsify/index.html', 24 | dist: './server/index.html', 25 | }, 26 | { 27 | src: './config/README.md', 28 | dist: './server/config.md', 29 | }, 30 | { 31 | src: './docs/windows-applications.md', 32 | dist: './server/windows-applications.md', 33 | }, 34 | { 35 | src: './docs/windows-system-reinstallation-applications.md', 36 | dist: './server/windows-system-reinstallation-applications.md', 37 | }, 38 | { 39 | src: './docs/windows-tools.md', 40 | dist: './server/windows-tools.md', 41 | }, 42 | ]; 43 | 44 | files.forEach((file) => init(file)); 45 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "application-lists", 3 | "version": "1.0.0", 4 | "description": "personal application lists.", 5 | "scripts": { 6 | "prepare": "husky install", 7 | "lint-check": "prettier --check **/*.{js,yml,yaml,json,md}", 8 | "format": "prettier --write **/*.{js,yml,yaml,json,md}", 9 | "start": "node init.js && docsify serve server" 10 | }, 11 | "lint-staged": { 12 | "**/*.{md,json,yml,yaml}": [ 13 | "prettier --write" 14 | ] 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "git+https://github.com/yi-Xu-0100/Application-Lists.git" 19 | }, 20 | "keywords": [ 21 | "windows", 22 | "application", 23 | "reinstallation" 24 | ], 25 | "author": "yi_Xu", 26 | "license": "MIT", 27 | "bugs": { 28 | "url": "https://github.com/yi-Xu-0100/Application-Lists/issues" 29 | }, 30 | "homepage": "https://github.com/yi-Xu-0100/Application-Lists#readme", 31 | "devDependencies": { 32 | "docsify-cli": "^4.4.4", 33 | "husky": "^8.0.3", 34 | "lint-staged": "^13.2.2", 35 | "marked": "^4.2.5", 36 | "normalize-url": ">=8.0.0", 37 | "prettier": "2.8.8", 38 | "prismjs": ">=1.29.0", 39 | "ws": ">=8.13.0" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /server/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/Application-Lists/15cd9393250e6ca4d8a1589f76c81fb3ac28885c/server/.nojekyll --------------------------------------------------------------------------------