Dotfiles managed with Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: move apps' configurations

+8402
+174
config/aerospace/aerospace.toml
··· 1 + # Place a copy of this config to ~/.aerospace.toml 2 + # After that, you can edit ~/.aerospace.toml to your liking 3 + 4 + # It's not necessary to copy all keys to your config. 5 + # If the key is missing in your config, "default-config.toml" will serve as a fallback 6 + 7 + # You can use it to add commands that run after AeroSpace startup. 8 + # 'after-startup-command' is run after 'after-login-command' 9 + # Available commands : https://nikitabobko.github.io/AeroSpace/commands 10 + after-startup-command = ['workspace 2', 'move-workspace-to-monitor --wrap-around next'] 11 + 12 + # Start AeroSpace at login 13 + # start-at-login = true 14 + 15 + # Normalizations. See: https://nikitabobko.github.io/AeroSpace/guide#normalization 16 + enable-normalization-flatten-containers = true 17 + enable-normalization-opposite-orientation-for-nested-containers = true 18 + 19 + # See: https://nikitabobko.github.io/AeroSpace/guide#layouts 20 + # The 'accordion-padding' specifies the size of accordion padding 21 + # You can set 0 to disable the padding feature 22 + accordion-padding = 30 23 + 24 + # Possible values: tiles|accordion 25 + default-root-container-layout = 'tiles' 26 + 27 + # Possible values: horizontal|vertical|auto 28 + # 'auto' means: wide monitor (anything wider than high) gets horizontal orientation, 29 + # tall monitor (anything higher than wide) gets vertical orientation 30 + default-root-container-orientation = 'auto' 31 + 32 + # Possible values: (qwerty|dvorak) 33 + # See https://nikitabobko.github.io/AeroSpace/guide#key-mapping 34 + key-mapping.preset = 'qwerty' 35 + 36 + # Mouse follows focus when focused monitor changes 37 + # Drop it from your config, if you don't like this behavior 38 + # See https://nikitabobko.github.io/AeroSpace/guide#on-focus-changed-callbacks 39 + # See https://nikitabobko.github.io/AeroSpace/commands#move-mouse 40 + on-focused-monitor-changed = ['move-mouse monitor-lazy-center'] 41 + 42 + exec-on-workspace-change = ['/bin/bash', '-c', 43 + 'sketchybar --trigger aerospace_workspace_change PREV=$AEROSPACE_PREV_WORKSPACE FOCUSED=$AEROSPACE_FOCUSED_WORKSPACE' 44 + ] 45 + # Gaps between windows (inner-*) and between monitor edges (outer-*). 46 + # Possible values: 47 + # - Constant: gaps.outer.top = 8 48 + # - Per monitor: gaps.outer.top = [{ monitor.main = 16 }, { monitor."some-pattern" = 32 }, 24] 49 + # In this example, 24 is a default value when there is no match. 50 + # Monitor pattern is the same as for 'workspace-to-monitor-force-assignment'. 51 + # See: https://nikitabobko.github.io/AeroSpace/guide#assign-workspaces-to-monitors 52 + [gaps] 53 + inner.horizontal = 10 54 + inner.vertical = 10 55 + outer.left = 10 56 + outer.bottom = 10 57 + outer.top = [ {monitor."ASUS.*" = 40}, {monitor."dp2.*" = 40}, 10 ] 58 + outer.right = 10 59 + 60 + [workspace-to-monitor-force-assignment] 61 + 1 = 1 62 + 2 = 1 63 + 3 = 1 64 + 4 = 1 65 + 5 = 1 66 + 6 = 2 67 + 7 = 2 68 + 8 = 2 69 + 9 = 2 70 + 71 + # 'main' binding mode declaration 72 + # See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes 73 + # 'main' binding mode must be always presented 74 + [mode.main.binding] 75 + 76 + # All possible keys: 77 + # - Letters. a, b, c, ..., z 78 + # - Numbers. 0, 1, 2, ..., 9 79 + # - Keypad numbers. keypad0, keypad1, keypad2, ..., keypad9 80 + # - F-keys. f1, f2, ..., f20 81 + # - Special keys. minus, equal, period, comma, slash, backslash, quote, semicolon, backtick, 82 + # leftSquareBracket, rightSquareBracket, space, enter, esc, backspace, tab 83 + # - Keypad special. keypadClear, keypadDecimalMark, keypadDivide, keypadrnter, keypadEqual, 84 + # keypadMinus, keypadMultiply, keypadPlus 85 + # - Arrows. left, down, up, right 86 + 87 + # All possible modifiers: cmd, alt, ctrl, shift 88 + 89 + # All possible commands: https://nikitabobko.github.io/AeroSpace/commands 90 + 91 + # You can uncomment this line to open up terminal with alt + enter shortcut 92 + # See: https://nikitabobko.github.io/AeroSpace/commands#exec-and-forget 93 + # alt-enter = 'exec-and-forget open -n /System/Applications/Utilities/Terminal.app' 94 + 95 + # See: https://nikitabobko.github.io/AeroSpace/commands#layout 96 + alt-slash = 'layout tiles horizontal vertical' 97 + alt-comma = 'layout accordion horizontal vertical' 98 + 99 + # See: https://nikitabobko.github.io/AeroSpace/commands#focus 100 + alt-h = 'focus left' 101 + alt-j = 'focus down' 102 + alt-k = 'focus up' 103 + alt-l = 'focus right' 104 + 105 + # See: https://nikitabobko.github.io/AeroSpace/commands#move 106 + alt-shift-h = 'move left' 107 + alt-shift-j = 'move down' 108 + alt-shift-k = 'move up' 109 + alt-shift-l = 'move right' 110 + 111 + # See: https://nikitabobko.github.io/AeroSpace/commands#resize 112 + alt-shift-comma = 'resize smart -50' 113 + alt-shift-period = 'resize smart +50' 114 + 115 + # See: https://nikitabobko.github.io/AeroSpace/commands#workspace 116 + cmd-1 = 'workspace 1' 117 + cmd-2 = 'workspace 2' 118 + cmd-3 = 'workspace 3' 119 + cmd-4 = 'workspace 4' 120 + cmd-5 = 'workspace 5' 121 + cmd-6 = 'workspace 6' 122 + cmd-7 = 'workspace 7' 123 + cmd-8 = 'workspace 8' 124 + cmd-9 = 'workspace 9' 125 + 126 + # See: https://nikitabobko.github.io/AeroSpace/commands#move-node-to-workspace 127 + cmd-shift-1 = 'move-node-to-workspace 1' 128 + cmd-shift-2 = 'move-node-to-workspace 2' 129 + cmd-shift-3 = 'move-node-to-workspace 3' 130 + cmd-shift-4 = 'move-node-to-workspace 4' 131 + cmd-shift-5 = 'move-node-to-workspace 5' 132 + cmd-shift-6 = 'move-node-to-workspace 6' 133 + cmd-shift-7 = 'move-node-to-workspace 7' 134 + cmd-shift-8 = 'move-node-to-workspace 8' 135 + cmd-shift-9 = 'move-node-to-workspace 9' 136 + 137 + # See: https://nikitabobko.github.io/AeroSpace/commands#workspace-back-and-forth 138 + alt-enter = 'exec-and-forget sketchybar --trigger change_keyboard_layout' 139 + # See: https://nikitabobko.github.io/AeroSpace/commands#move-workspace-to-monitor 140 + # alt-shift-tab = 'move-workspace-to-monitor --wrap-around next' 141 + 142 + # See: https://nikitabobko.github.io/AeroSpace/commands#mode 143 + alt-shift-u = 'mode service' 144 + 145 + # fullscreen 146 + alt-f = 'fullscreen' 147 + 148 + alt-shift-f = 'layout floating tiling' 149 + 150 + # 'service' binding mode declaration. 151 + # See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes 152 + [mode.service.binding] 153 + esc = ['reload-config', 'mode main'] 154 + r = ['flatten-workspace-tree', 'mode main'] # reset layout 155 + #s = ['layout sticky tiling', 'mode main'] # sticky is not yet supported https://github.com/nikitabobko/AeroSpace/issues/2 156 + f = ['layout floating tiling', 'mode main'] # Toggle between floating and tiling layout 157 + backspace = ['close-all-windows-but-current', 'mode main'] 158 + 159 + alt-shift-h = ['join-with left', 'mode main'] 160 + alt-shift-j = ['join-with down', 'mode main'] 161 + alt-shift-k = ['join-with up', 'mode main'] 162 + alt-shift-l = ['join-with right', 'mode main'] 163 + 164 + [[on-window-detected]] 165 + if.app-name-regex-substring = "warp" 166 + run = 'layout floating' 167 + 168 + [[on-window-detected]] 169 + if.app-name-regex-substring = "ghostty" 170 + run = 'layout floating' 171 + 172 + [[on-window-detected]] 173 + if.app-id = "com.apple.systempreferences" 174 + run = 'layout floating'
+38
config/alacritty/alacritty.toml
··· 1 + [general] 2 + import = [ 3 + "./themes/themes/umbraline.toml", 4 + ] 5 + 6 + [env] 7 + TERM = "screen-256color" 8 + WINIT_X11_SCALE_FACTOR = "1.25" 9 + 10 + [font] 11 + size = 18 12 + 13 + normal.family = "Terminess Nerd Font Mono" 14 + 15 + offset.x = 1 16 + offset.y = 1 17 + 18 + [mouse] 19 + hide_when_typing = true 20 + 21 + [terminal.shell] 22 + program = "/bin/zsh" 23 + 24 + [window] 25 + decorations = "Buttonless" 26 + decorations_theme_variant = "Dark" 27 + dynamic_padding = false 28 + opacity = 0.85 29 + startup_mode = "Windowed" 30 + title = "" 31 + padding.x = 2 32 + padding.y = 0 33 + 34 + [window.class] 35 + general = "Alacritty" 36 + instance = "Alacritty" 37 + 38 +
+202
config/alacritty/themes/LICENSE
··· 1 + Apache License 2 + Version 2.0, January 2004 3 + http://www.apache.org/licenses/ 4 + 5 + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 + 7 + 1. Definitions. 8 + 9 + "License" shall mean the terms and conditions for use, reproduction, 10 + and distribution as defined by Sections 1 through 9 of this document. 11 + 12 + "Licensor" shall mean the copyright owner or entity authorized by 13 + the copyright owner that is granting the License. 14 + 15 + "Legal Entity" shall mean the union of the acting entity and all 16 + other entities that control, are controlled by, or are under common 17 + control with that entity. For the purposes of this definition, 18 + "control" means (i) the power, direct or indirect, to cause the 19 + direction or management of such entity, whether by contract or 20 + otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 + outstanding shares, or (iii) beneficial ownership of such entity. 22 + 23 + "You" (or "Your") shall mean an individual or Legal Entity 24 + exercising permissions granted by this License. 25 + 26 + "Source" form shall mean the preferred form for making modifications, 27 + including but not limited to software source code, documentation 28 + source, and configuration files. 29 + 30 + "Object" form shall mean any form resulting from mechanical 31 + transformation or translation of a Source form, including but 32 + not limited to compiled object code, generated documentation, 33 + and conversions to other media types. 34 + 35 + "Work" shall mean the work of authorship, whether in Source or 36 + Object form, made available under the License, as indicated by a 37 + copyright notice that is included in or attached to the work 38 + (an example is provided in the Appendix below). 39 + 40 + "Derivative Works" shall mean any work, whether in Source or Object 41 + form, that is based on (or derived from) the Work and for which the 42 + editorial revisions, annotations, elaborations, or other modifications 43 + represent, as a whole, an original work of authorship. For the purposes 44 + of this License, Derivative Works shall not include works that remain 45 + separable from, or merely link (or bind by name) to the interfaces of, 46 + the Work and Derivative Works thereof. 47 + 48 + "Contribution" shall mean any work of authorship, including 49 + the original version of the Work and any modifications or additions 50 + to that Work or Derivative Works thereof, that is intentionally 51 + submitted to Licensor for inclusion in the Work by the copyright owner 52 + or by an individual or Legal Entity authorized to submit on behalf of 53 + the copyright owner. For the purposes of this definition, "submitted" 54 + means any form of electronic, verbal, or written communication sent 55 + to the Licensor or its representatives, including but not limited to 56 + communication on electronic mailing lists, source code control systems, 57 + and issue tracking systems that are managed by, or on behalf of, the 58 + Licensor for the purpose of discussing and improving the Work, but 59 + excluding communication that is conspicuously marked or otherwise 60 + designated in writing by the copyright owner as "Not a Contribution." 61 + 62 + "Contributor" shall mean Licensor and any individual or Legal Entity 63 + on behalf of whom a Contribution has been received by Licensor and 64 + subsequently incorporated within the Work. 65 + 66 + 2. Grant of Copyright License. Subject to the terms and conditions of 67 + this License, each Contributor hereby grants to You a perpetual, 68 + worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 + copyright license to reproduce, prepare Derivative Works of, 70 + publicly display, publicly perform, sublicense, and distribute the 71 + Work and such Derivative Works in Source or Object form. 72 + 73 + 3. Grant of Patent License. Subject to the terms and conditions of 74 + this License, each Contributor hereby grants to You a perpetual, 75 + worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 + (except as stated in this section) patent license to make, have made, 77 + use, offer to sell, sell, import, and otherwise transfer the Work, 78 + where such license applies only to those patent claims licensable 79 + by such Contributor that are necessarily infringed by their 80 + Contribution(s) alone or by combination of their Contribution(s) 81 + with the Work to which such Contribution(s) was submitted. If You 82 + institute patent litigation against any entity (including a 83 + cross-claim or counterclaim in a lawsuit) alleging that the Work 84 + or a Contribution incorporated within the Work constitutes direct 85 + or contributory patent infringement, then any patent licenses 86 + granted to You under this License for that Work shall terminate 87 + as of the date such litigation is filed. 88 + 89 + 4. Redistribution. You may reproduce and distribute copies of the 90 + Work or Derivative Works thereof in any medium, with or without 91 + modifications, and in Source or Object form, provided that You 92 + meet the following conditions: 93 + 94 + (a) You must give any other recipients of the Work or 95 + Derivative Works a copy of this License; and 96 + 97 + (b) You must cause any modified files to carry prominent notices 98 + stating that You changed the files; and 99 + 100 + (c) You must retain, in the Source form of any Derivative Works 101 + that You distribute, all copyright, patent, trademark, and 102 + attribution notices from the Source form of the Work, 103 + excluding those notices that do not pertain to any part of 104 + the Derivative Works; and 105 + 106 + (d) If the Work includes a "NOTICE" text file as part of its 107 + distribution, then any Derivative Works that You distribute must 108 + include a readable copy of the attribution notices contained 109 + within such NOTICE file, excluding those notices that do not 110 + pertain to any part of the Derivative Works, in at least one 111 + of the following places: within a NOTICE text file distributed 112 + as part of the Derivative Works; within the Source form or 113 + documentation, if provided along with the Derivative Works; or, 114 + within a display generated by the Derivative Works, if and 115 + wherever such third-party notices normally appear. The contents 116 + of the NOTICE file are for informational purposes only and 117 + do not modify the License. You may add Your own attribution 118 + notices within Derivative Works that You distribute, alongside 119 + or as an addendum to the NOTICE text from the Work, provided 120 + that such additional attribution notices cannot be construed 121 + as modifying the License. 122 + 123 + You may add Your own copyright statement to Your modifications and 124 + may provide additional or different license terms and conditions 125 + for use, reproduction, or distribution of Your modifications, or 126 + for any such Derivative Works as a whole, provided Your use, 127 + reproduction, and distribution of the Work otherwise complies with 128 + the conditions stated in this License. 129 + 130 + 5. Submission of Contributions. Unless You explicitly state otherwise, 131 + any Contribution intentionally submitted for inclusion in the Work 132 + by You to the Licensor shall be under the terms and conditions of 133 + this License, without any additional terms or conditions. 134 + Notwithstanding the above, nothing herein shall supersede or modify 135 + the terms of any separate license agreement you may have executed 136 + with Licensor regarding such Contributions. 137 + 138 + 6. Trademarks. This License does not grant permission to use the trade 139 + names, trademarks, service marks, or product names of the Licensor, 140 + except as required for reasonable and customary use in describing the 141 + origin of the Work and reproducing the content of the NOTICE file. 142 + 143 + 7. Disclaimer of Warranty. Unless required by applicable law or 144 + agreed to in writing, Licensor provides the Work (and each 145 + Contributor provides its Contributions) on an "AS IS" BASIS, 146 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 + implied, including, without limitation, any warranties or conditions 148 + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 + PARTICULAR PURPOSE. You are solely responsible for determining the 150 + appropriateness of using or redistributing the Work and assume any 151 + risks associated with Your exercise of permissions under this License. 152 + 153 + 8. Limitation of Liability. In no event and under no legal theory, 154 + whether in tort (including negligence), contract, or otherwise, 155 + unless required by applicable law (such as deliberate and grossly 156 + negligent acts) or agreed to in writing, shall any Contributor be 157 + liable to You for damages, including any direct, indirect, special, 158 + incidental, or consequential damages of any character arising as a 159 + result of this License or out of the use or inability to use the 160 + Work (including but not limited to damages for loss of goodwill, 161 + work stoppage, computer failure or malfunction, or any and all 162 + other commercial damages or losses), even if such Contributor 163 + has been advised of the possibility of such damages. 164 + 165 + 9. Accepting Warranty or Additional Liability. While redistributing 166 + the Work or Derivative Works thereof, You may choose to offer, 167 + and charge a fee for, acceptance of support, warranty, indemnity, 168 + or other liability obligations and/or rights consistent with this 169 + License. However, in accepting such obligations, You may act only 170 + on Your own behalf and on Your sole responsibility, not on behalf 171 + of any other Contributor, and only if You agree to indemnify, 172 + defend, and hold each Contributor harmless for any liability 173 + incurred by, or claims asserted against, such Contributor by reason 174 + of your accepting any such warranty or additional liability. 175 + 176 + END OF TERMS AND CONDITIONS 177 + 178 + APPENDIX: How to apply the Apache License to your work. 179 + 180 + To apply the Apache License to your work, attach the following 181 + boilerplate notice, with the fields enclosed by brackets "[]" 182 + replaced with your own identifying information. (Don't include 183 + the brackets!) The text should be enclosed in the appropriate 184 + comment syntax for the file format. We also recommend that a 185 + file or class name and description of purpose be included on the 186 + same "printed page" as the copyright notice for easier 187 + identification within third-party archives. 188 + 189 + Copyright 2019-2023 indrajit 190 + Copyright 2023- The Alacritty Project 191 + 192 + Licensed under the Apache License, Version 2.0 (the "License"); 193 + you may not use this file except in compliance with the License. 194 + You may obtain a copy of the License at 195 + 196 + http://www.apache.org/licenses/LICENSE-2.0 197 + 198 + Unless required by applicable law or agreed to in writing, software 199 + distributed under the License is distributed on an "AS IS" BASIS, 200 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 + See the License for the specific language governing permissions and 202 + limitations under the License.
+185
config/alacritty/themes/README.md
··· 1 + # Alacritty Theme 2 + 3 + Collection of colorschemes for easy configuration of the [Alacritty terminal 4 + emulator]. 5 + 6 + [Alacritty terminal emulator]: https://github.com/alacritty/alacritty 7 + 8 + ## Installation 9 + 10 + ### Imports 11 + 12 + Clone the repository, or download the theme of your choice: 13 + 14 + ```sh 15 + # We use Alacritty's default Linux config directory as our storage location here. 16 + mkdir -p ~/.config/alacritty/themes 17 + git clone https://github.com/alacritty/alacritty-theme ~/.config/alacritty/themes 18 + ``` 19 + 20 + Add an import to your `alacritty.toml` (Replace `{theme}` with your desired 21 + colorscheme): 22 + 23 + ```toml 24 + import = [ 25 + "~/.config/alacritty/themes/themes/{theme}.toml" 26 + ] 27 + ``` 28 + 29 + ### Manual 30 + 31 + To manually include a colorscheme in an existing `alacritty.toml`, you just need 32 + to copy the entire content of the theme into the root level of your 33 + configuration file. 34 + 35 + ## Color Schemes 36 + 37 + | NAME | COLORS | 38 + |:-------------------------------------------------------------------------------------------------------------------------------------------------:|:----------------------------------------------------------:| 39 + | **_afterglow_**<br>[source](https://github.com/YabataDesign/afterglow-theme) | ![base16_default_dark](images/afterglow.png) | 40 + | **_alabaster_**<br>[source](https://github.com/tonsky/vscode-theme-alabaster) | ![alabaster](images/alabaster.png) | 41 + | **_alabaster_dark_**<br>[source](https://github.com/gargakshit/vscode-theme-alabaster-dark) | ![alabaster_dark](images/alabaster_dark.png) | 42 + | **_alacritty_0_12_**<br>[source](https://github.com/alacritty/alacritty/blob/v0.12.3/alacritty/src/config/color.rs) | ![alacritty_0_12](images/alacritty_0_12.png) | 43 + | **_argonaut_**<br>[source](https://github.com/pwaleczek/Argonaut-theme) | ![base16_default_dark](images/argonaut.png) | 44 + | **_ashes_dark_**<br>[source](https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes) | ![base16_ashes_dark](images/ashes_dark.png) | 45 + | **_ashes_light_**<br>[source](https://marketplace.visualstudio.com/items?itemName=AndrsDC.base16-themes) | ![base16_ashes_light](images/ashes_light.png) | 46 + | **_atom_one_light_**<br>[source](https://github.com/dexpota/kitty-themes/blob/master/themes/AtomOneLight.conf) | ![atom_one_light](images/atom_one_light.png) | 47 + | **_aura_**<br>[source](https://github.com/daltonmenezes/aura-theme) | ![aura](images/aura.png) | 48 + | **_ayu_dark_**<br>[source](https://github.com/ayu-theme/ayu-colors) | ![ayu_dark](images/ayu_dark.png) | 49 + | **_ayu_light_**<br>[source](https://github.com/ayu-theme/ayu-colors) | ![ayu_light](images/ayu_light.png) | 50 + | **_baitong_**<br>[source](https://github.com/cypj/baitong-theme) | ![baitong](images/baitong.png) | 51 + | **_base16_default_dark_**<br>[source](https://github.com/chriskempson/base16) | ![base16_default_dark](images/base16_default_dark.png) | 52 + | **_blood_moon_**<br>[source](https://github.com/dguo/blood-moon) | ![blood_moon](images/blood_moon.png) | 53 + | **_bluish_** | ![bluish](images/bluish.png) | 54 + | **_breeze_**<br>[source](https://github.com/KDE/breeze) | ![breeze](images/breeze.png) | 55 + | **_campbell_**<br>[source](https://blogs.msdn.microsoft.com/commandline/2017/08/02/updating-the-windows-console-colors) | ![campbell](images/campbell.png) | 56 + | **_carbonfox_**<br>[source](https://github.com/edeneast/nightfox.nvim/raw/main/extra/carbonfox/nightfox_alacritty.yml) | ![carbonfox](images/carbonfox.png) | 57 + | **_catppuccin_frappe_**<br>[source](https://github.com/catppuccin/alacritty) | ![catppuccin_frappe](images/catppuccin_frappe.png) | 58 + | **_catppuccin_latte_**<br>[source](https://github.com/catppuccin/alacritty) | ![catppuccin_latte](images/catppuccin_latte.png) | 59 + | **_catppuccin_macchiato_**<br>[source](https://github.com/catppuccin/alacritty) | ![catppuccin_macchiato](images/catppuccin_macchiato.png) | 60 + | **_catppuccin_mocha_**<br>[source](https://github.com/catppuccin/alacritty) | ![catppuccin_mocha](images/catppuccin_mocha.png) | 61 + | **_challenger_deep_**<br>[source](https://github.com/challenger-deep-theme/alacritty) | ![challenger_deep](images/challenger_deep.png) | 62 + | **_chicago95_** | ![chicago95](images/chicago95.png) | 63 + | **_citylights_**<br>[source](https://citylights.xyz/) | ![citylights](images/citylights.png) | 64 + | **_Cobalt2_**<br>[source](https://github.com/wesbos/cobalt2/tree/master/Cobalt2) | ![Cobalt2](images/Cobalt2.png) | 65 + | **_cyber_punk_neon_**<br>[source](https://github.com/Roboron3042/Cyberpunk-Neon) | ![cyber_punk_neon](images/cyber_punk_neon.png) | 66 + | **_dark_pastels_**<br>[source](https://invent.kde.org/utilities/konsole/-/blob/master/data/color-schemes/DarkPastels.colorscheme) | ![dark_pastels](images/dark_pastels.png) | 67 + | **_dark_pride_**<br>[source](https://github.com/kovidgoyal/kitty-themes/blob/master/themes/dark_pride.conf) | ![dark_pride](images/dark_pride.png) | 68 + | **_deep_space_** | ![depp_space](images/deep_space.png) | 69 + | **_doom_one_**<br>[source](https://github.com/hlissner/emacs-doom-themes) | ![doom_one](images/doom_one.png) | 70 + | **_dracula_**<br>[source](https://draculatheme.com) | ![dracula](images/dracula.png) | 71 + | **_dracula_plus_**<br>[source](https://draculatheme.com) | ![dracula_plus](images/dracula_plus.png) | 72 + | **_enfocado_dark_**<br>[source](https://github.com/wuelnerdotexe/vim-enfocado.git) |![enfocado_dark](images/enfocado_dark.png) | 73 + | **_enfocado_light_**<br>[source](https://github.com/wuelnerdotexe/vim-enfocado.git) |![enfocado_light](images/enfocado_light.png) | 74 + | **_everforest_dark_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_dark](images/everforest_dark.png) | 75 + | **_everforest_light_**<br>[source](https://github.com/sainnhe/everforest) | ![everforest_light](images/everforest_light.png) | 76 + | **_falcon_**<br>[source](https://github.com/fenetikm/falcon) | ![falcon](images/falcon.png) | 77 + | **_flat_remix_**<br>[source](https://github.com/Mayccoll/Gogh/blob/master/themes/flat-remix.sh) | ![flat_remix](images/flat_remix.png) | 78 + | **_flexoki_**<br>[source](https://github.com/kepano/flexoki/tree/main/alacritty) | ![flexoki](images/flexoki.png) | 79 + | **_github_dark_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_dark.yml) | ![github_dark](images/github_dark.png) | 80 + | **_github_dark_colorblind_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_dark_colorblind.yml) | ![github_dark_colorblind](images/github_dark_colorblind.png) | 81 + | **_github_dark_dimmed_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_dark_dimmed.yml) | ![github_dark_dimmed](images/github_dark_dimmed.png) | 82 + | **_github_dark_high_contrast_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_dark_high_contrast.yml)| ![github_dark_high_contrast](images/github_dark_high_contrast.png)| 83 + | **_github_dark_tritanopia_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_dark_tritanopia.yml) | ![github_dark_tritanopia](images/github_dark_tritanopia.png) | 84 + | **_github_light_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_light.yml) | ![github_light](images/github_light.png) | 85 + | **_github_light_colorblind_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_light_colorblind.yml)| ![github_light_colorblind](images/github_light_colorblind.png) | 86 + | **_github_light_high_contrast_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_light_high_contrast.yml)| ![github_light_high_contrast](images/github_light_high_contrast.png)| 87 + | **_github_light_tritanopia_**<br>[source](https://github.com/projekt0n/github-theme-contrib/blob/main/themes/alacritty/github_light_tritanopia.yml)| ![github_light_tritanopia](images/github_light_tritanopia.png) | 88 + | **_google_** | ![falcon](images/google.png) | 89 + | **_gotham_** | ![falcon](images/gotham.png) | 90 + | **_gnome_terminal_**<br>[source](https://gitlab.gnome.org/GNOME/gnome-terminal) | ![gnome_terminal](images/gnome_terminal.png) | 91 + | **_gruvbox_dark_**<br>[source](https://github.com/morhetz/gruvbox) | ![gruvbox_dark](images/gruvbox_dark.png) | 92 + | **_gruvbox_light_**<br>[source](https://github.com/morhetz/gruvbox) | ![gruvbox_light](images/gruvbox_light.png) | 93 + | **_gruvbox_material_hard_dark_**<br>[source](https://github.com/sainnhe/gruvbox-material) | ![gruvbox_material_hard_dark](images/gruvbox_material_hard_dark.png) | 94 + | **_gruvbox_material_hard_light_**<br>[source](https://github.com/sainnhe/gruvbox-material) | ![gruvbox_material_hard_light](images/gruvbox_material_hard_light.png) | 95 + | **_gruvbox_material_medium_dark_**<br>[source](https://github.com/sainnhe/gruvbox-material) | ![gruvbox_material_medium_dark](images/gruvbox_material_medium_dark.png) | 96 + | **_gruvbox_material_medium_light_**<br>[source](https://github.com/sainnhe/gruvbox-material) | ![gruvbox_material_medium_light](images/gruvbox_material_medium_light.png) | 97 + | **_hardhacker_**<br>[source](https://github.com/hardhackerlabs/theme-alacritty) | ![hardhacker](images/hardhacker.png) | 98 + | **_hatsunemiku_**<br>[source](https://github.com/4513ECHO/vim-colors-hatsunemiku/) | ![hatsunemiku](images/hatsunemiku.png) | 99 + | **_high_contrast_** | ![gruvbox_light](images/high_contrast.png) | 100 + | **_horizon-dark_**<br>[source](https://github.com/jolaleye/horizon-theme-vscode) | ![horizon-dark](images/horizon-dark.png) | 101 + | **_hyper_**<br>[source](https://hyper.is) | ![hyper](images/hyper.png) | 102 + | **_inferno_**<br>[source](https://github.com/hafiz-muhammad/inferno-alacritty-theme) | ![inferno](images/inferno.png) | 103 + | **_iris_**<br>[source](https://github.com/DioptricDesign/Iris) | ![iris](images/iris.png) | 104 + | **_iterm_** | ![iterm](images/iterm.png) | 105 + | **_kanagawa_dragon_**<br>[source](https://github.com/rebelot/kanagawa.nvim) | ![kanagawa_dragon](images/kanagawa_dragon.png) | 106 + | **_kanagawa_wave_**<br>[source](https://github.com/rebelot/kanagawa.nvim) | ![kanagawa_wave](images/kanagawa_wave.png) | 107 + | **_konsole_linux_** | ![iterm](images/konsole_linux.png) | 108 + | **_low_contrast_** | ![iterm](images/low_contrast.png) | 109 + | **_Mariana_**<br>[source](https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/alacritty/Mariana.yml) | ![iterm](images/mariana.png) | 110 + | **_marine_dark_**<br>[source](https://github.com/ProDeSquare/alacritty-colorschemes/blob/master/themes/marine_dark.yaml) | ![marine_dark](images/marine_dark.png) | 111 + | **_material_theme_**<br>[source](https://github.com/equinusocio/material-theme) | ![material_theme](images/material_theme.png) | 112 + | **_material_theme_mod_** | ![material_theme_mod](images/material_theme_mod.png) | 113 + | **_meliora_**<br>[source](https://github.com/ramojus/mellifluous.nvim) | ![meliora](images/meliora.png) | 114 + | **_midnight-haze_**<br>[source](https://github.com/hafiz-muhammad/midnight-haze-alacritty-theme) | ![midnight-haze](images/midnight-haze.png) | 115 + | **_monokai_**<br>[source](https://unpkg.com/browse/alacritty-themes@4.1.5/themes/Monokai.dark.yml) | ![monokai](images/monokai.png) | 116 + | **_monokai_charcoal_**<br>[source](https://github.com/dodeca12/Monokai-Charcoal-Theme-for-Alacritty/blob/main/monokai_charcoal_white.yaml) | ![monokai_charcoal](images/monokai-charcoal.png) | 117 + | **_monokai_pro_**<br>[source](https://gist.github.com/AlphaTechnolog/d1d5f6557f77f71519cb5713268da7dd) | ![monokai_pro](images/monokai_pro.png) | 118 + | **_moonlight_ii_vscode_**<br>[source](https://github.com/atomiks/moonlight-vscode-theme) | ![moonlight_ii_vscode](images/moonlight_ii_vscode.png) | 119 + | **_msx_**<br>[source](https://paulwratt.github.io/programmers-palettes/HW-MSX/HW-MSX-palettes.html) | ![msx](images/msx.png) | 120 + | **_nightfly_**<br>[source](https://github.com/bluz71/vim-nightfly-colors) | ![nightfly](images/nightfly.png) | 121 + | **_nightfox_**<br>[source](https://github.com/EdenEast/nightfox.nvim) | ![nightfox](images/nightfox.png) | 122 + | **_night_owl_**<br>[source](https://vscodethemes.com/e/sdras.night-owl/night-owl) | ![night_owl](images/night_owl.png) | 123 + | **_night_owlish_light_** | ![night_owlish_light](images/night_owlish_light.png) | 124 + | **_noctis-lux_**<br>[source](https://github.com/liviuschera/noctis) | ![noctis-lux](images/noctis-lux.png) | 125 + | **_nord_**<br>[source](https://github.com/arcticicestudio/nord) | ![nord](images/nord.png) | 126 + | **_nordic_**<br>[source](https://github.com/AlexvZyl/nordic.nvim) | ![nordic](images/nordic.png) | 127 + | **_nord_light_**<br>[source](https://github.com/nordtheme/alacritty/issues/28#issuecomment-1422225211) | ![nord](images/nord_light.png) | 128 + | **_oceanic_next_**<br>[source](https://github.com/voronianski/oceanic-next-color-scheme) | ![oceanic_next](images/oceanic_next.png) | 129 + | **_omni_**<br>[source](https://github.com/getomni/alacritty/blob/main/omni.yml) | ![omni](images/omni.png) | 130 + | **_one_dark_** | ![one_dark](images/one_dark.png) | 131 + | **_palenight_**<br>[source](https://github.com/JonathanSpeek/palenight-iterm2) | ![palenight](images/palenight.png) | 132 + | **_papercolor_dark_**<br>[source](https://github.com/NLKNguyen/papercolor-theme/blob/master/colors/PaperColor.vim#L126) | ![papercolor_dark](images/papercolor_dark.png) | 133 + | **_papercolor_light_**<br>[source](https://github.com/NLKNguyen/papercolor-theme/blob/master/colors/PaperColor.vim#L36) | ![papercolor_light](images/papercolor_light.png) | 134 + | **_papertheme_**<br>[source](https://github.com/s6muel/paper-theme/blob/main/themes/alacritty/paper-theme.yml) | ![papercolor_light](images/papertheme.png) | 135 + |**_pastel_dark_**<br>[source](https://github.com/gnachman/iTerm2/blob/01c280152acebfe123f56e0215a3c178297a0edc/plists/ColorPresets.plist#L3715-L3924)| ![pastel_dark](images/pastel_dark.png) | 136 + | **_pencil_dark_**<br>[source](https://github.com/mattly/iterm-colors-pencil) | ![pencil_dark](images/pencil_dark.png) | 137 + | **_pencil_light_**<br>[source](https://github.com/mattly/iterm-colors-pencil) | ![pencil_light](images/pencil_light.png) | 138 + | **_rainbow_** | ![rainbow](images/rainbow.png) | 139 + | **_remedy_dark_**<br>[source](https://github.com/robertrossmann/vscode-remedy) | ![remedy_dark](images/remedy_dark.png) | 140 + | **_rose-pine_**<br>[source](https://github.com/rose-pine/alacritty) | ![rose-pine](images/rose-pine.png) | 141 + | **_rose-pine-dawn_**<br>[source](https://github.com/rose-pine/alacritty) | ![rose-pine-dawn](images/rose-pine-dawn.png) | 142 + | **_rose-pine-moon_**<br>[source](https://github.com/rose-pine/alacritty) | ![rose-pine-moon](images/rose-pine-moon.png) | 143 + | **_snazzy_**<br>[source](https://github.com/sindresorhus/hyper-snazzy) | ![snazzy](images/snazzy.png) | 144 + | **seashells**<br>[source](https://raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/master/schemes/SeaShells.itermcolors) | ![seashells](images/seashells.png) | 145 + | **smoooooth**<br>[source](https://github.com/gnachman/iTerm2/blob/33945e63ad48ed80d6cc1adf7cbeb663217652d2/plists/ColorPresets.plist#L4345-L4685) | ![smoooooth](images/smoooooth.png) | 146 + | **_solarized_dark_**<br>[source](http://ethanschoonover.com/solarized) | ![solarized_dark](images/solarized_dark.png) | 147 + | **_solarized_light_**<br>[source](http://ethanschoonover.com/solarized) | ![solarized_light](images/solarized_light.png) | 148 + | **_solarized_osaka_**<br>[source](https://github.com/craftzdog/solarized-osaka.nvim) | ![solarized_osaka](images/solarized_osaka.png) | 149 + | **_taerminal_**<br>[source](https://github.com/cozywigwam/iterm-taerminal) | ![taerminal](images/taerminal.png) | 150 + | **_tango_dark_**<br>[source](https://github.com/GNOME/gnome-terminal/blob/18939a24d21d6b7c6edd57a00a3a8a48f3aecec5/src/profile-editor.c#L213) | ![tango_dark](images/tango_dark.png) | 151 + | **_tender_**<br>[source](https://github.com/huyvohcmc/tender-alacritty) | ![tender](images/tender.png) | 152 + | **_terminal_app_** | ![terminal_app](images/terminal_app.png) | 153 + | **_thelovelace_** | ![terminal_app](images/thelovelace.png) | 154 + | **_tokyo-night_**<br>[source](https://github.com/zatchheems/tokyo-night-alacritty-theme) | ![tokyo-night](images/tokyo-night.png) | 155 + | **_tokyo-night-storm_**<br>[source](https://github.com/zatchheems/tokyo-night-alacritty-theme) | ![tokyo-night-storm](images/tokyo-night-storm.png) | 156 + | **_tomorrow_night_**<br>[source](https://github.com/ChrisKempson/Tomorrow-Theme) | ![tomorrow_night](images/tomorrow_night.png) | 157 + | **_tomorrow_night_bright_**<br>[source](https://github.com/ChrisKempson/Tomorrow-Theme) | ![tomorrow_night_bright](images/tomorrow_night_bright.png) | 158 + | **_ubuntu_**<br>[source](https://design.ubuntu.com/brand/colour-palette/) | ![ubuntu](images/ubuntu.png) | 159 + | **_vesper_**<br>[source](https://github.com/raunofreiberg/vesper) | ![vesper](images/vesper.png) | 160 + | **_wombat_**<br>[source](https://github.com/djoyner/iTerm2-wombat) | ![wombat](images/wombat.png) | 161 + | **_xterm_** | ![xterm](images/xterm.png) | 162 + | **_zenburn_**<br>[source](https://github.com/jnurmine/Zenburn) | ![zenburn](images/zenburn.png) | 163 + 164 + ## Contributing 165 + 166 + Bug reports and pull requests are welcome on GitHub at the [alacritty-theme] 167 + repository. 168 + 169 + [alacritty-theme]: https://github.com/alacritty/alacritty-theme 170 + 171 + To add a new theme, just create a Pull Request with the following changes: 172 + 173 + - Add your theme to the `themes` directory with the `{theme}.toml` file format 174 + - Create a screenshot of your theme using the [`print_colors.sh`](./print_colors.sh) script 175 + - Add the screenshot to the `images` directory with the `{theme}.png` file format 176 + - Add your theme to the `README.md`, following alphabetical ordering 177 + 178 + ## Maintainers 179 + 180 + * **indrajit** - *Author* - [eendroroy](https://github.com/eendroroy) 181 + * **Christian Dürr** - *Maintainer* - [chrisduerr](https://github.com/chrisduerr) 182 + 183 + ## License 184 + 185 + The project is available as open source under the terms of the [Apache License, Version 2.0](LICENSE)
config/alacritty/themes/images/Cobalt2.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/afterglow.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/alabaster.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/alabaster_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/alacritty_0_12.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/argonaut.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/ashes_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/ashes_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/atom_one_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/aura.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/ayu_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/ayu_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/baitong.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/base16_default_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/blood_moon.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/bluish.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/breeze.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/campbell.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/carbonfox.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/catppuccin_frappe.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/catppuccin_latte.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/catppuccin_macchiato.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/catppuccin_mocha.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/challenger_deep.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/chicago95.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/citylights.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/cyber_punk_neon.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/dark_pastels.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/dark_pride.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/deep_space.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/doom_one.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/dracula.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/dracula_plus.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/enfocado_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/enfocado_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/everforest_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/everforest_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/falcon.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/flat_remix.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/flexoki.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_dark_colorblind.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_dark_default.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_dark_dimmed.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_dark_high_contrast.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_dark_tritanopia.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_light_colorblind.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_light_default.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_light_high_contrast.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/github_light_tritanopia.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gnome_terminal.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/google.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gotham.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gruvbox_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gruvbox_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gruvbox_material_hard_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gruvbox_material_hard_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gruvbox_material_medium_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/gruvbox_material_medium_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/hardhacker.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/hatsunemiku.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/high_contrast.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/horizon-dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/hyper.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/inferno.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/iris.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/iterm.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/kanagawa_dragon.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/kanagawa_wave.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/konsole_linux.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/low_contrast.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/mariana.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/marine_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/material_theme.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/material_theme_mod.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/meliora.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/midnight-haze.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/monokai-charcoal.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/monokai.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/monokai_pro.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/moonlight_ii_vscode.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/msx.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/night_owl.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/night_owlish_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/nightfly.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/nightfox.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/noctis-lux.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/nord.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/nord_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/nordic.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/oceanic_next.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/omni.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/one_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/palenight.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/papercolor_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/papercolor_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/papertheme.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/pastel_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/pencil_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/pencil_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/rainbow.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/remedy_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/rose-pine-dawn.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/rose-pine-moon.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/rose-pine.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/seashells.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/smoooooth.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/snazzy.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/solarized_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/solarized_light.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/solarized_osaka.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/taerminal.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/tango_dark.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/tender.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/terminal_app.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/thelovelace.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/tokyo-night-storm.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/tokyo-night.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/tomorrow_night.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/tomorrow_night_bright.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/ubuntu.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/vesper.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/wombat.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/xterm.png

This is a binary file and will not be displayed.

config/alacritty/themes/images/zenburn.png

This is a binary file and will not be displayed.

+10
config/alacritty/themes/print_colors.sh
··· 1 + #!/usr/bin/env sh 2 + 3 + printf "|039| \033[39mDefault \033[m |049| \033[49mDefault \033[m |037| \033[37mLight gray \033[m |047| \033[47mLight gray \033[m\n" 4 + printf "|030| \033[30mBlack \033[m |040| \033[40mBlack \033[m |090| \033[90mDark gray \033[m |100| \033[100mDark gray \033[m\n" 5 + printf "|031| \033[31mRed \033[m |041| \033[41mRed \033[m |091| \033[91mLight red \033[m |101| \033[101mLight red \033[m\n" 6 + printf "|032| \033[32mGreen \033[m |042| \033[42mGreen \033[m |092| \033[92mLight green \033[m |102| \033[102mLight green \033[m\n" 7 + printf "|033| \033[33mYellow \033[m |043| \033[43mYellow \033[m |093| \033[93mLight yellow \033[m |103| \033[103mLight yellow \033[m\n" 8 + printf "|034| \033[34mBlue \033[m |044| \033[44mBlue \033[m |094| \033[94mLight blue \033[m |104| \033[104mLight blue \033[m\n" 9 + printf "|035| \033[35mMagenta \033[m |045| \033[45mMagenta \033[m |095| \033[95mLight magenta \033[m |105| \033[105mLight magenta \033[m\n" 10 + printf "|036| \033[36mCyan \033[m |046| \033[46mCyan \033[m |096| \033[96mLight cyan \033[m |106| \033[106mLight cyan \033[m\n"
+33
config/alacritty/themes/themes/Cobalt2.toml
··· 1 + # From the famous Cobalt2 sublime theme 2 + # Source https//github.com/wesbos/cobalt2/tree/master/Cobalt2 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#122637' 7 + foreground = '#ffffff' 8 + 9 + [colors.cursor] 10 + text = '#122637' 11 + cursor = '#f0cb09' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#000000' 16 + red = '#ff0000' 17 + green = '#37dd21' 18 + yellow = '#fee409' 19 + blue = '#1460d2' 20 + magenta = '#ff005d' 21 + cyan = '#00bbbb' 22 + white = '#bbbbbb' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#545454' 27 + red = '#f40d17' 28 + green = '#3bcf1d' 29 + yellow = '#ecc809' 30 + blue = '#5555ff' 31 + magenta = '#ff55ff' 32 + cyan = '#6ae3f9' 33 + white = '#ffffff'
+39
config/alacritty/themes/themes/Mariana.toml
··· 1 + # Mariana (ported from Sublime Text 4) 2 + # Source https//github.com/mbadolato/iTerm2-Color-Schemes/blob/master/alacritty/Mariana.yml 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#343d46' 7 + foreground = '#d8dee9' 8 + 9 + # Cursor colors 10 + [colors.cursor] 11 + cursor = '#fcbb6a' 12 + text = '#ffffff' 13 + 14 + # Normal colors 15 + [colors.normal] 16 + black = '#000000' 17 + blue = '#6699cc' 18 + cyan = '#5fb4b4' 19 + green = '#99c794' 20 + magenta = '#c695c6' 21 + red = '#ec5f66' 22 + white = '#f7f7f7' 23 + yellow = '#f9ae58' 24 + 25 + # Bright colors 26 + [colors.bright] 27 + black = '#333333' 28 + blue = '#85add6' 29 + cyan = '#82c4c4' 30 + green = '#acd1a8' 31 + magenta = '#d8b6d8' 32 + red = '#f97b58' 33 + white = '#ffffff' 34 + yellow = '#fac761' 35 + 36 + # Selection colors 37 + [colors.selection] 38 + background = '#4e5a65' 39 + text = '#d8dee9'
+45
config/alacritty/themes/themes/afterglow.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#2c2c2c' 4 + foreground = '#d6d6d6' 5 + 6 + dim_foreground = '#dbdbdb' 7 + bright_foreground = '#d9d9d9' 8 + 9 + # Cursor colors 10 + [colors.cursor] 11 + text = '#2c2c2c' 12 + cursor = '#d9d9d9' 13 + 14 + # Normal colors 15 + [colors.normal] 16 + black = '#1c1c1c' 17 + red = '#bc5653' 18 + green = '#909d63' 19 + yellow = '#ebc17a' 20 + blue = '#7eaac7' 21 + magenta = '#aa6292' 22 + cyan = '#86d3ce' 23 + white = '#cacaca' 24 + 25 + # Bright colors 26 + [colors.bright] 27 + black = '#636363' 28 + red = '#bc5653' 29 + green = '#909d63' 30 + yellow = '#ebc17a' 31 + blue = '#7eaac7' 32 + magenta = '#aa6292' 33 + cyan = '#86d3ce' 34 + white = '#f7f7f7' 35 + 36 + # Dim colors 37 + [colors.dim] 38 + black = '#232323' 39 + red = '#74423f' 40 + green = '#5e6547' 41 + yellow = '#8b7653' 42 + blue = '#556b79' 43 + magenta = '#6e4962' 44 + cyan = '#5c8482' 45 + white = '#828282'
+30
config/alacritty/themes/themes/alabaster.toml
··· 1 + # Colors (Alabaster) 2 + # author tonsky 3 + 4 + [colors.primary] 5 + background = '#F7F7F7' 6 + foreground = '#434343' 7 + 8 + [colors.cursor] 9 + text = '#F7F7F7' 10 + cursor = '#434343' 11 + 12 + [colors.normal] 13 + black = '#000000' 14 + red = '#AA3731' 15 + green = '#448C27' 16 + yellow = '#CB9000' 17 + blue = '#325CC0' 18 + magenta = '#7A3E9D' 19 + cyan = '#0083B2' 20 + white = '#BBBBBB' 21 + 22 + [colors.bright] 23 + black = '#777777' 24 + red = '#F05050' 25 + green = '#60CB00' 26 + yellow = '#FFBC5D' 27 + blue = '#007ACC' 28 + magenta = '#E64CE6' 29 + cyan = '#00AACB' 30 + white = '#FFFFFF'
+30
config/alacritty/themes/themes/alabaster_dark.toml
··· 1 + # Colors (Alabaster Dark) 2 + # author tonsky 3 + 4 + [colors.primary] 5 + background = '#0E1415' 6 + foreground = '#CECECE' 7 + 8 + [colors.cursor] 9 + text = '#0E1415' 10 + cursor = '#CECECE' 11 + 12 + [colors.normal] 13 + black = '#0E1415' 14 + red = '#e25d56' 15 + green = '#73ca50' 16 + yellow = '#e9bf57' 17 + blue = '#4a88e4' 18 + magenta = '#915caf' 19 + cyan = '#23acdd' 20 + white = '#f0f0f0' 21 + 22 + [colors.bright] 23 + black = '#777777' 24 + red = '#f36868' 25 + green = '#88db3f' 26 + yellow = '#f0bf7a' 27 + blue = '#6f8fdb' 28 + magenta = '#e987e9' 29 + cyan = '#4ac9e2' 30 + white = '#FFFFFF'
+44
config/alacritty/themes/themes/alacritty_0_12.toml
··· 1 + # Alacritty's default color scheme pre-0.13 (based on tomorrow_night) 2 + # https://github.com/alacritty/alacritty/blob/v0.12.3/alacritty/src/config/color.rs 3 + 4 + [colors.primary] 5 + foreground = "#c5c8c6" 6 + background = "#1d1f21" 7 + 8 + [colors.normal] 9 + black = "#1d1f21" 10 + red = "#cc6666" 11 + green = "#b5bd68" 12 + yellow = "#f0c674" 13 + blue = "#81a2be" 14 + magenta = "#b294bb" 15 + cyan = "#8abeb7" 16 + white = "#c5c8c6" 17 + 18 + [colors.bright] 19 + black = "#666666" 20 + red = "#d54e53" 21 + green = "#b9ca4a" 22 + yellow = "#e7c547" 23 + blue = "#7aa6da" 24 + magenta = "#c397d8" 25 + cyan = "#70c0b1" 26 + white = "#eaeaea" 27 + 28 + [colors.dim] 29 + black = "#131415" 30 + red = "#864343" 31 + green = "#777c44" 32 + yellow = "#9e824c" 33 + blue = "#556a7d" 34 + magenta = "#75617b" 35 + cyan = "#5b7d78" 36 + white = "#828482" 37 + 38 + [colors.hints] 39 + start = { foreground = "#1d1f21", background = "#e9ff5e" } 40 + end = { foreground = "#e9ff5e", background = "#1d1f21" } 41 + 42 + [colors.search] 43 + matches = { foreground = "#000000", background = "#ffffff" } 44 + focused_match = { foreground = "#ffffff", background = "#000000" }
+31
config/alacritty/themes/themes/argonaut.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#292C3E' 4 + foreground = '#EBEBEB' 5 + 6 + # Cursor colors 7 + [colors.cursor] 8 + text = '#EBEBEB' 9 + cursor = '#FF261E' 10 + 11 + # Normal colors 12 + [colors.normal] 13 + black = '#0d0d0d' 14 + red = '#FF301B' 15 + green = '#A0E521' 16 + yellow = '#FFC620' 17 + blue = '#1BA6FA' 18 + magenta = '#8763B8' 19 + cyan = '#21DEEF' 20 + white = '#EBEBEB' 21 + 22 + # Bright colors 23 + [colors.bright] 24 + black = '#6D7070' 25 + red = '#FF4352' 26 + green = '#B8E466' 27 + yellow = '#FFD750' 28 + blue = '#1BA6FA' 29 + magenta = '#A578EA' 30 + cyan = '#73FBF1' 31 + white = '#FEFEF8'
+27
config/alacritty/themes/themes/ashes_dark.toml
··· 1 + [colors.primary] 2 + background = '#1c2023' 3 + foreground = '#c7ccd1' 4 + 5 + [colors.cursor] 6 + text = '#1c2023' 7 + cursor = '#c7ccd1' 8 + 9 + [colors.normal] 10 + black = '#1c2023' 11 + red = '#c7ae95' 12 + green = '#95c7ae' 13 + yellow = '#aec795' 14 + blue = '#ae95c7' 15 + magenta = '#c795ae' 16 + cyan = '#95aec7' 17 + white = '#c7ccd1' 18 + 19 + [colors.bright] 20 + black = '#747c84' 21 + red = '#c7ae95' 22 + green = '#95c7ae' 23 + yellow = '#aec795' 24 + blue = '#ae95c7' 25 + magenta = '#c795ae' 26 + cyan = '#95aec7' 27 + white = '#f3f4f5'
+27
config/alacritty/themes/themes/ashes_light.toml
··· 1 + [colors.primary] 2 + background = '#f3f4f5' 3 + foreground = '#565e65' 4 + 5 + [colors.cursor] 6 + text = '#f3f4f5' 7 + cursor = '#565e65' 8 + 9 + [colors.normal] 10 + black = '#1c2023' 11 + red = '#c7ae95' 12 + green = '#95c7ae' 13 + yellow = '#aec795' 14 + blue = '#ae95c7' 15 + magenta = '#c795ae' 16 + cyan = '#95aec7' 17 + white = '#c7ccd1' 18 + 19 + [colors.bright] 20 + black = '#747c84' 21 + red = '#c7ae95' 22 + green = '#95c7ae' 23 + yellow = '#aec795' 24 + blue = '#ae95c7' 25 + magenta = '#c795ae' 26 + cyan = '#95aec7' 27 + white = '#f3f4f5'
+23
config/alacritty/themes/themes/atom_one_light.toml
··· 1 + [colors.primary] 2 + background = '#f8f8f8' 3 + foreground = '#2a2b33' 4 + 5 + [colors.normal] 6 + black = '#000000' 7 + red = '#de3d35' 8 + green = '#3e953a' 9 + yellow = '#d2b67b' 10 + blue = '#2f5af3' 11 + magenta = '#a00095' 12 + cyan = '#3e953a' 13 + white = '#bbbbbb' 14 + 15 + [colors.bright] 16 + black = '#000000' 17 + red = '#de3d35' 18 + green = '#3e953a' 19 + yellow = '#d2b67b' 20 + blue = '#2f5af3' 21 + magenta = '#a00095' 22 + cyan = '#3e953a' 23 + white = '#ffffff'
+30
config/alacritty/themes/themes/aura.toml
··· 1 + [colors.primary] 2 + background = "#15141b" 3 + foreground = "#edecee" 4 + 5 + [colors.cursor] 6 + cursor = "#a277ff" 7 + 8 + [colors.selection] 9 + text = "CellForeground" 10 + background = "#29263c" 11 + 12 + [colors.normal] 13 + black = "#110f18" 14 + red = "#ff6767" 15 + green = "#61ffca" 16 + yellow = "#ffca85" 17 + blue = "#a277ff" 18 + magenta = "#a277ff" 19 + cyan = "#61ffca" 20 + white = "#edecee" 21 + 22 + [colors.bright] 23 + black = "#4d4d4d" 24 + red = "#ff6767" 25 + green = "#61ffca" 26 + yellow = "#ffca85" 27 + blue = "#a277ff" 28 + magenta = "#a277ff" 29 + cyan = "#61ffca" 30 + white = "#edecee"
+28
config/alacritty/themes/themes/ayu_dark.toml
··· 1 + # Colors (Ayu Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0A0E14' 6 + foreground = '#B3B1AD' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#01060E' 11 + red = '#EA6C73' 12 + green = '#91B362' 13 + yellow = '#F9AF4F' 14 + blue = '#53BDFA' 15 + magenta = '#FAE994' 16 + cyan = '#90E1C6' 17 + white = '#C7C7C7' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#686868' 22 + red = '#F07178' 23 + green = '#C2D94C' 24 + yellow = '#FFB454' 25 + blue = '#59C2FF' 26 + magenta = '#FFEE99' 27 + cyan = '#95E6CB' 28 + white = '#FFFFFF'
+28
config/alacritty/themes/themes/ayu_light.toml
··· 1 + # Colors (Ayu Light) 2 + 3 + # Default colors - taken from ayu-colors 4 + [colors.primary] 5 + background = '#FCFCFC' 6 + foreground = '#5C6166' 7 + 8 + # Normal colors - taken from ayu-iTerm 9 + [colors.normal] 10 + black = '#010101' 11 + red = '#e7666a' 12 + green = '#80ab24' 13 + yellow = '#eba54d' 14 + blue = '#4196df' 15 + magenta = '#9870c3' 16 + cyan = '#51b891' 17 + white = '#c1c1c1' 18 + 19 + # Bright colors - pastel lighten 0.1 <normal> except black lighten with 0.2 20 + [colors.bright] 21 + black = '#343434' 22 + red = '#ee9295' 23 + green = '#9fd32f' 24 + yellow = '#f0bc7b' 25 + blue = '#6daee6' 26 + magenta = '#b294d2' 27 + cyan = '#75c7a8' 28 + white = '#dbdbdb'
+55
config/alacritty/themes/themes/baitong.toml
··· 1 + # Colors (Baitong) 2 + 3 + [colors.primary] 4 + background = '#112a2a' 5 + foreground = '#33ff33' 6 + 7 + [colors.cursor] 8 + text = '#112a2a' 9 + cursor = '#ff00ff' 10 + 11 + [colors.vi_mode_cursor] 12 + text = '#112a2a' 13 + cursor = '#ff00ff' 14 + 15 + [colors.search] 16 + matches = { foreground = '#000000', background = '#1AE642' } 17 + focused_match = { foreground = '#000000', background = '#ff00ff' } 18 + 19 + [colors.hints] 20 + start = { foreground = '#1d1f21', background = '#1AE642' } 21 + end = { foreground = '#1AE642', background = '#1d1f21' } 22 + 23 + [colors.line_indicator] 24 + foreground = '#33ff33' 25 + background = '#1d1f21' 26 + 27 + [colors.footer_bar] 28 + background = '#731d8b' 29 + foreground = '#ffffff' 30 + 31 + [colors.selection] 32 + text = '#112a2a' 33 + background = '#1AE642' 34 + 35 + # Normal colors 36 + [colors.normal] 37 + black = '#000000' 38 + red = '#f77272' 39 + green = '#33ff33' 40 + yellow = '#1AE642' 41 + blue = '#68FDFE' 42 + magenta = '#ff66ff' 43 + cyan = '#87CEFA' 44 + white = '#dbdbd9' 45 + 46 + # Bright colors 47 + [colors.bright] 48 + black = '#ffffff' 49 + red = '#f77272' 50 + green = '#33ff33' 51 + yellow = '#1AE642' 52 + blue = '#68FDFE' 53 + magenta = '#ff66ff' 54 + cyan = '#68FDFE' 55 + white = '#dbdbd9'
+32
config/alacritty/themes/themes/base16_default_dark.toml
··· 1 + # Colors (Base16 Default Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#181818' 6 + foreground = '#d8d8d8' 7 + 8 + [colors.cursor] 9 + text = '#181818' 10 + cursor = '#d8d8d8' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#181818' 15 + red = '#ab4642' 16 + green = '#a1b56c' 17 + yellow = '#f7ca88' 18 + blue = '#7cafc2' 19 + magenta = '#ba8baf' 20 + cyan = '#86c1b9' 21 + white = '#d8d8d8' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#585858' 26 + red = '#ab4642' 27 + green = '#a1b56c' 28 + yellow = '#f7ca88' 29 + blue = '#7cafc2' 30 + magenta = '#ba8baf' 31 + cyan = '#86c1b9' 32 + white = '#f8f8f8'
+28
config/alacritty/themes/themes/blood_moon.toml
··· 1 + # Colors (Blood Moon) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#10100E' 6 + foreground = '#C6C6C4' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#10100E' 11 + red = '#C40233' 12 + green = '#009F6B' 13 + yellow = '#FFD700' 14 + blue = '#0087BD' 15 + magenta = '#9A4EAE' 16 + cyan = '#20B2AA' 17 + white = '#C6C6C4' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#696969' 22 + red = '#FF2400' 23 + green = '#03C03C' 24 + yellow = '#FDFF00' 25 + blue = '#007FFF' 26 + magenta = '#FF1493' 27 + cyan = '#00CCCC' 28 + white = '#FFFAFA'
+26
config/alacritty/themes/themes/bluish.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#2c3640' 4 + foreground = '#297dd3' 5 + 6 + # Normal colors 7 + [colors.normal] 8 + black = '#0b0b0c' 9 + red = '#377fc4' 10 + green = '#2691e7' 11 + yellow = '#2090c1' 12 + blue = '#2c5e87' 13 + magenta = '#436280' 14 + cyan = '#547aa2' 15 + white = '#536679' 16 + 17 + # Bright colors 18 + [colors.bright] 19 + black = '#23272c' 20 + red = '#66a5cc' 21 + green = '#59b0f2' 22 + yellow = '#4bb0d3' 23 + blue = '#487092' 24 + magenta = '#50829e' 25 + cyan = '#658795' 26 + white = '#4d676b'
+42
config/alacritty/themes/themes/breeze.toml
··· 1 + # KDE Breeze (Ported from Konsole) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#232627' 6 + foreground = '#fcfcfc' 7 + 8 + dim_foreground = '#eff0f1' 9 + bright_foreground = '#ffffff' 10 + 11 + # Normal colors 12 + [colors.normal] 13 + black = '#232627' 14 + red = '#ed1515' 15 + green = '#11d116' 16 + yellow = '#f67400' 17 + blue = '#1d99f3' 18 + magenta = '#9b59b6' 19 + cyan = '#1abc9c' 20 + white = '#fcfcfc' 21 + 22 + # Bright colors 23 + [colors.bright] 24 + black = '#7f8c8d' 25 + red = '#c0392b' 26 + green = '#1cdc9a' 27 + yellow = '#fdbc4b' 28 + blue = '#3daee9' 29 + magenta = '#8e44ad' 30 + cyan = '#16a085' 31 + white = '#ffffff' 32 + 33 + # Dim colors 34 + [colors.dim] 35 + black = '#31363b' 36 + red = '#783228' 37 + green = '#17a262' 38 + yellow = '#b65619' 39 + blue = '#1b668f' 40 + magenta = '#614a73' 41 + cyan = '#186c60' 42 + white = '#63686d'
+28
config/alacritty/themes/themes/campbell.toml
··· 1 + # Campbell (Windows 10 default) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0c0c0c' 6 + foreground = '#cccccc' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#0c0c0c' 11 + red = '#c50f1f' 12 + green = '#13a10e' 13 + yellow = '#c19c00' 14 + blue = '#0037da' 15 + magenta = '#881798' 16 + cyan = '#3a96dd' 17 + white = '#cccccc' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#767676' 22 + red = '#e74856' 23 + green = '#16c60c' 24 + yellow = '#f9f1a5' 25 + blue = '#3b78ff' 26 + magenta = '#b4009e' 27 + cyan = '#61d6d6' 28 + white = '#f2f2f2'
+26
config/alacritty/themes/themes/carbonfox.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#161616' 4 + foreground = '#f2f4f8' 5 + 6 + # Normal colors 7 + [colors.normal] 8 + black = '#282828' 9 + red = '#ee5396' 10 + green = '#25be6a' 11 + yellow = '#08bdba' 12 + blue = '#78a9ff' 13 + magenta = '#be95ff' 14 + cyan = '#33b1ff' 15 + white = '#dfdfe0' 16 + 17 + # Bright colors 18 + [colors.bright] 19 + black = '#484848' 20 + red = '#f16da6' 21 + green = '#46c880' 22 + yellow = '#2dc7c4' 23 + blue = '#8cb6ff' 24 + magenta = '#c8a5ff' 25 + cyan = '#52bdff' 26 + white = '#e4e4e5'
+39
config/alacritty/themes/themes/catppuccin.toml
··· 1 + # Catppuccino theme scheme for Alacritty 2 + 3 + [colors.primary] 4 + background = '#1E1E2E' 5 + foreground = '#D6D6D6' 6 + 7 + [colors.cursor] 8 + text = '#1E1E2E' 9 + cursor = '#D9D9D9' 10 + 11 + [colors.normal] 12 + black = '#181A1F' 13 + red = '#E86671' 14 + green = '#98C379' 15 + yellow = '#E5C07B' 16 + blue = '#61AFEF' 17 + magenta = '#C678DD' 18 + cyan = '#54AFBC' 19 + white = '#ABB2BF' 20 + 21 + [colors.bright] 22 + black = '#5C6370' 23 + red = '#E86671' 24 + green = '#98C379' 25 + yellow = '#E5C07B' 26 + blue = '#61AFEF' 27 + magenta = '#C678DD' 28 + cyan = '#54AFBC' 29 + white = '#F7F7F7' 30 + 31 + [colors.dim] 32 + black = '#5C6370' 33 + red = '#74423F' 34 + green = '#98C379' 35 + yellow = '#E5C07B' 36 + blue = '#61AFEF' 37 + magenta = '#6E4962' 38 + cyan = '#5C8482' 39 + white = '#828282'
+73
config/alacritty/themes/themes/catppuccin_frappe.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#303446' # base 4 + foreground = '#C6D0F5' # text 5 + # Bright and dim foreground colors 6 + dim_foreground = '#C6D0F5' # text 7 + bright_foreground = '#C6D0F5' # text 8 + 9 + # Cursor colors 10 + [colors.cursor] 11 + text = '#303446' # base 12 + cursor = '#F2D5CF' # rosewater 13 + 14 + [colors.vi_mode_cursor] 15 + text = '#303446' # base 16 + cursor = '#BABBF1' # lavender 17 + 18 + # Search colors 19 + [colors.search.matches] 20 + foreground = '#303446' # base 21 + background = '#A5ADCE' # subtext0 22 + [colors.search.focused_match] 23 + foreground = '#303446' # base 24 + background = '#A6D189' # green 25 + [colors.footer_bar] 26 + foreground = '#303446' # base 27 + background = '#A5ADCE' # subtext0 28 + 29 + # Keyboard regex hints 30 + [colors.hints.start] 31 + foreground = '#303446' # base 32 + background = '#E5C890' # yellow 33 + [colors.hints.end] 34 + foreground = '#303446' # base 35 + background = '#A5ADCE' # subtext0 36 + 37 + # Selection colors 38 + [colors.selection] 39 + text = '#303446' # base 40 + background = '#F2D5CF' # rosewater 41 + 42 + # Normal colors 43 + [colors.normal] 44 + black = '#51576D' # surface1 45 + red = '#E78284' # red 46 + green = '#A6D189' # green 47 + yellow = '#E5C890' # yellow 48 + blue = '#8CAAEE' # blue 49 + magenta = '#F4B8E4' # pink 50 + cyan = '#81C8BE' # teal 51 + white = '#B5BFE2' # subtext1 52 + 53 + # Bright colors 54 + [colors.bright] 55 + black = '#626880' # surface2 56 + red = '#E78284' # red 57 + green = '#A6D189' # green 58 + yellow = '#E5C890' # yellow 59 + blue = '#8CAAEE' # blue 60 + magenta = '#F4B8E4' # pink 61 + cyan = '#81C8BE' # teal 62 + white = '#A5ADCE' # subtext0 63 + 64 + # Dim colors 65 + [colors.dim] 66 + black = '#51576D' # surface1 67 + red = '#E78284' # red 68 + green = '#A6D189' # green 69 + yellow = '#E5C890' # yellow 70 + blue = '#8CAAEE' # blue 71 + magenta = '#F4B8E4' # pink 72 + cyan = '#81C8BE' # teal 73 + white = '#B5BFE2' # subtext1
+76
config/alacritty/themes/themes/catppuccin_latte.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#EFF1F5' # base 4 + foreground = '#4C4F69' # text 5 + # Bright and dim foreground colors 6 + dim_foreground = '#4C4F69' # text 7 + bright_foreground = '#4C4F69' # text 8 + 9 + # Cursor colors 10 + [colors.cursor] 11 + text = '#EFF1F5' # base 12 + cursor = '#DC8A78' # rosewater 13 + 14 + [colors.vi_mode_cursor] 15 + text = '#EFF1F5' # base 16 + cursor = '#7287FD' # lavender 17 + 18 + # Search colors 19 + [colors.search.matches] 20 + foreground = '#EFF1F5' # base 21 + background = '#6C6F85' # subtext0 22 + 23 + [colors.search.focused_match] 24 + foreground = '#EFF1F5' # base 25 + background = '#40A02B' # green 26 + 27 + [colors.footer_bar] 28 + foreground = '#EFF1F5' # base 29 + background = '#6C6F85' # subtext0 30 + 31 + # Keyboard regex hints 32 + [colors.hints.start] 33 + foreground = '#EFF1F5' # base 34 + background = '#DF8E1D' # yellow 35 + 36 + [colors.hints.end] 37 + foreground = '#EFF1F5' # base 38 + background = '#6C6F85' # subtext0 39 + 40 + # Selection colors 41 + [colors.selection] 42 + text = '#EFF1F5' # base 43 + background = '#DC8A78' # rosewater 44 + 45 + # Normal colors 46 + [colors.normal] 47 + black = '#5C5F77' # subtext1 48 + red = '#D20F39' # red 49 + green = '#40A02B' # green 50 + yellow = '#DF8E1D' # yellow 51 + blue = '#1E66F5' # blue 52 + magenta = '#EA76CB' # pink 53 + cyan = '#179299' # teal 54 + white = '#ACB0BE' # surface2 55 + 56 + # Bright colors 57 + [colors.bright] 58 + black = '#6C6F85' # subtext0 59 + red = '#D20F39' # red 60 + green = '#40A02B' # green 61 + yellow = '#DF8E1D' # yellow 62 + blue = '#1E66F5' # blue 63 + magenta = '#EA76CB' # pink 64 + cyan = '#179299' # teal 65 + white = '#BCC0CC' # surface1 66 + 67 + # Dim colors 68 + [colors.dim] 69 + black = '#5C5F77' # subtext1 70 + red = '#D20F39' # red 71 + green = '#40A02B' # green 72 + yellow = '#DF8E1D' # yellow 73 + blue = '#1E66F5' # blue 74 + magenta = '#EA76CB' # pink 75 + cyan = '#179299' # teal 76 + white = '#ACB0BE' # surface2
+76
config/alacritty/themes/themes/catppuccin_macchiato.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#24273A' # base 4 + foreground = '#CAD3F5' # text 5 + # Bright and dim foreground colors 6 + dim_foreground = '#CAD3F5' # text 7 + bright_foreground = '#CAD3F5' # text 8 + 9 + # Cursor colors 10 + [colors.cursor] 11 + text = '#24273A' # base 12 + cursor = '#F4DBD6' # rosewater 13 + 14 + [colors.vi_mode_cursor] 15 + text = '#24273A' # base 16 + cursor = '#B7BDF8' # lavender 17 + 18 + # Search colors 19 + [colors.search.matches] 20 + foreground = '#24273A' # base 21 + background = '#A5ADCB' # subtext0 22 + 23 + [colors.search.focused_match] 24 + foreground = '#24273A' # base 25 + background = '#A6DA95' # green 26 + 27 + [colors.footer_bar] 28 + foreground = '#24273A' # base 29 + background = '#A5ADCB' # subtext0 30 + 31 + # Keyboard regex hints 32 + [colors.hints.start] 33 + foreground = '#24273A' # base 34 + background = '#EED49F' # yellow 35 + 36 + [colors.hints.end] 37 + foreground = '#24273A' # base 38 + background = '#A5ADCB' # subtext0 39 + 40 + # Selection colors 41 + [colors.selection] 42 + text = '#24273A' # base 43 + background = '#F4DBD6' # rosewater 44 + 45 + # Normal colors 46 + [colors.normal] 47 + black = '#494D64' # surface1 48 + red = '#ED8796' # red 49 + green = '#A6DA95' # green 50 + yellow = '#EED49F' # yellow 51 + blue = '#8AADF4' # blue 52 + magenta = '#F5BDE6' # pink 53 + cyan = '#8BD5CA' # teal 54 + white = '#B8C0E0' # subtext1 55 + 56 + # Bright colors 57 + [colors.bright] 58 + black = '#5B6078' # surface2 59 + red = '#ED8796' # red 60 + green = '#A6DA95' # green 61 + yellow = '#EED49F' # yellow 62 + blue = '#8AADF4' # blue 63 + magenta = '#F5BDE6' # pink 64 + cyan = '#8BD5CA' # teal 65 + white = '#A5ADCB' # subtext0 66 + 67 + # Dim colors 68 + [colors.dim] 69 + black = '#494D64' # surface1 70 + red = '#ED8796' # red 71 + green = '#A6DA95' # green 72 + yellow = '#EED49F' # yellow 73 + blue = '#8AADF4' # blue 74 + magenta = '#F5BDE6' # pink 75 + cyan = '#8BD5CA' # teal 76 + white = '#B8C0E0' # subtext1
+75
config/alacritty/themes/themes/catppuccin_mocha.toml
··· 1 + [colors.primary] 2 + background = '#1E1E2E' # base 3 + foreground = '#CDD6F4' # text 4 + # Bright and dim foreground colors 5 + dim_foreground = '#CDD6F4' # text 6 + bright_foreground = '#CDD6F4' # text 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#1E1E2E' # base 11 + cursor = '#F5E0DC' # rosewater 12 + 13 + [colors.vi_mode_cursor] 14 + text = '#1E1E2E' # base 15 + cursor = '#B4BEFE' # lavender 16 + 17 + # Search colors 18 + [colors.search.matches] 19 + foreground = '#1E1E2E' # base 20 + background = '#A6ADC8' # subtext0 21 + 22 + [colors.search.focused_match] 23 + foreground = '#1E1E2E' # base 24 + background = '#A6E3A1' # green 25 + 26 + [colors.footer_bar] 27 + foreground = '#1E1E2E' # base 28 + background = '#A6ADC8' # subtext0 29 + 30 + # Keyboard regex hints 31 + [colors.hints.start] 32 + foreground = '#1E1E2E' # base 33 + background = '#F9E2AF' # yellow 34 + 35 + [colors.hints.end] 36 + foreground = '#1E1E2E' # base 37 + background = '#A6ADC8' # subtext0 38 + 39 + # Selection colors 40 + [colors.selection] 41 + text = '#1E1E2E' # base 42 + background = '#F5E0DC' # rosewater 43 + 44 + # Normal colors 45 + [colors.normal] 46 + black = '#45475A' # surface1 47 + red = '#F38BA8' # red 48 + green = '#A6E3A1' # green 49 + yellow = '#F9E2AF' # yellow 50 + blue = '#89B4FA' # blue 51 + magenta = '#F5C2E7' # pink 52 + cyan = '#94E2D5' # teal 53 + white = '#BAC2DE' # subtext1 54 + 55 + # Bright colors 56 + [colors.bright] 57 + black = '#585B70' # surface2 58 + red = '#F38BA8' # red 59 + green = '#A6E3A1' # green 60 + yellow = '#F9E2AF' # yellow 61 + blue = '#89B4FA' # blue 62 + magenta = '#F5C2E7' # pink 63 + cyan = '#94E2D5' # teal 64 + white = '#A6ADC8' # subtext0 65 + 66 + # Dim colors 67 + [colors.dim] 68 + black = '#45475A' # surface1 69 + red = '#F38BA8' # red 70 + green = '#A6E3A1' # green 71 + yellow = '#F9E2AF' # yellow 72 + blue = '#89B4FA' # blue 73 + magenta = '#F5C2E7' # pink 74 + cyan = '#94E2D5' # teal 75 + white = '#BAC2DE' # subtext1
+32
config/alacritty/themes/themes/challenger_deep.toml
··· 1 + # Colors (Challenger Deep) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1e1c31' 6 + foreground = '#cbe1e7' 7 + 8 + [colors.cursor] 9 + text = '#ff271d' 10 + cursor = '#fbfcfc' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#141228' 15 + red = '#ff5458' 16 + green = '#62d196' 17 + yellow = '#ffb378' 18 + blue = '#65b2ff' 19 + magenta = '#906cff' 20 + cyan = '#63f2f1' 21 + white = '#a6b3cc' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#565575' 26 + red = '#ff8080' 27 + green = '#95ffa4' 28 + yellow = '#ffe9aa' 29 + blue = '#91ddff' 30 + magenta = '#c991e1' 31 + cyan = '#aaffe4' 32 + white = '#cbe3e7'
+29
config/alacritty/themes/themes/chicago95.toml
··· 1 + # Windows 95 Color Scheme 2 + # To have the authentic experience in Chicago95 GTK Theme. 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#000000' 7 + foreground = '#C0C7C8' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#000000' 12 + red = '#A80000' 13 + green = '#00A800' 14 + yellow = '#A85400' 15 + blue = '#0000A8' 16 + magenta = '#A800A8' 17 + cyan = '#00A8A8' 18 + white = '#A8A8A8' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#545454' 23 + red = '#FC5454' 24 + green = '#54FC54' 25 + yellow = '#FCFC54' 26 + blue = '#5454FC' 27 + magenta = '#FC54FC' 28 + cyan = '#54FCFC' 29 + white = '#FFFFFF'
+30
config/alacritty/themes/themes/citylights.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#171d23' 4 + foreground = '#ffffff' 5 + 6 + # Cursor colors 7 + [colors.cursor] 8 + text = '#fafafa' 9 + cursor = '#008b94' 10 + 11 + # Normal colors 12 + [colors.normal] 13 + black = '#333f4a' 14 + red = '#d95468' 15 + green = '#8bd49c' 16 + blue = '#539afc' 17 + magenta = '#b62d65' 18 + cyan = '#70e1e8' 19 + white = '#b7c5d3' 20 + 21 + # Bright colors 22 + [colors.bright] 23 + black = '#41505e' 24 + red = '#d95468' 25 + green = '#8bd49c' 26 + yellow = '#ebbf83' 27 + blue = '#5ec4ff' 28 + magenta = '#e27e8d' 29 + cyan = '#70e1e8' 30 + white = '#ffffff'
+33
config/alacritty/themes/themes/cyber_punk_neon.toml
··· 1 + # Cyber Punk Neon 2 + # Source https//github.com/Roboron3042/Cyberpunk-Neon 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#000b1e' 7 + foreground = '#0abdc6' 8 + 9 + [colors.cursor] 10 + text = '#000b1e' 11 + cursor = '#0abdc6' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#123e7c' 16 + red = '#ff0000' 17 + green = '#d300c4' 18 + yellow = '#f57800' 19 + blue = '#123e7c' 20 + magenta = '#711c91' 21 + cyan = '#0abdc6' 22 + white = '#d7d7d5' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#1c61c2' 27 + red = '#ff0000' 28 + green = '#d300c4' 29 + yellow = '#f57800' 30 + blue = '#00ff00' 31 + magenta = '#711c91' 32 + cyan = '#0abdc6' 33 + white = '#d7d7d5'
+28
config/alacritty/themes/themes/dark_pastels.toml
··· 1 + # Colors (Konsole's Dark Pastels) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#2C2C2C' 6 + foreground = '#DCDCCC' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#3F3F3F' 11 + red = '#705050' 12 + green = '#60B48A' 13 + yellow = '#DFAF8F' 14 + blue = '#9AB8D7' 15 + magenta = '#DC8CC3' 16 + cyan = '#8CD0D3' 17 + white = '#DCDCCC' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#709080' 22 + red = '#DCA3A3' 23 + green = '#72D5A3' 24 + yellow = '#F0DFAF' 25 + blue = '#94BFF3' 26 + magenta = '#EC93D3' 27 + cyan = '#93E0E3' 28 + white = '#FFFFFF'
+34
config/alacritty/themes/themes/dark_pride.toml
··· 1 + # Dark Pride 2 + # A dark trans pride colour inspired theme 3 + 4 + # Primary colors 5 + [colors.primary] 6 + background = '#0d0d1b' 7 + foreground = '#ccccce' 8 + 9 + # Colors used for 'custom_cursor_colors' 10 + [colors.cursor] 11 + text = '#bbbbbb' 12 + cursor = '#ff0017' 13 + 14 + # Colors 0 through 7 15 + [colors.normal] 16 + black = '#282828' 17 + red = '#ca1444' 18 + green = '#789aba' 19 + yellow = '#b3879f' 20 + blue = '#95569b' 21 + magenta = '#cb6fa1' 22 + cyan = '#fb6e93' 23 + white = '#cf98c1' 24 + 25 + # Colors 8 through 15 26 + [colors.bright] 27 + black = '#98218e' 28 + red = '#cb515d' 29 + green = '#5a87b1' 30 + yellow = '#9c61ab' 31 + blue = '#9a77b1' 32 + magenta = '#f2a297' 33 + cyan = '#f4436f' 34 + white = '#ebdbb2'
+33
config/alacritty/themes/themes/deep_space.toml
··· 1 + # Source https//github.com/tyrannicaltoucan/vim-deep-space 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1b202a' 6 + foreground = '#9aa7bd' 7 + 8 + # Colors the cursor will use if `custom_cursor_colors` is true 9 + [colors.cursor] 10 + text = '#232936' 11 + cursor = '#51617d' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#1b202a' 16 + red = '#b15e7c' 17 + green = '#709d6c' 18 + yellow = '#b5a262' 19 + blue = '#608cc3' 20 + magenta = '#8f72bf' 21 + cyan = '#56adb7' 22 + white = '#9aa7bd' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#232936' 27 + red = '#b3785d' 28 + green = '#709d6c' 29 + yellow = '#d5b875' 30 + blue = '#608cc3' 31 + magenta = '#c47ebd' 32 + cyan = '#51617d' 33 + white = '#9aa7bd'
+17
config/alacritty/themes/themes/doom_one.toml
··· 1 + # Colors (Doom One) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#282c34' 6 + foreground = '#bbc2cf' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#282c34' 11 + red = '#ff6c6b' 12 + green = '#98be65' 13 + yellow = '#ecbe7b' 14 + blue = '#51afef' 15 + magenta = '#c678dd' 16 + cyan = '#46d9ff' 17 + white = '#bbc2cf'
+28
config/alacritty/themes/themes/dracula.toml
··· 1 + # Colors (Dracula) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#282a36' 6 + foreground = '#f8f8f2' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#ff5555' 12 + green = '#50fa7b' 13 + yellow = '#f1fa8c' 14 + blue = '#bd93f9' 15 + magenta = '#ff79c6' 16 + cyan = '#8be9fd' 17 + white = '#bbbbbb' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#555555' 22 + red = '#ff5555' 23 + green = '#50fa7b' 24 + yellow = '#f1fa8c' 25 + blue = '#caa9fa' 26 + magenta = '#ff79c6' 27 + cyan = '#8be9fd' 28 + white = '#ffffff'
+29
config/alacritty/themes/themes/dracula_plus.toml
··· 1 + # Colors (Dracula+) 2 + 3 + [colors.primary] 4 + background = '#212121' 5 + foreground = '#F8F8F2' 6 + 7 + [colors.cursor] 8 + text = '#0E1415' 9 + cursor = '#ECEFF4' 10 + 11 + [colors.normal] 12 + black = '#21222C' 13 + red = '#FF5555' 14 + green = '#50FA7B' 15 + yellow = '#FFCB6B' 16 + blue = '#82AAFF' 17 + magenta = '#C792EA' 18 + cyan = '#8BE9FD' 19 + white = '#F8F9F2' 20 + 21 + [colors.bright] 22 + black = '#545454' 23 + red = '#FF6E6E' 24 + green = '#69FF94' 25 + yellow = '#FFCB6B' 26 + blue = '#D6ACFF' 27 + magenta = '#FF92DF' 28 + cyan = '#A4FFFF' 29 + white = '#F8F8F2'
+29
config/alacritty/themes/themes/enfocado_dark.toml
··· 1 + # Theme: enfocado_dark 2 + # Source: https://github.com/wuelnerdotexe/vim-enfocado 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#181818' 7 + foreground = '#b9b9b9' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#3b3b3b' 12 + red = '#ed4a46' 13 + green = '#70b433' 14 + yellow = '#dbb32d' 15 + blue = '#368aeb' 16 + magenta = '#eb6eb7' 17 + cyan = '#3fc5b7' 18 + white = '#b9b9b9' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#777777' 23 + red = '#ff5e56' 24 + green = '#83c746' 25 + yellow = '#efc541' 26 + blue = '#4f9cfe' 27 + magenta = '#ff81ca' 28 + cyan = '#56d8c9' 29 + white = '#dedede'
+29
config/alacritty/themes/themes/enfocado_light.toml
··· 1 + # Theme: enfocado_light 2 + # Source: https://github.com/wuelnerdotexe/vim-enfocado 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#ffffff' 7 + foreground = '#474747' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#282828' 12 + red = '#d6000c' 13 + green = '#1d9700' 14 + yellow = '#c49700' 15 + blue = '#0064e4' 16 + magenta = '#dd0f9d' 17 + cyan = '#00ad9c' 18 + white = '#cdcdcd' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#878787' 23 + red = '#df0000' 24 + green = '#008400' 25 + yellow = '#af8500' 26 + blue = '#0054cf' 27 + magenta = '#c7008b' 28 + cyan = '#009a8a' 29 + white = '#ebebeb'
+28
config/alacritty/themes/themes/everforest_dark.toml
··· 1 + # Colors (Everforest Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#2d353b' 6 + foreground = '#d3c6aa' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#475258' 11 + red = '#e67e80' 12 + green = '#a7c080' 13 + yellow = '#dbbc7f' 14 + blue = '#7fbbb3' 15 + magenta = '#d699b6' 16 + cyan = '#83c092' 17 + white = '#d3c6aa' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#475258' 22 + red = '#e67e80' 23 + green = '#a7c080' 24 + yellow = '#dbbc7f' 25 + blue = '#7fbbb3' 26 + magenta = '#d699b6' 27 + cyan = '#83c092' 28 + white = '#d3c6aa'
+28
config/alacritty/themes/themes/everforest_light.toml
··· 1 + # Colors (Everforest Light) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#fdf6e3' 6 + foreground = '#5c6a72' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#5c6a72' 11 + red = '#f85552' 12 + green = '#8da101' 13 + yellow = '#dfa000' 14 + blue = '#3a94c5' 15 + magenta = '#df69ba' 16 + cyan = '#35a77c' 17 + white = '#e0dcc7' 18 + 19 + # Bright Colors 20 + [colors.bright] 21 + black = '#5c6a72' 22 + red = '#f85552' 23 + green = '#8da101' 24 + yellow = '#dfa000' 25 + blue = '#3a94c5' 26 + magenta = '#df69ba' 27 + cyan = '#35a77c' 28 + white = '#e0dcc7'
+33
config/alacritty/themes/themes/falcon.toml
··· 1 + # falcon colorscheme for alacritty 2 + # by fenetikm, https//github.com/fenetikm/falcon 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#020221' 7 + foreground = '#b4b4b9' 8 + 9 + [colors.cursor] 10 + text = '#020221' 11 + cursor = '#ffe8c0' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#000004' 16 + red = '#ff3600' 17 + green = '#718e3f' 18 + yellow = '#ffc552' 19 + blue = '#635196' 20 + magenta = '#ff761a' 21 + cyan = '#34bfa4' 22 + white = '#b4b4b9' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#020221' 27 + red = '#ff8e78' 28 + green = '#b1bf75' 29 + yellow = '#ffd392' 30 + blue = '#99a4bc' 31 + magenta = '#ffb07b' 32 + cyan = '#8bccbf' 33 + white = '#f8f8ff'
+23
config/alacritty/themes/themes/flat_remix.toml
··· 1 + [colors.primary] 2 + background = '#272a34' 3 + foreground = '#FFFFFF' 4 + 5 + [colors.normal] 6 + black = '#1F2229' 7 + red = '#EC0101' 8 + green = '#47D4B9' 9 + yellow = '#FF8A18' 10 + blue = '#277FFF' 11 + magenta = '#D71655' 12 + cyan = '#05A1F7' 13 + white = '#FFFFFF' 14 + 15 + [colors.bright] 16 + black = '#1F2229' 17 + red = '#D41919' 18 + green = '#5EBDAB' 19 + yellow = '#FEA44C' 20 + blue = '#367bf0' 21 + magenta = '#BF2E5D' 22 + cyan = '#49AEE6' 23 + white = '#FFFFFF'
+46
config/alacritty/themes/themes/flexoki.toml
··· 1 + # based on https//stephango.com/flexoki and https//github.com/kepano/flexoki/tree/main/alacritty 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#282726' 6 + foreground = '#FFFCF0' 7 + dim_foreground = '#FFFCF0' 8 + bright_foreground = '#FFFCF0' 9 + 10 + # Cursor colors 11 + [colors.cursor] 12 + text = '#FFFCF0' 13 + cursor = '#FFFCF0' 14 + 15 + # Normal colors 16 + [colors.normal] 17 + black = '#100F0F' 18 + red = '#AF3029' 19 + green = '#66800B' 20 + yellow = '#AD8301' 21 + blue = '#205EA6' 22 + magenta = '#A02F6F' 23 + cyan = '#24837B' 24 + white = '#FFFCF0' 25 + 26 + # Bright colors 27 + [colors.bright] 28 + black = '#100F0F' 29 + red = '#D14D41' 30 + green = '#879A39' 31 + yellow = '#D0A215' 32 + blue = '#4385BE' 33 + magenta = '#CE5D97' 34 + cyan = '#3AA99F' 35 + white = '#FFFCF0' 36 + 37 + # Dim colors 38 + [colors.dim] 39 + black = '#100F0F' 40 + red = '#AF3029' 41 + green = '#66800B' 42 + yellow = '#AD8301' 43 + blue = '#205EA6' 44 + magenta = '#A02F6F' 45 + cyan = '#24837B' 46 + white = '#FFFCF0'
+36
config/alacritty/themes/themes/github_dark.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#24292e' 6 + foreground = '#d1d5da' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#586069' 11 + red = '#ea4a5a' 12 + green = '#34d058' 13 + yellow = '#ffea7f' 14 + blue = '#2188ff' 15 + magenta = '#b392f0' 16 + cyan = '#39c5cf' 17 + white = '#d1d5da' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#959da5' 22 + red = '#f97583' 23 + green = '#85e89d' 24 + yellow = '#ffea7f' 25 + blue = '#79b8ff' 26 + magenta = '#b392f0' 27 + cyan = '#56d4dd' 28 + white = '#fafbfc' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#f97583'
+36
config/alacritty/themes/themes/github_dark_colorblind.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0d1117' 6 + foreground = '#b3b1ad' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#484f58' 11 + red = '#ff7b72' 12 + green = '#3fb950' 13 + yellow = '#d29922' 14 + blue = '#58a6ff' 15 + magenta = '#bc8cff' 16 + cyan = '#39c5cf' 17 + white = '#b1bac4' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#6e7681' 22 + red = '#ffa198' 23 + green = '#56d364' 24 + yellow = '#e3b341' 25 + blue = '#79c0ff' 26 + magenta = '#d2a8ff' 27 + cyan = '#56d4dd' 28 + white = '#f0f6fc' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#ffa198'
+36
config/alacritty/themes/themes/github_dark_default.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0d1117' 6 + foreground = '#b3b1ad' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#484f58' 11 + red = '#ff7b72' 12 + green = '#3fb950' 13 + yellow = '#d29922' 14 + blue = '#58a6ff' 15 + magenta = '#bc8cff' 16 + cyan = '#39c5cf' 17 + white = '#b1bac4' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#6e7681' 22 + red = '#ffa198' 23 + green = '#56d364' 24 + yellow = '#e3b341' 25 + blue = '#79c0ff' 26 + magenta = '#d2a8ff' 27 + cyan = '#56d4dd' 28 + white = '#f0f6fc' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#ffa198'
+36
config/alacritty/themes/themes/github_dark_dimmed.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#22272e' 6 + foreground = '#768390' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#545d68' 11 + red = '#f47067' 12 + green = '#57ab5a' 13 + yellow = '#c69026' 14 + blue = '#539bf5' 15 + magenta = '#b083f0' 16 + cyan = '#39c5cf' 17 + white = '#909dab' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#636e7b' 22 + red = '#ff938a' 23 + green = '#6bc46d' 24 + yellow = '#daaa3f' 25 + blue = '#6cb6ff' 26 + magenta = '#dcbdfb' 27 + cyan = '#56d4dd' 28 + white = '#cdd9e5' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#ff938a'
+33
config/alacritty/themes/themes/github_dark_high_contrast.toml
··· 1 + # (Github Dark High Contrast) Colors for Alacritty 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0a0c10' 6 + foreground = '#f0f3f6' 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#0a0c10' 11 + cursor = '#f0f3f6' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#7a828e' 16 + red = '#ff9492' 17 + green = '#26cd4d' 18 + yellow = '#f0b72f' 19 + blue = '#71b7ff' 20 + magenta = '#cb9eff' 21 + cyan = '#39c5cf' 22 + white = '#d9dee3' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#9ea7b3' 27 + red = '#ffb1af' 28 + green = '#4ae168' 29 + yellow = '#f7c843' 30 + blue = '#91cbff' 31 + magenta = '#cb9eff' 32 + cyan = '#39c5cf' 33 + white = '#d9dee3'
+33
config/alacritty/themes/themes/github_dark_tritanopia.toml
··· 1 + # (Github Dark Tritanopia) Colors for Alacritty 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0d1117' 6 + foreground = '#c9d1d9' 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#0d1117' 11 + cursor = '#c9d1d9' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#484f58' 16 + red = '#ff7b72' 17 + green = '#58a6ff' 18 + yellow = '#d29922' 19 + blue = '#58a6ff' 20 + magenta = '#bc8cff' 21 + cyan = '#39c5cf' 22 + white = '#b1bac4' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#6e7681' 27 + red = '#ffa198' 28 + green = '#79c0ff' 29 + yellow = '#e3b341' 30 + blue = '#79c0ff' 31 + magenta = '#bc8cff' 32 + cyan = '#39c5cf' 33 + white = '#b1bac4'
+36
config/alacritty/themes/themes/github_light.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#ffffff' 6 + foreground = '#24292f' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#24292e' 11 + red = '#d73a49' 12 + green = '#28a745' 13 + yellow = '#dbab09' 14 + blue = '#0366d6' 15 + magenta = '#5a32a3' 16 + cyan = '#0598bc' 17 + white = '#6a737d' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#959da5' 22 + red = '#cb2431' 23 + green = '#22863a' 24 + yellow = '#b08800' 25 + blue = '#005cc5' 26 + magenta = '#5a32a3' 27 + cyan = '#3192aa' 28 + white = '#d1d5da' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#cb2431'
+36
config/alacritty/themes/themes/github_light_colorblind.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#ffffff' 6 + foreground = '#0E1116' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#24292f' 11 + red = '#cf222e' 12 + green = '#116329' 13 + yellow = '#4d2d00' 14 + blue = '#0969da' 15 + magenta = '#8250df' 16 + cyan = '#1b7c83' 17 + white = '#6e7781' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#57606a' 22 + red = '#a40e26' 23 + green = '#1a7f37' 24 + yellow = '#633c01' 25 + blue = '#218bff' 26 + magenta = '#a475f9' 27 + cyan = '#3192aa' 28 + white = '#8c959f' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#a40e26'
+36
config/alacritty/themes/themes/github_light_default.toml
··· 1 + # github Alacritty Colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#ffffff' 6 + foreground = '#0E1116' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#24292f' 11 + red = '#cf222e' 12 + green = '#116329' 13 + yellow = '#4d2d00' 14 + blue = '#0969da' 15 + magenta = '#8250df' 16 + cyan = '#1b7c83' 17 + white = '#6e7781' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#57606a' 22 + red = '#a40e26' 23 + green = '#1a7f37' 24 + yellow = '#633c01' 25 + blue = '#218bff' 26 + magenta = '#a475f9' 27 + cyan = '#3192aa' 28 + white = '#8c959f' 29 + 30 + [[colors.indexed_colors]] 31 + index = 16 32 + color = '#d18616' 33 + 34 + [[colors.indexed_colors]] 35 + index = 17 36 + color = '#a40e26'
+33
config/alacritty/themes/themes/github_light_high_contrast.toml
··· 1 + # (Github Light High Contrast) Colors for Alacritty 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#ffffff' 6 + foreground = '#010409' 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#ffffff' 11 + cursor = '#0e1116' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#0e1116' 16 + red = '#a0111f' 17 + green = '#024c1a' 18 + yellow = '#3f2200' 19 + blue = '#0349b4' 20 + magenta = '#622cbc' 21 + cyan = '#1b7c83' 22 + white = '#66707b' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#4b535d' 27 + red = '#86061d' 28 + green = '#055d20' 29 + yellow = '#4e2c00' 30 + blue = '#1168e3' 31 + magenta = '#622cbc' 32 + cyan = '#1b7c83' 33 + white = '#66707b'
+33
config/alacritty/themes/themes/github_light_tritanopia.toml
··· 1 + # (Github Light Tritanopia) Colors for Alacritty 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#ffffff' 6 + foreground = '#1b1f24' 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#ffffff' 11 + cursor = '#24292f' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#24292f' 16 + red = '#cf222e' 17 + green = '#0550ae' 18 + yellow = '#4d2d00' 19 + blue = '#0969da' 20 + magenta = '#8250df' 21 + cyan = '#1b7c83' 22 + white = '#6e7781' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#57606a' 27 + red = '#a40e26' 28 + green = '#0969da' 29 + yellow = '#633c01' 30 + blue = '#218bff' 31 + magenta = '#8250df' 32 + cyan = '#1b7c83' 33 + white = '#6e7781'
+28
config/alacritty/themes/themes/gnome_terminal.toml
··· 1 + # Gnome (Gnome Terminal Default) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1e1e1e' 6 + foreground = '#ffffff' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#171421' 11 + red = '#c01c28' 12 + green = '#26a269' 13 + yellow = '#a2734c' 14 + blue = '#12488b' 15 + magenta = '#a347ba' 16 + cyan = '#2aa1b3' 17 + white = '#d0cfcc' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#5e5c64' 22 + red = '#f66151' 23 + green = '#33d17a' 24 + yellow = '#e9ad0c' 25 + blue = '#2a7bde' 26 + magenta = '#c061cb' 27 + cyan = '#33c7de' 28 + white = '#ffffff'
+23
config/alacritty/themes/themes/google.toml
··· 1 + [colors.primary] 2 + background = '#1d1f21' 3 + foreground = '#c5c8c6' 4 + 5 + [colors.normal] 6 + black = '#1d1f21' 7 + red = '#cc342b' 8 + green = '#198844' 9 + yellow = '#fba922' 10 + blue = '#3971ed' 11 + magenta = '#a36ac7' 12 + cyan = '#3971ed' 13 + white = '#c5c8c6' 14 + 15 + [colors.bright] 16 + black = '#969896' 17 + red = '#cc342b' 18 + green = '#198844' 19 + yellow = '#fba922' 20 + blue = '#3971ed' 21 + magenta = '#a36ac7' 22 + cyan = '#3971ed' 23 + white = '#ffffff'
+28
config/alacritty/themes/themes/gotham.toml
··· 1 + # Colors (Gotham) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#0a0f14' 6 + foreground = '#98d1ce' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#0a0f14' 11 + red = '#c33027' 12 + green = '#26a98b' 13 + yellow = '#edb54b' 14 + blue = '#195465' 15 + magenta = '#4e5165' 16 + cyan = '#33859d' 17 + white = '#98d1ce' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#10151b' 22 + red = '#d26939' 23 + green = '#081f2d' 24 + yellow = '#245361' 25 + blue = '#093748' 26 + magenta = '#888ba5' 27 + cyan = '#599caa' 28 + white = '#d3ebe9'
+30
config/alacritty/themes/themes/gruvbox_dark.toml
··· 1 + # Colors (Gruvbox dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + # hard contrast background = = '#1d2021' 6 + background = '#282828' 7 + # soft contrast background = = '#32302f' 8 + foreground = '#ebdbb2' 9 + 10 + # Normal colors 11 + [colors.normal] 12 + black = '#282828' 13 + red = '#cc241d' 14 + green = '#98971a' 15 + yellow = '#d79921' 16 + blue = '#458588' 17 + magenta = '#b16286' 18 + cyan = '#689d6a' 19 + white = '#a89984' 20 + 21 + # Bright colors 22 + [colors.bright] 23 + black = '#928374' 24 + red = '#fb4934' 25 + green = '#b8bb26' 26 + yellow = '#fabd2f' 27 + blue = '#83a598' 28 + magenta = '#d3869b' 29 + cyan = '#8ec07c' 30 + white = '#ebdbb2'
+30
config/alacritty/themes/themes/gruvbox_light.toml
··· 1 + # Colors (Gruvbox light) 2 + 3 + # Default colors 4 + [colors.primary] 5 + # hard contrast background = = '#f9f5d7' 6 + background = '#fbf1c7' 7 + # soft contrast background = = '#f2e5bc' 8 + foreground = '#3c3836' 9 + 10 + # Normal colors 11 + [colors.normal] 12 + black = '#fbf1c7' 13 + red = '#cc241d' 14 + green = '#98971a' 15 + yellow = '#d79921' 16 + blue = '#458588' 17 + magenta = '#b16286' 18 + cyan = '#689d6a' 19 + white = '#7c6f64' 20 + 21 + # Bright colors 22 + [colors.bright] 23 + black = '#928374' 24 + red = '#9d0006' 25 + green = '#79740e' 26 + yellow = '#b57614' 27 + blue = '#076678' 28 + magenta = '#8f3f71' 29 + cyan = '#427b58' 30 + white = '#3c3836'
+25
config/alacritty/themes/themes/gruvbox_material.toml
··· 1 + # Colors (Gruvbox Material Dark Medium) 2 + 3 + [colors.primary] 4 + background = '#282828' 5 + foreground = '#dfbf8e' 6 + 7 + [colors.normal] 8 + black = '#665c54' 9 + red = '#ea6962' 10 + green = '#a9b665' 11 + yellow = '#e78a4e' 12 + blue = '#7daea3' 13 + magenta = '#d3869b' 14 + cyan = '#89b482' 15 + white = '#dfbf8e' 16 + 17 + [colors.bright] 18 + black = '#928374' 19 + red = '#ea6962' 20 + green = '#a9b665' 21 + yellow = '#e3a84e' 22 + blue = '#7daea3' 23 + magenta = '#d3869b' 24 + cyan = '#89b482' 25 + white = '#dfbf8e'
+28
config/alacritty/themes/themes/gruvbox_material_hard_dark.toml
··· 1 + # Colors (Gruvbox Material Hard Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1d2021' 6 + foreground = '#d4be98' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#32302f' 11 + red = '#ea6962' 12 + green = '#a9b665' 13 + yellow = '#d8a657' 14 + blue = '#7daea3' 15 + magenta = '#d3869b' 16 + cyan = '#89b482' 17 + white = '#d4be98' 18 + 19 + # Bright colors (same as normal colors) 20 + [colors.bright] 21 + black = '#32302f' 22 + red = '#ea6962' 23 + green = '#a9b665' 24 + yellow = '#d8a657' 25 + blue = '#7daea3' 26 + magenta = '#d3869b' 27 + cyan = '#89b482' 28 + white = '#d4be98'
+28
config/alacritty/themes/themes/gruvbox_material_hard_light.toml
··· 1 + # Colors (Gruvbox Material Hard Light) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#f9f5d7' 6 + foreground = '#654735' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#654735' 11 + red = '#c14a4a' 12 + green = '#6c782e' 13 + yellow = '#b47109' 14 + blue = '#45707a' 15 + magenta = '#945e80' 16 + cyan = '#4c7a5d' 17 + white = '#f2e5bc' 18 + 19 + # Bright colors (same as normal colors) 20 + [colors.bright] 21 + black = '#654735' 22 + red = '#c14a4a' 23 + green = '#6c782e' 24 + yellow = '#b47109' 25 + blue = '#45707a' 26 + magenta = '#945e80' 27 + cyan = '#4c7a5d' 28 + white = '#f2e5bc'
+28
config/alacritty/themes/themes/gruvbox_material_medium_dark.toml
··· 1 + # Colors (Gruvbox Material Medium Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#282828' 6 + foreground = '#d4be98' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#3c3836' 11 + red = '#ea6962' 12 + green = '#a9b665' 13 + yellow = '#d8a657' 14 + blue = '#7daea3' 15 + magenta = '#d3869b' 16 + cyan = '#89b482' 17 + white = '#d4be98' 18 + 19 + # Bright colors (same as normal colors) 20 + [colors.bright] 21 + black = '#3c3836' 22 + red = '#ea6962' 23 + green = '#a9b665' 24 + yellow = '#d8a657' 25 + blue = '#7daea3' 26 + magenta = '#d3869b' 27 + cyan = '#89b482' 28 + white = '#d4be98'
+28
config/alacritty/themes/themes/gruvbox_material_medium_light.toml
··· 1 + # Colors (Gruvbox Material Medium Light) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#fbf1c7' 6 + foreground = '#654735' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#654735' 11 + red = '#c14a4a' 12 + green = '#6c782e' 13 + yellow = '#b47109' 14 + blue = '#45707a' 15 + magenta = '#945e80' 16 + cyan = '#4c7a5d' 17 + white = '#eee0b7' 18 + 19 + # Bright colors (same as normal colors) 20 + [colors.bright] 21 + black = '#654735' 22 + red = '#c14a4a' 23 + green = '#6c782e' 24 + yellow = '#b47109' 25 + blue = '#45707a' 26 + magenta = '#945e80' 27 + cyan = '#4c7a5d' 28 + white = '#eee0b7'
+33
config/alacritty/themes/themes/hardhacker.toml
··· 1 + # hardhacker colorscheme for alacritty 2 + # by xin wu, https//github.com/hardhackerlabs/theme-alacritty 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#282433' 7 + foreground = '#eee9fc' 8 + 9 + [colors.cursor] 10 + text = '#eee9fc' 11 + cursor = '#eee9fc' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#282433' 16 + red = '#e965a5' 17 + green = '#b1f2a7' 18 + yellow = '#ebde76' 19 + blue = '#b1baf4' 20 + magenta = '#e192ef' 21 + cyan = '#b3f4f3' 22 + white = '#eee9fc' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#3f3951' 27 + red = '#e965a5' 28 + green = '#b1f2a7' 29 + yellow = '#ebde76' 30 + blue = '#b1baf4' 31 + magenta = '#e192ef' 32 + cyan = '#b3f4f3' 33 + white = '#eee9fc'
+23
config/alacritty/themes/themes/hatsunemiku.toml
··· 1 + [colors.primary] 2 + background = '#242829' 3 + foreground = '#dcd7d7' 4 + 5 + [colors.normal] 6 + black = '#242829' 7 + red = '#df2683' 8 + green = '#13868c' 9 + yellow = '#fcfcdf' 10 + blue = '#1a86b9' 11 + magenta = '#bc7fd2' 12 + cyan = '#7cc7d6' 13 + white = '#4a4b4b' 14 + 15 + [colors.bright] 16 + black = '#7b8b99' 17 + red = '#df2683' 18 + green = '#13868c' 19 + yellow = '#fcfcdf' 20 + blue = '#1a86b9' 21 + magenta = '#bc7fd2' 22 + cyan = '#7cc7d6' 23 + white = '#dcd7d7'
+33
config/alacritty/themes/themes/high_contrast.toml
··· 1 + # Colors (High Contrast) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#444444' 6 + foreground = '#dddddd' 7 + 8 + # Colors the cursor will use if `custom_cursor_colors` is true 9 + [colors.cursor] 10 + text = '#aaaaaa' 11 + cursor = '#ffffff' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#000000' 16 + red = '#ff0000' 17 + green = '#00ff00' 18 + yellow = '#ffff00' 19 + blue = '#0000ff' 20 + magenta = '#ff00ff' 21 + cyan = '#00ffff' 22 + white = '#ffffff' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#000000' 27 + red = '#ff0000' 28 + green = '#00ff00' 29 + yellow = '#ffff00' 30 + blue = '#0000ff' 31 + magenta = '#ff00ff' 32 + cyan = '#00ffff' 33 + white = '#ffffff'
+28
config/alacritty/themes/themes/horizon-dark.toml
··· 1 + # Colors (Horizon Dark) 2 + 3 + # Primary colors 4 + [colors.primary] 5 + background = '#1c1e26' 6 + foreground = '#e0e0e0' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#16161c' 11 + red = '#e95678' 12 + green = '#29d398' 13 + yellow = '#fab795' 14 + blue = '#26bbd9' 15 + magenta = '#ee64ac' 16 + cyan = '#59e1e3' 17 + white = '#d5d8da' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#5b5858' 22 + red = '#ec6a88' 23 + green = '#3fdaa4' 24 + yellow = '#fbc3a7' 25 + blue = '#3fc4de' 26 + magenta = '#f075b5' 27 + cyan = '#6be4e6' 28 + white = '#d5d8da'
+32
config/alacritty/themes/themes/hyper.toml
··· 1 + # Colors (Hyper) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#000000' 6 + foreground = '#ffffff' 7 + 8 + [colors.cursor] 9 + text = '#F81CE5' 10 + cursor = '#ffffff' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#000000' 15 + red = '#fe0100' 16 + green = '#33ff00' 17 + yellow = '#feff00' 18 + blue = '#0066ff' 19 + magenta = '#cc00ff' 20 + cyan = '#00ffff' 21 + white = '#d0d0d0' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#808080' 26 + red = '#fe0100' 27 + green = '#33ff00' 28 + yellow = '#feff00' 29 + blue = '#0066ff' 30 + magenta = '#cc00ff' 31 + cyan = '#00ffff' 32 + white = '#FFFFFF'
+29
config/alacritty/themes/themes/inferno.toml
··· 1 + # Inferno theme 2 + # Source https//github.com/hafiz-muhammad/inferno-alacritty-theme 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#270d06' 7 + foreground = '#d9d9d9' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#330000' 12 + red = '#ff3300' 13 + green = '#ff6600' 14 + yellow = '#ff9900' 15 + blue = '#ffcc00' 16 + magenta = '#ff6600' 17 + cyan = '#ff9900' 18 + white = '#d9d9d9' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#663300' 23 + red = '#ff6633' 24 + green = '#ff9966' 25 + yellow = '#ffcc99' 26 + blue = '#ffcc33' 27 + magenta = '#ff9966' 28 + cyan = '#ffcc99' 29 + white = '#d9d9d9'
+28
config/alacritty/themes/themes/iris.toml
··· 1 + # Colors (Iris) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#272537' 6 + foreground = '#e8e6e9' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#111133' 11 + red = '#d61d52' 12 + green = '#48a842' 13 + yellow = '#e1a51c' 14 + blue = '#5556d3' 15 + magenta = '#8650d3' 16 + cyan = '#52afb7' 17 + white = '#9f9aa7' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#484867' 22 + red = '#e15877' 23 + green = '#71ab3a' 24 + yellow = '#c6a642' 25 + blue = '#6d6dc9' 26 + magenta = '#956ad3' 27 + cyan = '#6ab6bd' 28 + white = '#e8e6e9'
+28
config/alacritty/themes/themes/iterm.toml
··· 1 + # Colors (iTerm 2 default theme) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#101421' 6 + foreground = '#fffbf6' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#2e2e2e' 11 + red = '#eb4129' 12 + green = '#abe047' 13 + yellow = '#f6c744' 14 + blue = '#47a0f3' 15 + magenta = '#7b5cb0' 16 + cyan = '#64dbed' 17 + white = '#e5e9f0' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#565656' 22 + red = '#ec5357' 23 + green = '#c0e17d' 24 + yellow = '#f9da6a' 25 + blue = '#49a4f8' 26 + magenta = '#a47de9' 27 + cyan = '#99faf2' 28 + white = '#ffffff'
+38
config/alacritty/themes/themes/kanagawa_dragon.toml
··· 1 + # Colors (Kanagawa Dragon) 2 + # Source https//github.com/rebelot/kanagawa.nvim 3 + 4 + [colors.primary] 5 + background = '#181616' 6 + foreground = '#c5c9c5' 7 + 8 + [colors.normal] 9 + black = '#0d0c0c' 10 + blue = '#8ba4b0' 11 + cyan = '#8ea4a2' 12 + green = '#8a9a7b' 13 + magenta = '#a292a3' 14 + red = '#c4746e' 15 + white = '#C8C093' 16 + yellow = '#c4b28a' 17 + 18 + [colors.bright] 19 + black = '#a6a69c' 20 + blue = '#7FB4CA' 21 + cyan = '#7AA89F' 22 + green = '#87a987' 23 + magenta = '#938AA9' 24 + red = '#E46876' 25 + white = '#c5c9c5' 26 + yellow = '#E6C384' 27 + 28 + [colors.selection] 29 + background = '#2d4f67' 30 + foreground = '#c8c093' 31 + 32 + [[colors.indexed_colors]] 33 + index = 16 34 + color = '#ffa066' 35 + 36 + [[colors.indexed_colors]] 37 + index = 17 38 + color = '#ff5d62'
+38
config/alacritty/themes/themes/kanagawa_wave.toml
··· 1 + # Colors (Kanagawa Wave) 2 + # Source https//github.com/rebelot/kanagawa.nvim 3 + 4 + [colors.primary] 5 + background = '#1f1f28' 6 + foreground = '#dcd7ba' 7 + 8 + [colors.normal] 9 + black = '#090618' 10 + red = '#c34043' 11 + green = '#76946a' 12 + yellow = '#c0a36e' 13 + blue = '#7e9cd8' 14 + magenta = '#957fb8' 15 + cyan = '#6a9589' 16 + white = '#c8c093' 17 + 18 + [colors.bright] 19 + black = '#727169' 20 + red = '#e82424' 21 + green = '#98bb6c' 22 + yellow = '#e6c384' 23 + blue = '#7fb4ca' 24 + magenta = '#938aa9' 25 + cyan = '#7aa89f' 26 + white = '#dcd7ba' 27 + 28 + [colors.selection] 29 + background = '#2d4f67' 30 + foreground = '#c8c093' 31 + 32 + [[colors.indexed_colors]] 33 + index = 16 34 + color = '#ffa066' 35 + 36 + [[colors.indexed_colors]] 37 + index = 17 38 + color = '#ff5d62'
+44
config/alacritty/themes/themes/konsole_linux.toml
··· 1 + # Color theme ported from Konsole Linux colors 2 + 3 + [colors.primary] 4 + foreground = '#e3e3e3' 5 + bright_foreground = '#ffffff' 6 + background = '#1f1f1f' 7 + 8 + [colors.cursor] 9 + text = '#191622' 10 + cursor = '#f8f8f2' 11 + 12 + [colors.search] 13 + matches = { foreground = '#b2b2b2', background = '#b26818' } 14 + focused_match = { foreground = "CellBackground", background = "CellForeground" } 15 + 16 + [colors.normal] 17 + black = '#000000' 18 + red = '#b21818' 19 + green = '#18b218' 20 + yellow = '#b26818' 21 + blue = '#1818b2' 22 + magenta = '#b218b2' 23 + cyan = '#18b2b2' 24 + white = '#b2b2b2' 25 + 26 + [colors.bright] 27 + black = '#686868' 28 + red = '#ff5454' 29 + green = '#54ff54' 30 + yellow = '#ffff54' 31 + blue = '#5454ff' 32 + magenta = '#ff54ff' 33 + cyan = '#54ffff' 34 + white = '#ffffff' 35 + 36 + [colors.dim] 37 + black = '#000000' 38 + red = '#b21818' 39 + green = '#18b218' 40 + yellow = '#b26818' 41 + blue = '#1818b2' 42 + magenta = '#b218b2' 43 + cyan = '#18b2b2' 44 + white = '#b2b2b2'
+32
config/alacritty/themes/themes/low_contrast.toml
··· 1 + # Colors (Dim) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#333333' 6 + foreground = '#dddddd' 7 + 8 + [colors.cursor] 9 + text = '#aaaaaa' 10 + cursor = '#ffffff' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#000000' 15 + red = '#bb0000' 16 + green = '#00bb00' 17 + yellow = '#bbbb00' 18 + blue = '#0000bb' 19 + magenta = '#bb00bb' 20 + cyan = '#00bbbb' 21 + white = '#bbbbbb' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#000000' 26 + red = '#bb0000' 27 + green = '#00bb00' 28 + yellow = '#bbbb00' 29 + blue = '#0000bb' 30 + magenta = '#bb00bb' 31 + cyan = '#00bbbb' 32 + white = '#bbbbbb'
+29
config/alacritty/themes/themes/marine_dark.toml
··· 1 + # Marine Dark Theme 2 + # Source https//github.com/ProDeSquare/alacritty-colorschemes/blob/master/themes/marine_dark.yaml 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#002221' 7 + foreground = '#e6f8f8' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#002221' 12 + red = '#ea3431' 13 + green = '#00b6b6' 14 + yellow = '#f8b017' 15 + blue = '#4894fd' 16 + magenta = '#e01dca' 17 + cyan = '#1ab2ad' 18 + white = '#99dddb' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#006562' 23 + red = '#ea3431' 24 + green = '#00b6b6' 25 + yellow = '#f8b017' 26 + blue = '#4894fd' 27 + magenta = '#e01dca' 28 + cyan = '#1ab2ad' 29 + white = '#e6f6f6'
+28
config/alacritty/themes/themes/material_theme.toml
··· 1 + # Colors (Material Theme) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1e282d' 6 + foreground = '#c4c7d1' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#666666' 11 + red = '#eb606b' 12 + green = '#c3e88d' 13 + yellow = '#f7eb95' 14 + blue = '#80cbc4' 15 + magenta = '#ff2f90' 16 + cyan = '#aeddff' 17 + white = '#ffffff' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#ff262b' 22 + red = '#eb606b' 23 + green = '#c3e88d' 24 + yellow = '#f7eb95' 25 + blue = '#7dc6bf' 26 + magenta = '#6c71c4' 27 + cyan = '#35434d' 28 + white = '#ffffff'
+28
config/alacritty/themes/themes/material_theme_mod.toml
··· 1 + # Colors (Material Theme) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1e282d' 6 + foreground = '#c4c7d1' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#666666' 11 + red = '#eb606b' 12 + green = '#c3e88d' 13 + yellow = '#f7eb95' 14 + blue = '#80cbc4' 15 + magenta = '#ff2f90' 16 + cyan = '#aeddff' 17 + white = '#ffffff' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#a1a1a1' 22 + red = '#eb606b' 23 + green = '#c3e88d' 24 + yellow = '#f7eb95' 25 + blue = '#7dc6bf' 26 + magenta = '#6c71c4' 27 + cyan = '#35434d' 28 + white = '#ffffff'
+75
config/alacritty/themes/themes/meliora.toml
··· 1 + [colors.primary] 2 + background = '#1c1917' 3 + foreground = '#d6d0cd' 4 + # Bright and dim foreground colors 5 + dim_foreground = '#d6d0cd' 6 + bright_foreground = '#d6d0cd' 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#1c1917' 11 + cursor = '#d6d0cd' 12 + 13 + [colors.vi_mode_cursor] 14 + text = '#1c1917' 15 + cursor = '#d6d0cd' 16 + 17 + # Search colors 18 + [colors.search] 19 + matches = { foreground = '#1c1917', background = '#24201e' } 20 + focused_match = { foreground = '#1c1917', background = '#2a2522' } 21 + 22 + [colors.footer_bar] 23 + foreground = '#1c1917' 24 + background = '#b8aea8' 25 + 26 + # Keyboard regex hints 27 + [colors.hints] 28 + start = { foreground = '#1c1917', background = '#c4b392' } 29 + end = { foreground = '#1c1917', background = '#24201e' } 30 + 31 + # Selection colors 32 + [colors.selection] 33 + text = '#d6d0cd' 34 + background = '#2a2522' 35 + 36 + # Normal colors 37 + [colors.normal] 38 + black = '#2a2421' 39 + red = '#d49191' 40 + green = '#b6b696' 41 + yellow = '#c4b392' 42 + blue = '#9e96b6' 43 + magenta = '#b696b1' 44 + cyan = '#98acc8' 45 + white = '#ddd9d6' 46 + 47 + # Bright colors 48 + [colors.bright] 49 + black = '#2e2622' 50 + red = '#d89393' 51 + green = '#b9b99b' 52 + yellow = '#c8b692' 53 + blue = '#a299b9' 54 + magenta = '#b997b4' 55 + cyan = '#9bb0ca' 56 + white = '#e1dbd9' 57 + 58 + # Dim colors 59 + [colors.dim] 60 + black = '#2a2421' 61 + red = '#d18989' 62 + green = '#727246' 63 + yellow = '#c1b090' 64 + blue = '#9b92b3' 65 + magenta = '#b393ad' 66 + cyan = '#95a9c5' 67 + white = '#e3d5ce' 68 + 69 + [[colors.indexed_colors]] 70 + index = 16 71 + color = '#c4b392' 72 + 73 + [[colors.indexed_colors]] 74 + index = 17 75 + color = '#ddd9d6'
+29
config/alacritty/themes/themes/midnight-haze.toml
··· 1 + # Midnight Haze theme 2 + # Source https//github.com/hafiz-muhammad/midnight-haze-alacritty-theme 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#0c0c16' 7 + foreground = '#d8dee9' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#2c2c3d' 12 + red = '#ff6e6e' 13 + green = '#9ec875' 14 + yellow = '#ffa759' 15 + blue = '#70a7d4' 16 + magenta = '#d291e0' 17 + cyan = '#96e0e0' 18 + white = '#d8dee9' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#414166' 23 + red = '#ff8d8d' 24 + green = '#b3d987' 25 + yellow = '#ffc57f' 26 + blue = '#9bb3d3' 27 + magenta = '#ffa1ff' 28 + cyan = '#9cd8d8' 29 + white = '#ffffff'
+23
config/alacritty/themes/themes/monokai.toml
··· 1 + [colors.primary] 2 + background = "#272822" 3 + foreground = "#f8f8f2" 4 + 5 + [colors.normal] 6 + black = "#272822" 7 + red = "#f92672" 8 + green = "#a6e22e" 9 + yellow = "#f4bf75" 10 + blue = "#66d9ef" 11 + magenta = "#ae81ff" 12 + cyan = "#a1efe4" 13 + white = "#f8f8f2" 14 + 15 + [colors.bright] 16 + black = "#75715e" 17 + red = "#f92672" 18 + green = "#a6e22e" 19 + yellow = "#f4bf75" 20 + blue = "#66d9ef" 21 + magenta = "#ae81ff" 22 + cyan = "#a1efe4" 23 + white = "#f9f8f5"
+28
config/alacritty/themes/themes/monokai_charcoal.toml
··· 1 + # Colours (Monokai Charcoal) 2 + 3 + # Default Colours 4 + [colors.primary] 5 + background = '#000000' 6 + foreground = '#FFFFFF' 7 + 8 + # Normal Colours 9 + [colors.normal] 10 + black = '#1a1a1a' 11 + red = '#f4005f' 12 + green = '#98e024' 13 + yellow = '#fa8419' 14 + blue = '#9d65ff' 15 + magenta = '#f4005f' 16 + cyan = '#58d1eb' 17 + white = '#c4c5b5' 18 + 19 + # Bright Colours 20 + [colors.bright] 21 + black = '#625e4c' 22 + red = '#f4005f' 23 + green = '#98e024' 24 + yellow = '#e0d561' 25 + blue = '#9d65ff' 26 + magenta = '#f4005f' 27 + cyan = '#58d1eb' 28 + white = '#f6f6ef'
+26
config/alacritty/themes/themes/monokai_pro.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#2D2A2E' 4 + foreground = '#fff1f3' 5 + 6 + # Normal colors 7 + [colors.normal] 8 + black = '#2c2525' 9 + red = '#fd6883' 10 + green = '#adda78' 11 + yellow = '#f9cc6c' 12 + blue = '#f38d70' 13 + magenta = '#a8a9eb' 14 + cyan = '#85dacc' 15 + white = '#fff1f3' 16 + 17 + # Bright colors 18 + [colors.bright] 19 + black = '#72696a' 20 + red = '#fd6883' 21 + green = '#adda78' 22 + yellow = '#f9cc6c' 23 + blue = '#f38d70' 24 + magenta = '#a8a9eb' 25 + cyan = '#85dacc' 26 + white = '#fff1f3'
+27
config/alacritty/themes/themes/moonlight_ii_vscode.toml
··· 1 + [colors.primary] 2 + background = '#1e2030' 3 + foreground = '#7f85a3' 4 + 5 + [colors.cursor] 6 + text = '#7f85a3' 7 + cursor = '#808080' 8 + 9 + [colors.normal] 10 + black = '#444a73' 11 + red = '#ff5370' 12 + green = '#4fd6be' 13 + yellow = '#ffc777' 14 + blue = '#3e68d7' 15 + magenta = '#fc7b7b' 16 + cyan = '#86e1fc' 17 + white = '#d0d0d0' 18 + 19 + [colors.bright] 20 + black = '#828bb8' 21 + red = '#ff98a4' 22 + green = '#c3e88d' 23 + yellow = '#ffc777' 24 + blue = '#82aaff' 25 + magenta = '#ff966c' 26 + cyan = '#b4f9f8' 27 + white = '#5f8787'
+41
config/alacritty/themes/themes/msx.toml
··· 1 + # Colors (MSX-like) 2 + # Notice that MSX used blue as background so [bright] blue and [bright] black 3 + # are reversed in this theme. Also MSX had only 15 colors (color 0 was 4 + # transparent) so 'gray' (#CCCCCC) is used two times both as white and 5 + # bright black. 6 + 7 + # Default colors 8 + [colors.primary] 9 + background = '#5955E0' 10 + foreground = '#FFFFFF' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + # It is 'dark blue' not black 15 + black = '#5955E0' 16 + red = '#B95E51' 17 + green = '#3AA241' 18 + yellow = '#CCC35E' 19 + # It is 'black' not blue 20 + blue = '#000000' 21 + # It is 'medium red' not magenta 22 + magenta = '#DB6559' 23 + # It is 'medium green' not cyan 24 + cyan = '#3EB849' 25 + # It is 'gray' not white 26 + white = '#CCCCCC' 27 + 28 + # Bright colors 29 + [colors.bright] 30 + # It is 'light blue' not bright black 31 + black = '#8076F1' 32 + red = '#FF897D' 33 + green = '#74D07D' 34 + yellow = '#DED087' 35 + # It is 'gray' not bright blue 36 + blue = '#CCCCCC' 37 + # It is 'magenta' not bright magenta 38 + magenta = '#B766B5' 39 + # It is 'cyan' not bright cyan 40 + cyan = '#65DBEF' 41 + white = '#FFFFFF'
+54
config/alacritty/themes/themes/night_owl.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = "#011627" 4 + foreground = "#d6deeb" 5 + 6 + # Cursor colors 7 + [colors.cursor] 8 + text = "CellBackground" 9 + cursor = "CellForeground" 10 + 11 + [colors.vi_mode_cursor] 12 + text = "CellBackground" 13 + cursor = "#22da6e" 14 + 15 + # Search colors 16 + [colors.search.matches] 17 + foreground = "#000000" 18 + background = "#22da6e" 19 + 20 + [colors.search.focused_match] 21 + foreground = "#ffffff" 22 + background = "#22da6e" 23 + 24 + [colors.footer_bar] 25 + foreground = "#ffffff" 26 + background = "#1d3b53" 27 + 28 + # Selection colors 29 + [colors.selection] 30 + text = "#ffffff" 31 + background = "#0d486e" 32 + 33 + # Normal colors 34 + [colors.normal] 35 + black = "#011627" 36 + red = "#EF5350" 37 + green = "#22da6e" 38 + yellow = "#c5e478" 39 + blue = "#82AAFF" 40 + magenta = "#C792EA" 41 + cyan = "#21c7a8" 42 + white = "#ffffff" 43 + 44 + # Bright colors 45 + [colors.bright] 46 + black = "#575656" 47 + red = "#EF5350" 48 + green = "#22da6e" 49 + yellow = "#ffeb95" 50 + blue = "#82AAFF" 51 + magenta = "#C792EA" 52 + cyan = "#7fdbca" 53 + white = "#ffffff" 54 +
+33
config/alacritty/themes/themes/night_owlish_light.toml
··· 1 + # Colors (Night Owlish Light) 2 + 3 + [colors.primary] 4 + background = '#ffffff' 5 + foreground = '#403f53' 6 + 7 + [colors.normal] 8 + black = '#011627' 9 + red = '#d3423e' 10 + green = '#2aa298' 11 + yellow = '#daaa01' 12 + blue = '#4876d6' 13 + magenta = '#403f53' 14 + cyan = '#08916a' 15 + white = '#7a8181' 16 + 17 + [colors.bright] 18 + black = '#7a8181' 19 + red = '#f76e6e' 20 + green = '#49d0c5' 21 + yellow = '#dac26b' 22 + blue = '#5ca7e4' 23 + magenta = '#697098' 24 + cyan = '#00c990' 25 + white = '#989fb1' 26 + 27 + [colors.cursor] 28 + cursor = '#403f53' 29 + text = '#fbfbfb' 30 + 31 + [colors.selection] 32 + background = '#f2f2f2' 33 + text = '#403f53'
+34
config/alacritty/themes/themes/nightfly.toml
··· 1 + # Source https://github.com/bluz71/vim-nightfly-colors 2 + 3 + [colors.bright] 4 + black = "#7c8f8f" 5 + blue = "#82aaff" 6 + cyan = "#7fdbca" 7 + green = "#21c7a8" 8 + magenta = "#ae81ff" 9 + red = "#ff5874" 10 + white = "#d6deeb" 11 + yellow = "#ecc48d" 12 + 13 + [colors.cursor] 14 + cursor = "#9ca1aa" 15 + text = "#080808" 16 + 17 + [colors.normal] 18 + black = "#1d3b53" 19 + blue = "#82aaff" 20 + cyan = "#7fdbca" 21 + green = "#a1cd5e" 22 + magenta = "#c792ea" 23 + red = "#fc514e" 24 + white = "#a1aab8" 25 + yellow = "#e3d18a" 26 + 27 + [colors.primary] 28 + background = "#011627" 29 + bright_foreground = "#eeeeee" 30 + foreground = "#bdc1c6" 31 + 32 + [colors.selection] 33 + background = "#b2ceee" 34 + text = "#080808"
+28
config/alacritty/themes/themes/nightfox.toml
··· 1 + # Colors (NightFox) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#192330' 6 + foreground = '#cdcecf' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#393b44' 11 + red = '#c94f6d' 12 + green = '#81b29a' 13 + yellow = '#dbc074' 14 + blue = '#719cd6' 15 + magenta = '#9d79d6' 16 + cyan = '#63cdcf' 17 + white = '#dfdfe0' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#575860' 22 + red = '#d16983' 23 + green = '#8ebaa4' 24 + yellow = '#e0c989' 25 + blue = '#86abdc' 26 + magenta = '#baa1e2' 27 + cyan = '#7ad5d6' 28 + white = '#e4e4e5'
+28
config/alacritty/themes/themes/noctis-lux.toml
··· 1 + # Colors (NoctixLux) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#fef8ec' 6 + foreground = '#005661' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#003b42' 11 + red = '#e34e1c' 12 + green = '#00b368' 13 + yellow = '#f49725' 14 + blue = '#0094f0' 15 + magenta = '#ff5792' 16 + cyan = '#00bdd6' 17 + white = '#8ca6a6' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#004d57' 22 + red = '#ff4000' 23 + green = '#00d17a' 24 + yellow = '#ff8c00' 25 + blue = '#0fa3ff' 26 + magenta = '#ff6b9f' 27 + cyan = '#00cbe6' 28 + white = '#bbc3c4'
+28
config/alacritty/themes/themes/nord.toml
··· 1 + # Colors (Nord) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#2E3440' 6 + foreground = '#D8DEE9' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#3B4252' 11 + red = '#BF616A' 12 + green = '#A3BE8C' 13 + yellow = '#EBCB8B' 14 + blue = '#81A1C1' 15 + magenta = '#B48EAD' 16 + cyan = '#88C0D0' 17 + white = '#E5E9F0' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#4C566A' 22 + red = '#BF616A' 23 + green = '#A3BE8C' 24 + yellow = '#EBCB8B' 25 + blue = '#81A1C1' 26 + magenta = '#B48EAD' 27 + cyan = '#8FBCBB' 28 + white = '#ECEFF4'
+28
config/alacritty/themes/themes/nord_light.toml
··· 1 + # Colors (Nord light) theme based on https//github.com/nordtheme/alacritty/issues/28#issuecomment-1422225211 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#ECEFF4' 6 + foreground = '#81A1C1' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#D8DEE9' 11 + red = '#bf616a' 12 + green = '#a3be8c' 13 + yellow = '#D08770' 14 + blue = '#81A1C1' 15 + magenta = '#B48EAD' 16 + cyan = '#88C0D0' 17 + white = '#4C566A' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#D8DEE9' 22 + red = '#bf616a' 23 + green = '#a3be8c' 24 + yellow = '#D08770' 25 + blue = '#D8DEE9' 26 + magenta = '#B48EAD' 27 + cyan = '#8FBCBB' 28 + white = '#D8DEE9'
+29
config/alacritty/themes/themes/nordic.toml
··· 1 + # Colors (Nordic) 2 + 3 + [colors.primary] 4 + background = '#242933' 5 + foreground = '#BBBDAF' 6 + 7 + [colors.normal] 8 + black = '#191C1D' 9 + red = '#BD6062' 10 + green = '#A3D6A9' 11 + yellow = '#F0DFAF' 12 + blue = '#8FB4D8' 13 + magenta = '#C7A9D9' 14 + cyan = '#B6D7A8' 15 + white = '#BDC5BD' 16 + 17 + [colors.bright] 18 + black = '#727C7C' 19 + red = '#D18FAF' 20 + green = '#B7CEB0' 21 + yellow = '#BCBCBC' 22 + blue = '#E0CF9F' 23 + magenta = '#C7A9D9' 24 + cyan = '#BBDA97' 25 + white = '#BDC5BD' 26 + 27 + [colors.selection] 28 + text = '#000000' 29 + background = '#F0DFAF'
+28
config/alacritty/themes/themes/oceanic_next.toml
··· 1 + # Colors (Oceanic Next) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1b2b34' 6 + foreground = '#d8dee9' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#29414f' 11 + red = '#ec5f67' 12 + green = '#99c794' 13 + yellow = '#fac863' 14 + blue = '#6699cc' 15 + magenta = '#c594c5' 16 + cyan = '#5fb3b3' 17 + white = '#65737e' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#405860' 22 + red = '#ec5f67' 23 + green = '#99c794' 24 + yellow = '#fac863' 25 + blue = '#6699cc' 26 + magenta = '#c594c5' 27 + cyan = '#5fb3b3' 28 + white = '#adb5c0'
+37
config/alacritty/themes/themes/omni.toml
··· 1 + [colors.primary] 2 + background = '#191622' 3 + foreground = '#e1e1e6' 4 + 5 + [colors.cursor] 6 + text = '#191622' 7 + cursor = '#f8f8f2' 8 + 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#ff5555' 12 + green = '#50fa7b' 13 + yellow = '#effa78' 14 + blue = '#bd93f9' 15 + magenta = '#ff79c6' 16 + cyan = '#8d79ba' 17 + white = '#bfbfbf' 18 + 19 + [colors.bright] 20 + black = '#4d4d4d' 21 + red = '#ff6e67' 22 + green = '#5af78e' 23 + yellow = '#eaf08d' 24 + blue = '#caa9fa' 25 + magenta = '#ff92d0' 26 + cyan = '#aa91e3' 27 + white = '#e6e6e6' 28 + 29 + [colors.dim] 30 + black = '#000000' 31 + red = '#a90000' 32 + green = '#049f2b' 33 + yellow = '#a3b106' 34 + blue = '#530aba' 35 + magenta = '#bb006b' 36 + cyan = '#433364' 37 + white = '#5f5f5f'
+28
config/alacritty/themes/themes/one_dark.toml
··· 1 + # Colors (One Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#282c34' 6 + foreground = '#abb2bf' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#1e2127' 11 + red = '#e06c75' 12 + green = '#98c379' 13 + yellow = '#d19a66' 14 + blue = '#61afef' 15 + magenta = '#c678dd' 16 + cyan = '#56b6c2' 17 + white = '#abb2bf' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#5c6370' 22 + red = '#e06c75' 23 + green = '#98c379' 24 + yellow = '#d19a66' 25 + blue = '#61afef' 26 + magenta = '#c678dd' 27 + cyan = '#56b6c2' 28 + white = '#ffffff'
+29
config/alacritty/themes/themes/palenight.toml
··· 1 + # iTerm2 Material Design - Palenight theme for Alacritty 2 + # Source https//github.com/JonathanSpeek/palenight-iterm2 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#292d3e' 7 + foreground = '#d0d0d0' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#292d3e' 12 + red = '#f07178' 13 + green = '#c3e88d' 14 + yellow = '#ffcb6b' 15 + blue = '#82aaff' 16 + magenta = '#c792ea' 17 + cyan = '#89ddff' 18 + white = '#d0d0d0' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#434758' 23 + red = '#ff8b92' 24 + green = '#ddffa7' 25 + yellow = '#ffe585' 26 + blue = '#9cc4ff' 27 + magenta = '#e1acff' 28 + cyan = '#a3f7ff' 29 + white = '#ffffff'
+32
config/alacritty/themes/themes/papercolor_dark.toml
··· 1 + # Colors (PaperColor - Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1c1c1c' 6 + foreground = '#808080' 7 + 8 + [colors.cursor] 9 + text = '#1c1c1c' 10 + cursor = '#808080' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#1c1c1c' 15 + red = '#af005f' 16 + green = '#5faf00' 17 + yellow = '#d7af5f' 18 + blue = '#5fafd7' 19 + magenta = '#808080' 20 + cyan = '#d7875f' 21 + white = '#d0d0d0' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#585858' 26 + red = '#5faf5f' 27 + green = '#afd700' 28 + yellow = '#af87d7' 29 + blue = '#ffaf00' 30 + magenta = '#ffaf00' 31 + cyan = '#00afaf' 32 + white = '#5f8787'
+32
config/alacritty/themes/themes/papercolor_light.toml
··· 1 + # Colors (PaperColor - Light) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#eeeeee' 6 + foreground = '#444444' 7 + 8 + [colors.cursor] 9 + text = '#eeeeee' 10 + cursor = '#444444' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#eeeeee' 15 + red = '#af0000' 16 + green = '#008700' 17 + yellow = '#5f8700' 18 + blue = '#0087af' 19 + magenta = '#878787' 20 + cyan = '#005f87' 21 + white = '#444444' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#bcbcbc' 26 + red = '#d70000' 27 + green = '#d70087' 28 + yellow = '#8700af' 29 + blue = '#d75f00' 30 + magenta = '#d75f00' 31 + cyan = '#005faf' 32 + white = '#005f87'
+28
config/alacritty/themes/themes/papertheme.toml
··· 1 + # Colors (Paper Theme) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#F2EEDE' 6 + foreground = '#000000' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#CC3E28' 12 + green = '#216609' 13 + yellow = '#B58900' 14 + blue = '#1E6FCC' 15 + magenta = '#5C21A5' 16 + cyan = '#158C86' 17 + white = '#AAAAAA' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#555555' 22 + red = '#CC3E28' 23 + green = '#216609' 24 + yellow = '#B58900' 25 + blue = '#1E6FCC' 26 + magenta = '#5C21A5' 27 + cyan = '#158C86' 28 + white = '#AAAAAA'
+33
config/alacritty/themes/themes/pastel_dark.toml
··· 1 + # From iTerm2 Pastel Dark theme 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#000000' 6 + foreground = '#C7C7C7' 7 + 8 + # Cursor colors 9 + [colors.cursor] 10 + text = '#FFFEFF' 11 + cursor = '#FFB472' 12 + 13 + # Normal colors 14 + [colors.normal] 15 + black = '#616161' 16 + red = '#FF8272' 17 + green = '#B4FA72' 18 + yellow = '#FEFDC2' 19 + blue = '#A5D5FE' 20 + magenta = '#FF8FFD' 21 + cyan = '#D0D1FE' 22 + white = '#F1F1F1' 23 + 24 + # Bright colors 25 + [colors.bright] 26 + black = '#8E8E8E' 27 + red = '#FFC4BD' 28 + green = '#D6FCB9' 29 + yellow = '#FEFDD5' 30 + blue = '#C1E3FE' 31 + magenta = '#FFB1FE' 32 + cyan = '#E5E6FE' 33 + white = '#FFFEFF'
+28
config/alacritty/themes/themes/pencil_dark.toml
··· 1 + # Colors (Pencil Dark) 2 + 3 + # Default Colors 4 + [colors.primary] 5 + background = '#212121' 6 + foreground = '#f1f1f1' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#212121' 11 + red = '#c30771' 12 + green = '#10a778' 13 + yellow = '#a89c14' 14 + blue = '#008ec4' 15 + magenta = '#523c79' 16 + cyan = '#20a5ba' 17 + white = '#e0e0e0' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#818181' 22 + red = '#fb007a' 23 + green = '#5fd7af' 24 + yellow = '#f3e430' 25 + blue = '#20bbfc' 26 + magenta = '#6855de' 27 + cyan = '#4fb8cc' 28 + white = '#f1f1f1'
+28
config/alacritty/themes/themes/pencil_light.toml
··· 1 + # Colors (Pencil Light) 2 + 3 + # Default Colors 4 + [colors.primary] 5 + background = '#f1f1f1' 6 + foreground = '#424242' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#212121' 11 + red = '#c30771' 12 + green = '#10a778' 13 + yellow = '#a89c14' 14 + blue = '#008ec4' 15 + magenta = '#523c79' 16 + cyan = '#20a5ba' 17 + white = '#e0e0e0' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#212121' 22 + red = '#fb007a' 23 + green = '#5fd7af' 24 + yellow = '#f3e430' 25 + blue = '#20bbfc' 26 + magenta = '#6855de' 27 + cyan = '#4fb8cc' 28 + white = '#f1f1f1'
+26
config/alacritty/themes/themes/rainbow.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#192835' 4 + foreground = '#AADA4F' 5 + 6 + # Normal colors 7 + [colors.normal] 8 + black = '#5B4375' 9 + red = '#426bb6' 10 + green = '#2286b5' 11 + yellow = '#5ab782' 12 + blue = '#93ca5b' 13 + magenta = '#c6c842' 14 + cyan = '#8a5135' 15 + white = '#c54646' 16 + 17 + # Bright colors 18 + [colors.bright] 19 + black = '#5B4375' 20 + red = '#426bb6' 21 + green = '#2286b5' 22 + yellow = '#5ab782' 23 + blue = '#93ca5b' 24 + magenta = '#c6c842' 25 + cyan = '#8a5135' 26 + white = '#c54646'
+33
config/alacritty/themes/themes/rasmus.toml
··· 1 + # Colors (Rasmus) 2 + colors: 3 + # Default colors 4 + primary: 5 + background: '#1a1a19' 6 + foreground: '#d1d1d1' 7 + 8 + # Cursor colors 9 + cursor: 10 + text: '#1a1a19' 11 + cursor: '#d1d1d1' 12 + 13 + # Normal colors 14 + normal: 15 + black: '#333332' 16 + red: '#ff968c' 17 + green: '#61957f' 18 + yellow: '#ffc591' 19 + blue: '#8db4d4' 20 + magenta: '#de9bc8' 21 + cyan: '#7bb099' 22 + white: '#d1d1d1' 23 + 24 + # Bright colors 25 + bright: 26 + black: '#4c4c4b' 27 + red: '#ffafa5' 28 + green: '#7aae98' 29 + yellow: '#ffdeaa' 30 + blue: '#a6cded' 31 + magenta: '#f7b4e1' 32 + cyan: '#94c9b2' 33 + white: '#eaeaea'
+29
config/alacritty/themes/themes/remedy_dark.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#2c2b2a' 4 + foreground = '#f9e7c4' 5 + 6 + dim_foreground = '#685E4A' 7 + bright_foreground = '#1C1508' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#282a2e' 12 + red = '#a54242' 13 + green = '#8c9440' 14 + yellow = '#de935f' 15 + blue = '#5f819d' 16 + magenta = '#85678f' 17 + cyan = '#5e8d87' 18 + white = '#707880' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#373b41' 23 + red = '#cc6666' 24 + green = '#b5bd68' 25 + yellow = '#f0c674' 26 + blue = '#81a2be' 27 + magenta = '#b294bb' 28 + cyan = '#8abeb7' 29 + white = '#c5c8c6'
+39
config/alacritty/themes/themes/rose-pine-dawn.toml
··· 1 + [colors.primary] 2 + background = '#faf4ed' 3 + foreground = '#575279' 4 + 5 + [colors.cursor] 6 + text = '#575279' 7 + cursor = '#cecacd' 8 + 9 + [colors.vi_mode_cursor] 10 + text = '#575279' 11 + cursor = '#cecacd' 12 + 13 + [colors.selection] 14 + text = '#575279' 15 + background = '#dfdad9' 16 + 17 + [colors.normal] 18 + black = '#f2e9e1' 19 + red = '#b4637a' 20 + green = '#286983' 21 + yellow = '#ea9d34' 22 + blue = '#56949f' 23 + magenta = '#907aa9' 24 + cyan = '#d7827e' 25 + white = '#575279' 26 + 27 + [colors.bright] 28 + black = '#9893a5' 29 + red = '#b4637a' 30 + green = '#286983' 31 + yellow = '#ea9d34' 32 + blue = '#56949f' 33 + magenta = '#907aa9' 34 + cyan = '#d7827e' 35 + white = '#575279' 36 + 37 + [colors.hints] 38 + start = { foreground = '#797593', background = '#fffaf3' } 39 + end = { foreground = '#9893a5', background = '#fffaf3' }
+38
config/alacritty/themes/themes/rose-pine-moon.toml
··· 1 + [colors.primary] 2 + background = '#232136' 3 + foreground = '#e0def4' 4 + 5 + [colors.cursor] 6 + text = '#e0def4' 7 + cursor = '#56526e' 8 + 9 + [colors.vi_mode_cursor] 10 + text = '#e0def4' 11 + cursor = '#56526e' 12 + 13 + [colors.selection] 14 + text = '#e0def4' 15 + background = '#44415a' 16 + [colors.normal] 17 + black = '#393552' 18 + red = '#eb6f92' 19 + green = '#3e8fb0' 20 + yellow = '#f6c177' 21 + blue = '#9ccfd8' 22 + magenta = '#c4a7e7' 23 + cyan = '#ea9a97' 24 + white = '#e0def4' 25 + 26 + [colors.bright] 27 + black = '#6e6a86' 28 + red = '#eb6f92' 29 + green = '#3e8fb0' 30 + yellow = '#f6c177' 31 + blue = '#9ccfd8' 32 + magenta = '#c4a7e7' 33 + cyan = '#ea9a97' 34 + white = '#e0def4' 35 + 36 + [colors.hints] 37 + start = { foreground = '#908caa', background = '#2a273f' } 38 + end = { foreground = '#6e6a86', background = '#2a273f' }
+39
config/alacritty/themes/themes/rose-pine.toml
··· 1 + [colors.primary] 2 + background = '#191724' 3 + foreground = '#e0def4' 4 + 5 + [colors.cursor] 6 + text = '#e0def4' 7 + cursor = '#524f67' 8 + 9 + [colors.vi_mode_cursor] 10 + text = '#e0def4' 11 + cursor = '#524f67' 12 + 13 + [colors.selection] 14 + text = '#e0def4' 15 + background = '#403d52' 16 + 17 + [colors.normal] 18 + black = '#26233a' 19 + red = '#eb6f92' 20 + green = '#31748f' 21 + yellow = '#f6c177' 22 + blue = '#9ccfd8' 23 + magenta = '#c4a7e7' 24 + cyan = '#ebbcba' 25 + white = '#e0def4' 26 + 27 + [colors.bright] 28 + black = '#6e6a86' 29 + red = '#eb6f92' 30 + green = '#31748f' 31 + yellow = '#f6c177' 32 + blue = '#9ccfd8' 33 + magenta = '#c4a7e7' 34 + cyan = '#ebbcba' 35 + white = '#e0def4' 36 + 37 + [colors.hints] 38 + start = {foreground = '#908caa', background = '#1f1d2e' } 39 + end = { foreground = '#6e6a86', background = '#1f1d2e' }
+37
config/alacritty/themes/themes/seashells.toml
··· 1 + # Colors (SeaShells) 2 + # Source https//raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/master/schemes/SeaShells.itermcolors 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#061923' 7 + foreground = '#e5c49e' 8 + 9 + [colors.cursor] 10 + text = '#061822' 11 + cursor = '#feaf3c' 12 + 13 + [colors.selection] 14 + text = '#ffe9d7' 15 + background = '#265b75' 16 + 17 + # Normal colors 18 + [colors.normal] 19 + black = '#1d485f' 20 + red = '#db662d' 21 + green = '#008eab' 22 + yellow = '#feaf3c' 23 + blue = '#255a62' 24 + magenta = '#77dbf4' 25 + cyan = '#5fb1c2' 26 + white = '#e5c49e' 27 + 28 + # Bright colors 29 + [colors.bright] 30 + black = '#545d65' 31 + red = '#dd998a' 32 + green = '#739da8' 33 + yellow = '#fedaae' 34 + blue = '#0bc7e3' 35 + magenta = '#c6e8f1' 36 + cyan = '#97b9c0' 37 + white = '#ffe9d7'
+33
config/alacritty/themes/themes/smoooooth.toml
··· 1 + # Color theme ported from iTerm 2 Smoooooth 2 + 3 + [colors.primary] 4 + foreground = '#dbdbdb' 5 + background = '#14191e' 6 + 7 + [colors.cursor] 8 + text = '#000000' 9 + cursor = '#fefffe' 10 + 11 + [colors.selection] 12 + text = '#000000' 13 + background = '#b3d7ff' 14 + 15 + [colors.normal] 16 + black = '#14191e' 17 + red = '#b43c29' 18 + green = '#00c200' 19 + yellow = '#c7c400' 20 + blue = '#2743c7' 21 + magenta = '#bf3fbd' 22 + cyan = '#00c5c7' 23 + white = '#c7c7c7' 24 + 25 + [colors.bright] 26 + black = '#676767' 27 + red = '#dc7974' 28 + green = '#57e690' 29 + yellow = '#ece100' 30 + blue = '#a6aaf1' 31 + magenta = '#e07de0' 32 + cyan = '#5ffdff' 33 + white = '#feffff'
+28
config/alacritty/themes/themes/snazzy.toml
··· 1 + # Colors (Snazzy) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#282a36' 6 + foreground = '#eff0eb' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#282a36' 11 + red = '#ff5c57' 12 + green = '#5af78e' 13 + yellow = '#f3f99d' 14 + blue = '#57c7ff' 15 + magenta = '#ff6ac1' 16 + cyan = '#9aedfe' 17 + white = '#f1f1f0' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#686868' 22 + red = '#ff5c57' 23 + green = '#5af78e' 24 + yellow = '#f3f99d' 25 + blue = '#57c7ff' 26 + magenta = '#ff6ac1' 27 + cyan = '#9aedfe' 28 + white = '#f1f1f0'
+28
config/alacritty/themes/themes/solarized_dark.toml
··· 1 + # Colors (Solarized Dark) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#002b36' 6 + foreground = '#839496' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#073642' 11 + red = '#dc322f' 12 + green = '#859900' 13 + yellow = '#b58900' 14 + blue = '#268bd2' 15 + magenta = '#d33682' 16 + cyan = '#2aa198' 17 + white = '#eee8d5' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#002b36' 22 + red = '#cb4b16' 23 + green = '#586e75' 24 + yellow = '#657b83' 25 + blue = '#839496' 26 + magenta = '#6c71c4' 27 + cyan = '#93a1a1' 28 + white = '#fdf6e3'
+28
config/alacritty/themes/themes/solarized_light.toml
··· 1 + # Colors (Solarized Light) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#fdf6e3' 6 + foreground = '#586e75' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#073642' 11 + red = '#dc322f' 12 + green = '#859900' 13 + yellow = '#b58900' 14 + blue = '#268bd2' 15 + magenta = '#d33682' 16 + cyan = '#2aa198' 17 + white = '#eee8d5' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#002b36' 22 + red = '#cb4b16' 23 + green = '#586e75' 24 + yellow = '#657b83' 25 + blue = '#839496' 26 + magenta = '#6c71c4' 27 + cyan = '#93a1a1' 28 + white = '#fdf6e3'
+29
config/alacritty/themes/themes/solarized_osaka.toml
··· 1 + # Colors (Solarized Osaka) 2 + # Source https://github.com/craftzdog/solarized-osaka.nvim 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#001a1d' 7 + foreground = '#839496' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#073642' 12 + red = '#dc322f' 13 + green = '#859900' 14 + yellow = '#b58900' 15 + blue = '#268bd2' 16 + magenta = '#d33682' 17 + cyan = '#2aa198' 18 + white = '#eee8d5' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#4c4c4c' 23 + red = '#cb4b16' 24 + green = '#586e75' 25 + yellow = '#657b83' 26 + blue = '#839496' 27 + magenta = '#6c71c4' 28 + cyan = '#93a1a1' 29 + white = '#fdf6e3'
+32
config/alacritty/themes/themes/taerminal.toml
··· 1 + # Colors (Taerminal) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#26282a' 6 + foreground = '#f0f0f0' 7 + 8 + [colors.cursor] 9 + background = '#f0f0f0' 10 + foreground = '#26282a' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#26282a' 15 + red = '#ff8878' 16 + green = '#b4fb73' 17 + yellow = '#fffcb7' 18 + blue = '#8bbce5' 19 + magenta = '#ffb2fe' 20 + cyan = '#a2e1f8' 21 + white = '#f1f1f1' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#6f6f6f' 26 + red = '#fe978b' 27 + green = '#d6fcba' 28 + yellow = '#fffed5' 29 + blue = '#c2e3ff' 30 + magenta = '#ffc6ff' 31 + cyan = '#c0e9f8' 32 + white = '#ffffff'
+25
config/alacritty/themes/themes/tango_dark.toml
··· 1 + # GNOME Terminal Tango Dark 2 + 3 + [colors.primary] 4 + background = '#2e3436' 5 + foreground = '#d3d7cf' 6 + 7 + [colors.normal] 8 + black = '#2e3436' 9 + red = '#cc0000' 10 + green = '#4e9a06' 11 + yellow = '#c4a000' 12 + blue = '#3465a4' 13 + magenta = '#75507b' 14 + cyan = '#06989a' 15 + white = '#d3d7cf' 16 + 17 + [colors.bright] 18 + black = '#555753' 19 + red = '#ef2929' 20 + green = '#8ae234' 21 + yellow = '#fce94f' 22 + blue = '#729fcf' 23 + magenta = '#ad7fa8' 24 + cyan = '#34e2e2' 25 + white = '#eeeeec'
+26
config/alacritty/themes/themes/tender.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#282828' 4 + foreground = '#eeeeee' 5 + 6 + # Normal colors 7 + [colors.normal] 8 + black = '#282828' 9 + red = '#f43753' 10 + green = '#c9d05c' 11 + yellow = '#ffc24b' 12 + blue = '#b3deef' 13 + magenta = '#d3b987' 14 + cyan = '#73cef4' 15 + white = '#eeeeee' 16 + 17 + # Bright colors 18 + [colors.bright] 19 + black = '#4c4c4c' 20 + red = '#f43753' 21 + green = '#c9d05c' 22 + yellow = '#ffc24b' 23 + blue = '#b3deef' 24 + magenta = '#d3b987' 25 + cyan = '#73cef4' 26 + white = '#feffff'
+28
config/alacritty/themes/themes/terminal_app.toml
··· 1 + # Colors (Terminal.app) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#000000' 6 + foreground = '#b6b6b6' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#990000' 12 + green = '#00a600' 13 + yellow = '#999900' 14 + blue = '#0000b2' 15 + magenta = '#b200b2' 16 + cyan = '#00a6b2' 17 + white = '#bfbfbf' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#666666' 22 + red = '#e50000' 23 + green = '#00d900' 24 + yellow = '#e5e500' 25 + blue = '#0000ff' 26 + magenta = '#e500e5' 27 + cyan = '#00e5e5' 28 + white = '#e5e5e5'
+26
config/alacritty/themes/themes/thelovelace.toml
··· 1 + # Default colors 2 + [colors.primary] 3 + background = '#1D1F28' 4 + foreground = '#FDFDFD' 5 + 6 + # Normal colors 7 + [colors.normal] 8 + # Bright colors 9 + black = '#282A36' 10 + red = '#F37F97' 11 + green = '#5ADECD' 12 + yellow = '#F2A272' 13 + blue = '#8897F4' 14 + magenta = '#C574DD' 15 + cyan = '#79E6F3' 16 + white = '#FDFDFD' 17 + 18 + [colors.bright] 19 + black = '#414458' 20 + red = '#FF4971' 21 + green = '#18E3C8' 22 + yellow = '#EBCB8B' 23 + blue = '#FF8037' 24 + magenta = '#556FFF' 25 + cyan = '#3FDCEE' 26 + white = '#BEBEC1'
+29
config/alacritty/themes/themes/tokyo-night-storm.toml
··· 1 + # Colors (Tokyo Night Storm variant) 2 + # Source https//github.com/zatchheems/tokyo-night-alacritty-theme 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#24283b' 7 + foreground = '#a9b1d6' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#32344a' 12 + red = '#f7768e' 13 + green = '#9ece6a' 14 + yellow = '#e0af68' 15 + blue = '#7aa2f7' 16 + magenta = '#ad8ee6' 17 + cyan = '#449dab' 18 + white = '#9699a8' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#444b6a' 23 + red = '#ff7a93' 24 + green = '#b9f27c' 25 + yellow = '#ff9e64' 26 + blue = '#7da6ff' 27 + magenta = '#bb9af7' 28 + cyan = '#0db9d7' 29 + white = '#acb0d0'
+29
config/alacritty/themes/themes/tokyo-night.toml
··· 1 + # Colors (Tokyo Night) 2 + # Source https//github.com/zatchheems/tokyo-night-alacritty-theme 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#1a1b26' 7 + foreground = '#a9b1d6' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#32344a' 12 + red = '#f7768e' 13 + green = '#9ece6a' 14 + yellow = '#e0af68' 15 + blue = '#7aa2f7' 16 + magenta = '#ad8ee6' 17 + cyan = '#449dab' 18 + white = '#787c99' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#444b6a' 23 + red = '#ff7a93' 24 + green = '#b9f27c' 25 + yellow = '#ff9e64' 26 + blue = '#7da6ff' 27 + magenta = '#bb9af7' 28 + cyan = '#0db9d7' 29 + white = '#acb0d0'
+32
config/alacritty/themes/themes/tomorrow_night.toml
··· 1 + # Colors (Tomorrow Night) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1d1f21' 6 + foreground = '#c5c8c6' 7 + 8 + [colors.cursor] 9 + text = '#1d1f21' 10 + cursor = '#ffffff' 11 + 12 + # Normal colors 13 + [colors.normal] 14 + black = '#1d1f21' 15 + red = '#cc6666' 16 + green = '#b5bd68' 17 + yellow = '#e6c547' 18 + blue = '#81a2be' 19 + magenta = '#b294bb' 20 + cyan = '#70c0ba' 21 + white = '#373b41' 22 + 23 + # Bright colors 24 + [colors.bright] 25 + black = '#666666' 26 + red = '#ff3334' 27 + green = '#9ec400' 28 + yellow = '#f0c674' 29 + blue = '#81a2be' 30 + magenta = '#b77ee0' 31 + cyan = '#54ced6' 32 + white = '#282a2e'
+28
config/alacritty/themes/themes/tomorrow_night_bright.toml
··· 1 + # Colors (Tomorrow Night Bright) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#000000' 6 + foreground = '#eaeaea' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#d54e53' 12 + green = '#b9ca4a' 13 + yellow = '#e6c547' 14 + blue = '#7aa6da' 15 + magenta = '#c397d8' 16 + cyan = '#70c0ba' 17 + white = '#424242' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#666666' 22 + red = '#ff3334' 23 + green = '#9ec400' 24 + yellow = '#e7c547' 25 + blue = '#7aa6da' 26 + magenta = '#b77ee0' 27 + cyan = '#54ced6' 28 + white = '#2a2a2a'
+33
config/alacritty/themes/themes/ubuntu.toml
··· 1 + # 0x From the Ubuntu terminal color palette 2 + 3 + # 0x Default colors 4 + [colors.primary] 5 + background = '#300a24' 6 + foreground = '#eeeeec' 7 + 8 + # 0x Colors the cursor will use if `custom_cursor_colors` is true 9 + [colors.cursor] 10 + text = '#bbbbbb' 11 + cursor = '#b4d5ff' 12 + 13 + # 0x Normal colors 14 + [colors.normal] 15 + black = '#2e3436' 16 + red = '#cc0000' 17 + green = '#4e9a06' 18 + yellow = '#c4a000' 19 + blue = '#3465a4' 20 + magenta = '#75507b' 21 + cyan = '#06989a' 22 + white = '#d3d7cf' 23 + 24 + # 0x Bright colors 25 + [colors.bright] 26 + black = '#555753' 27 + red = '#ef2929' 28 + green = '#8ae234' 29 + yellow = '#fce94f' 30 + blue = '#729fcf' 31 + magenta = '#ad7fa8' 32 + cyan = '#34e2e2' 33 + white = '#eeeeec'
+52
config/alacritty/themes/themes/umbraline.toml
··· 1 + # Colors (umbraline) 2 + # Gruvbox-inspired palette with 3 main accents: 3 + # Yellow (functions/types/constants), Green (strings), Red (errors) 4 + # "lack" blue as cool neutral hint color 5 + 6 + # Default colors 7 + [colors.primary] 8 + background = '#1d2021' 9 + foreground = '#fbf1c7' 10 + 11 + # Cursor colors 12 + [colors.cursor] 13 + cursor = '#fbf1c7' 14 + text = '#1d2021' 15 + 16 + # Selection colors 17 + [colors.selection] 18 + background = '#2f3836' 19 + text = '#fbf1c7' 20 + 21 + # Normal colors (matching Neovim terminal ANSI) 22 + [colors.normal] 23 + black = '#504945' 24 + red = '#fb4934' 25 + green = '#b8bb26' 26 + yellow = '#fabd2f' 27 + blue = '#83a598' 28 + magenta = '#83a598' 29 + cyan = '#83a598' 30 + white = '#fbf1c7' 31 + 32 + # Bright colors (matching Neovim terminal ANSI) 33 + [colors.bright] 34 + black = '#928374' 35 + red = '#d98a93' 36 + green = '#c7d5c0' 37 + yellow = '#dbd3bd' 38 + blue = '#c0cad4' 39 + magenta = '#c0cad4' 40 + cyan = '#c0cad4' 41 + white = '#fbf1c7' 42 + 43 + # Dim colors 44 + [colors.dim] 45 + black = '#141617' 46 + red = '#a0454e' 47 + green = '#7a7d1e' 48 + yellow = '#a1834c' 49 + blue = '#566c64' 50 + magenta = '#566c64' 51 + cyan = '#566c64' 52 + white = '#a89984'
+26
config/alacritty/themes/themes/vesper.toml
··· 1 + # Colors (Vesper) 2 + # Source https://github.com/raunofreiberg/vesper 3 + 4 + [colors.primary] 5 + background = '#101010' 6 + foreground = '#ffffff' 7 + 8 + [colors.normal] 9 + black = '#101010' 10 + red = '#f5a191' 11 + green = '#90b99f' 12 + yellow = '#e6b99d' 13 + blue = '#aca1cf' 14 + magenta = '#e29eca' 15 + cyan = '#ea83a5' 16 + white = '#a0a0a0' 17 + 18 + [colors.bright] 19 + black = '#7e7e7e' 20 + red = '#ff8080' 21 + green = '#99ffe4' 22 + yellow = '#ffc799' 23 + blue = '#b9aeda' 24 + magenta = '#ecaad6' 25 + cyan = '#f591b2' 26 + white = '#ffffff'
+28
config/alacritty/themes/themes/wombat.toml
··· 1 + # Colors (Wombat) 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#1f1f1f' 6 + foreground = '#e5e1d8' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#f7786d' 12 + green = '#bde97c' 13 + yellow = '#efdfac' 14 + blue = '#6ebaf8' 15 + magenta = '#ef88ff' 16 + cyan = '#90fdf8' 17 + white = '#e5e1d8' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#b4b4b4' 22 + red = '#f99f92' 23 + green = '#e3f7a1' 24 + yellow = '#f2e9bf' 25 + blue = '#b3d2ff' 26 + magenta = '#e5bdff' 27 + cyan = '#c2fefa' 28 + white = '#ffffff'
+28
config/alacritty/themes/themes/xterm.toml
··· 1 + # XTerm's default colors 2 + 3 + # Default colors 4 + [colors.primary] 5 + background = '#000000' 6 + foreground = '#ffffff' 7 + 8 + # Normal colors 9 + [colors.normal] 10 + black = '#000000' 11 + red = '#cd0000' 12 + green = '#00cd00' 13 + yellow = '#cdcd00' 14 + blue = '#0000ee' 15 + magenta = '#cd00cd' 16 + cyan = '#00cdcd' 17 + white = '#e5e5e5' 18 + 19 + # Bright colors 20 + [colors.bright] 21 + black = '#7f7f7f' 22 + red = '#ff0000' 23 + green = '#00ff00' 24 + yellow = '#ffff00' 25 + blue = '#5c5cff' 26 + magenta = '#ff00ff' 27 + cyan = '#00ffff' 28 + white = '#ffffff'
+29
config/alacritty/themes/themes/zenburn.toml
··· 1 + # Colors (Zenburn) 2 + # Orginally designed by jnurmine for vim. 3 + 4 + # Default colors 5 + [colors.primary] 6 + background = '#3A3A3A' 7 + foreground = '#DCDCCC' 8 + 9 + # Normal colors 10 + [colors.normal] 11 + black = '#1E2320' 12 + red = '#D78787' 13 + green = '#60B48A' 14 + yellow = '#DFAF8F' 15 + blue = '#506070' 16 + magenta = '#DC8CC3' 17 + cyan = '#8CD0D3' 18 + white = '#DCDCCC' 19 + 20 + # Bright colors 21 + [colors.bright] 22 + black = '#709080' 23 + red = '#DCA3A3' 24 + green = '#C3BF9F' 25 + yellow = '#F0DFAF' 26 + blue = '#94BFF3' 27 + magenta = '#EC93D3' 28 + cyan = '#93E0E3' 29 + white = '#FFFFFF'
+34
config/ghostty/config
··· 1 + # config-file = keybinds 2 + notify-on-command-finish = unfocused 3 + notify-on-command-finish-action = no-bell,notify 4 + notify-on-command-finish-after = 0s 5 + 6 + # font 7 + font-family = Terminess Nerd Font Mono 8 + font-size = 19 9 + font-thicken = true 10 + # window-inherit-font-size = false 11 + 12 + # window 13 + macos-titlebar-style = tabs 14 + mouse-hide-while-typing = true 15 + # window-save-state = always 16 + 17 + background-opacity = 0.9 18 + background-blur = true 19 + 20 + # theme 21 + # theme = umbraline 22 + theme = Cursor Dark 23 + 24 + # keybinds 25 + keybind = ctrl+1=goto_tab:1 26 + keybind = ctrl+2=goto_tab:2 27 + keybind = ctrl+3=goto_tab:3 28 + keybind = ctrl+4=goto_tab:4 29 + keybind = ctrl+5=goto_tab:5 30 + keybind = ctrl+6=goto_tab:6 31 + keybind = ctrl+7=goto_tab:7 32 + keybind = ctrl+8=goto_tab:8 33 + 34 + config-file = "vim.ghostty"
+21
config/ghostty/themes/ashen
··· 1 + palette = 0=#121212 2 + palette = 1=#933737 3 + palette = 2=#D87C4A 4 + palette = 3=#BD4C4C 5 + palette = 4=#949494 6 + palette = 5=#949494 7 + palette = 6=#a7a7a7 8 + palette = 7=#b4b4b4 9 + palette = 8=#d5d5d5 10 + palette = 9=#933737 11 + palette = 10=#D87C4A 12 + palette = 11=#BD4C4C 13 + palette = 12=#949494 14 + palette = 13=#a7a7a7 15 + palette = 14=#b4b4b4 16 + palette = 15=#d5d5d5 17 + background = 121212 18 + foreground = f5f5f5 19 + cursor-color = b4b4b4 20 + selection-background = b4b4b4 21 + selection-foreground = f5f5f5
+21
config/ghostty/themes/mellifluous
··· 1 + palette = 0=#1d1d1d 2 + palette = 1=#d0a08a 3 + palette = 2=#accca4 4 + palette = 3=#bccda1 5 + palette = 4=#bf9ac1 6 + palette = 5=#bc9ead 7 + palette = 6=#cbd19f 8 + palette = 7=#dddddd 9 + palette = 8=#707070 10 + palette = 9=#e9ccb9 11 + palette = 10=#cde6c8 12 + palette = 11=#d9edc5 13 + palette = 12=#dcbedd 14 + palette = 13=#d9c3d2 15 + palette = 14=#e3e5c9 16 + palette = 15=#ffffff 17 + foreground = dddddd 18 + background = 1d1d1d 19 + cursor-color = dddddd 20 + selection-foreground = 1d1d1d 21 + selection-background = dddddd
+22
config/ghostty/themes/umbraline
··· 1 + palette = 0=#504945 2 + palette = 1=#fb4934 3 + palette = 2=#b8bb26 4 + palette = 3=#fabd2f 5 + palette = 4=#83a598 6 + palette = 5=#83a598 7 + palette = 6=#83a598 8 + palette = 7=#fbf1c7 9 + palette = 8=#928374 10 + palette = 9=#d98a93 11 + palette = 10=#c7d5c0 12 + palette = 11=#dbd3bd 13 + palette = 12=#c0cad4 14 + palette = 13=#c0cad4 15 + palette = 14=#c0cad4 16 + palette = 15=#fbf1c7 17 + background = #1d2021 18 + foreground = #fbf1c7 19 + cursor-color = #fbf1c7 20 + cursor-text = #1d2021 21 + selection-background = #2f3836 22 + selection-foreground = #fbf1c7
+12
config/ghostty/vim.ghostty
··· 1 + keybind = ctrl+space>v=activate_key_table:vim 2 + keybind = vim/escape=deactivate_key_table 3 + keybind = vim/ctrl+c=deactivate_key_table 4 + 5 + keybind = vim/ctrl+u=scroll_page_fractional:-0.5 6 + keybind = vim/ctrl+d=scroll_page_fractional:0.5 7 + keybind = vim/k=scroll_page_lines:-1 8 + keybind = vim/j=scroll_page_lines:1 9 + keybind = vim/g>g=scroll_to_top 10 + keybind = vim/shift+g=scroll_to_bottom 11 + 12 + keybind = vim/catch_all=ignore
+35
config/helix/config.toml
··· 1 + #theme = "gruvbox" 2 + theme = "monokai_pro_spectrum" 3 + 4 + [editor] 5 + line-number = "relative" 6 + #color-modes = true 7 + 8 + [keys.normal] 9 + V = "extend_line_below" 10 + D = "delete_selection" 11 + esc = ["collapse_selection", "keep_primary_selection"] 12 + "}" = "goto_next_paragraph" 13 + "{" = "goto_prev_paragraph" 14 + 15 + [keys.insert] 16 + j = {k = "normal_mode"} 17 + 18 + [editor.cursor-shape] 19 + insert = "bar" 20 + normal = "block" 21 + select = "underline" 22 + 23 + [editor.statusline] 24 + left = ["mode", "spinner"] 25 + center = ["file-name"] 26 + right = ["diagnostics", "workspace-diagnostics", "spacer", "separator", "position", "position-percentage", "spacer", "separator", "file-type"] 27 + mode.normal = "NORMAL" 28 + mode.insert = "--INSERT--" 29 + mode.select = "SELECT" 30 + 31 + [editor.lsp] 32 + display-messages = true 33 + 34 + [editor.file-picker] 35 + hidden = false
+227
config/karabiner/automatic_backups/karabiner_20250201.json
··· 1 + { 2 + "profiles": [ 3 + { 4 + "complex_modifications": { 5 + "rules": [ 6 + { 7 + "description": "homerow mods 'a s Opt Cmd g h Cmd Opt Ctrl ñ", 8 + "manipulators": [ 9 + { 10 + "from": { 11 + "key_code": "d", 12 + "modifiers": { "optional": ["any"] } 13 + }, 14 + "parameters": { 15 + "basic.to_delayed_action_delay_milliseconds": 100, 16 + "basic.to_if_held_down_threshold_milliseconds": 100 17 + }, 18 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "d" }] }, 19 + "to_if_alone": [ 20 + { 21 + "halt": true, 22 + "key_code": "d" 23 + } 24 + ], 25 + "to_if_held_down": [{ "key_code": "left_option" }], 26 + "type": "basic" 27 + }, 28 + { 29 + "from": { 30 + "key_code": "f", 31 + "modifiers": { "optional": ["any"] } 32 + }, 33 + "parameters": { 34 + "basic.to_delayed_action_delay_milliseconds": 100, 35 + "basic.to_if_held_down_threshold_milliseconds": 100 36 + }, 37 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "f" }] }, 38 + "to_if_alone": [ 39 + { 40 + "halt": true, 41 + "key_code": "f" 42 + } 43 + ], 44 + "to_if_held_down": [{ "key_code": "left_command" }], 45 + "type": "basic" 46 + }, 47 + { 48 + "from": { 49 + "key_code": "j", 50 + "modifiers": {} 51 + }, 52 + "parameters": { 53 + "basic.to_delayed_action_delay_milliseconds": 200, 54 + "basic.to_if_held_down_threshold_milliseconds": 200 55 + }, 56 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "j" }] }, 57 + "to_if_alone": [ 58 + { 59 + "halt": true, 60 + "key_code": "j" 61 + } 62 + ], 63 + "to_if_held_down": [{ "key_code": "right_command" }], 64 + "type": "basic" 65 + }, 66 + { 67 + "from": { 68 + "key_code": "k", 69 + "modifiers": {} 70 + }, 71 + "parameters": { 72 + "basic.to_delayed_action_delay_milliseconds": 200, 73 + "basic.to_if_held_down_threshold_milliseconds": 200 74 + }, 75 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "k" }] }, 76 + "to_if_alone": [ 77 + { 78 + "halt": true, 79 + "key_code": "k" 80 + } 81 + ], 82 + "to_if_held_down": [{ "key_code": "right_option" }], 83 + "type": "basic" 84 + }, 85 + { 86 + "from": { 87 + "key_code": "quote", 88 + "modifiers": { "optional": ["any"] } 89 + }, 90 + "parameters": { 91 + "basic.to_delayed_action_delay_milliseconds": 100, 92 + "basic.to_if_held_down_threshold_milliseconds": 100 93 + }, 94 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "quote" }] }, 95 + "to_if_alone": [ 96 + { 97 + "halt": true, 98 + "key_code": "quote" 99 + } 100 + ], 101 + "to_if_held_down": [{ "key_code": "right_control" }], 102 + "type": "basic" 103 + } 104 + ] 105 + }, 106 + { 107 + "description": "right_command+u to prev_tab, right_command+i to next_tab", 108 + "manipulators": [ 109 + { 110 + "from": { 111 + "key_code": "i", 112 + "modifiers": { 113 + "mandatory": ["right_command"], 114 + "optional": ["any"] 115 + } 116 + }, 117 + "to": [ 118 + { 119 + "key_code": "tab", 120 + "modifiers": ["left_control"] 121 + } 122 + ], 123 + "type": "basic" 124 + }, 125 + { 126 + "from": { 127 + "key_code": "u", 128 + "modifiers": { 129 + "mandatory": ["right_command"], 130 + "optional": ["any"] 131 + } 132 + }, 133 + "to": [ 134 + { 135 + "key_code": "tab", 136 + "modifiers": ["left_shift", "left_control"] 137 + } 138 + ], 139 + "type": "basic" 140 + } 141 + ] 142 + }, 143 + { 144 + "description": "Change right_command+hjkl to arrow keys", 145 + "manipulators": [ 146 + { 147 + "from": { 148 + "key_code": "h", 149 + "modifiers": { 150 + "mandatory": ["right_command"], 151 + "optional": ["any"] 152 + } 153 + }, 154 + "to": [{ "key_code": "left_arrow" }], 155 + "type": "basic" 156 + }, 157 + { 158 + "from": { 159 + "key_code": "j", 160 + "modifiers": { 161 + "mandatory": ["right_command"], 162 + "optional": ["any"] 163 + } 164 + }, 165 + "to": [{ "key_code": "down_arrow" }], 166 + "type": "basic" 167 + }, 168 + { 169 + "from": { 170 + "key_code": "k", 171 + "modifiers": { 172 + "mandatory": ["right_command"], 173 + "optional": ["any"] 174 + } 175 + }, 176 + "to": [{ "key_code": "up_arrow" }], 177 + "type": "basic" 178 + }, 179 + { 180 + "from": { 181 + "key_code": "l", 182 + "modifiers": { 183 + "mandatory": ["right_command"], 184 + "optional": ["any"] 185 + } 186 + }, 187 + "to": [{ "key_code": "right_arrow" }], 188 + "type": "basic" 189 + } 190 + ] 191 + } 192 + ] 193 + }, 194 + "devices": [ 195 + { 196 + "disable_built_in_keyboard_if_exists": true, 197 + "identifiers": { 198 + "is_keyboard": true, 199 + "product_id": 6519, 200 + "vendor_id": 12951 201 + }, 202 + "ignore": true 203 + }, 204 + { 205 + "identifiers": { 206 + "is_keyboard": true, 207 + "product_id": 832, 208 + "vendor_id": 1452 209 + }, 210 + "simple_modifications": [ 211 + { 212 + "from": { "key_code": "caps_lock" }, 213 + "to": [{ "key_code": "left_control" }] 214 + }, 215 + { 216 + "from": { "key_code": "left_control" }, 217 + "to": [{ "key_code": "caps_lock" }] 218 + } 219 + ] 220 + } 221 + ], 222 + "name": "Default profile", 223 + "selected": true, 224 + "virtual_hid_keyboard": { "keyboard_type_v2": "iso" } 225 + } 226 + ] 227 + }
+240
config/karabiner/automatic_backups/karabiner_20250225.json
··· 1 + { 2 + "profiles": [ 3 + { 4 + "complex_modifications": { 5 + "rules": [ 6 + { 7 + "description": "homerow mods 'a s Opt Cmd g h Cmd Opt Ctrl ñ", 8 + "manipulators": [ 9 + { 10 + "from": { 11 + "key_code": "d", 12 + "modifiers": { "optional": ["any"] } 13 + }, 14 + "parameters": { 15 + "basic.to_delayed_action_delay_milliseconds": 100, 16 + "basic.to_if_held_down_threshold_milliseconds": 100 17 + }, 18 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "d" }] }, 19 + "to_if_alone": [ 20 + { 21 + "halt": true, 22 + "key_code": "d" 23 + } 24 + ], 25 + "to_if_held_down": [{ "key_code": "left_option" }], 26 + "type": "basic" 27 + }, 28 + { 29 + "from": { 30 + "key_code": "f", 31 + "modifiers": { "optional": ["any"] } 32 + }, 33 + "parameters": { 34 + "basic.to_delayed_action_delay_milliseconds": 100, 35 + "basic.to_if_held_down_threshold_milliseconds": 100 36 + }, 37 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "f" }] }, 38 + "to_if_alone": [ 39 + { 40 + "halt": true, 41 + "key_code": "f" 42 + } 43 + ], 44 + "to_if_held_down": [{ "key_code": "left_command" }], 45 + "type": "basic" 46 + }, 47 + { 48 + "from": { 49 + "key_code": "j", 50 + "modifiers": {} 51 + }, 52 + "parameters": { 53 + "basic.to_delayed_action_delay_milliseconds": 200, 54 + "basic.to_if_held_down_threshold_milliseconds": 200 55 + }, 56 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "j" }] }, 57 + "to_if_alone": [ 58 + { 59 + "halt": true, 60 + "key_code": "j" 61 + } 62 + ], 63 + "to_if_held_down": [{ "key_code": "right_command" }], 64 + "type": "basic" 65 + }, 66 + { 67 + "from": { 68 + "key_code": "k", 69 + "modifiers": {} 70 + }, 71 + "parameters": { 72 + "basic.to_delayed_action_delay_milliseconds": 200, 73 + "basic.to_if_held_down_threshold_milliseconds": 200 74 + }, 75 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "k" }] }, 76 + "to_if_alone": [ 77 + { 78 + "halt": true, 79 + "key_code": "k" 80 + } 81 + ], 82 + "to_if_held_down": [{ "key_code": "right_option" }], 83 + "type": "basic" 84 + }, 85 + { 86 + "from": { 87 + "key_code": "quote", 88 + "modifiers": { "optional": ["any"] } 89 + }, 90 + "parameters": { 91 + "basic.to_delayed_action_delay_milliseconds": 100, 92 + "basic.to_if_held_down_threshold_milliseconds": 100 93 + }, 94 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "quote" }] }, 95 + "to_if_alone": [ 96 + { 97 + "halt": true, 98 + "key_code": "quote" 99 + } 100 + ], 101 + "to_if_held_down": [{ "key_code": "right_control" }], 102 + "type": "basic" 103 + } 104 + ] 105 + }, 106 + { 107 + "description": "right_command+u to prev_tab, right_command+i to next_tab", 108 + "manipulators": [ 109 + { 110 + "from": { 111 + "key_code": "i", 112 + "modifiers": { 113 + "mandatory": ["right_command"], 114 + "optional": ["any"] 115 + } 116 + }, 117 + "to": [ 118 + { 119 + "key_code": "tab", 120 + "modifiers": ["left_control"] 121 + } 122 + ], 123 + "type": "basic" 124 + }, 125 + { 126 + "from": { 127 + "key_code": "u", 128 + "modifiers": { 129 + "mandatory": ["right_command"], 130 + "optional": ["any"] 131 + } 132 + }, 133 + "to": [ 134 + { 135 + "key_code": "tab", 136 + "modifiers": ["left_shift", "left_control"] 137 + } 138 + ], 139 + "type": "basic" 140 + } 141 + ] 142 + }, 143 + { 144 + "description": "Change right_command+hjkl to arrow keys", 145 + "manipulators": [ 146 + { 147 + "from": { 148 + "key_code": "h", 149 + "modifiers": { 150 + "mandatory": ["right_command"], 151 + "optional": ["any"] 152 + } 153 + }, 154 + "to": [{ "key_code": "left_arrow" }], 155 + "type": "basic" 156 + }, 157 + { 158 + "from": { 159 + "key_code": "j", 160 + "modifiers": { 161 + "mandatory": ["right_command"], 162 + "optional": ["any"] 163 + } 164 + }, 165 + "to": [{ "key_code": "down_arrow" }], 166 + "type": "basic" 167 + }, 168 + { 169 + "from": { 170 + "key_code": "k", 171 + "modifiers": { 172 + "mandatory": ["right_command"], 173 + "optional": ["any"] 174 + } 175 + }, 176 + "to": [{ "key_code": "up_arrow" }], 177 + "type": "basic" 178 + }, 179 + { 180 + "from": { 181 + "key_code": "l", 182 + "modifiers": { 183 + "mandatory": ["right_command"], 184 + "optional": ["any"] 185 + } 186 + }, 187 + "to": [{ "key_code": "right_arrow" }], 188 + "type": "basic" 189 + } 190 + ] 191 + } 192 + ] 193 + }, 194 + "devices": [ 195 + { 196 + "disable_built_in_keyboard_if_exists": true, 197 + "identifiers": { 198 + "is_keyboard": true, 199 + "product_id": 6519, 200 + "vendor_id": 12951 201 + }, 202 + "ignore": true 203 + }, 204 + { 205 + "identifiers": { 206 + "is_keyboard": true, 207 + "product_id": 832, 208 + "vendor_id": 1452 209 + }, 210 + "simple_modifications": [ 211 + { 212 + "from": { "key_code": "caps_lock" }, 213 + "to": [{ "key_code": "left_control" }] 214 + }, 215 + { 216 + "from": { "key_code": "left_control" }, 217 + "to": [{ "key_code": "caps_lock" }] 218 + } 219 + ] 220 + }, 221 + { 222 + "identifiers": { "is_keyboard": true }, 223 + "simple_modifications": [ 224 + { 225 + "from": { "key_code": "caps_lock" }, 226 + "to": [{ "key_code": "left_control" }] 227 + }, 228 + { 229 + "from": { "key_code": "left_control" }, 230 + "to": [{ "key_code": "caps_lock" }] 231 + } 232 + ] 233 + } 234 + ], 235 + "name": "Default profile", 236 + "selected": true, 237 + "virtual_hid_keyboard": { "keyboard_type_v2": "iso" } 238 + } 239 + ] 240 + }
+221
config/karabiner/automatic_backups/karabiner_20250712.json
··· 1 + { 2 + "profiles": [ 3 + { 4 + "complex_modifications": { 5 + "rules": [ 6 + { 7 + "description": "homerow mods 'a s Opt Cmd g h Cmd Opt Ctrl ñ", 8 + "manipulators": [ 9 + { 10 + "from": { 11 + "key_code": "s", 12 + "modifiers": { "optional": ["any"] } 13 + }, 14 + "parameters": { 15 + "basic.to_delayed_action_delay_milliseconds": 180, 16 + "basic.to_if_held_down_threshold_milliseconds": 180 17 + }, 18 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "s" }] }, 19 + "to_if_alone": [ 20 + { 21 + "halt": true, 22 + "key_code": "s" 23 + } 24 + ], 25 + "to_if_held_down": [{ "key_code": "left_option" }], 26 + "type": "basic" 27 + }, 28 + { 29 + "from": { 30 + "key_code": "a", 31 + "modifiers": { "optional": ["any"] } 32 + }, 33 + "parameters": { 34 + "basic.to_delayed_action_delay_milliseconds": 180, 35 + "basic.to_if_held_down_threshold_milliseconds": 180 36 + }, 37 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "a" }] }, 38 + "to_if_alone": [ 39 + { 40 + "halt": true, 41 + "key_code": "a" 42 + } 43 + ], 44 + "to_if_held_down": [{ "key_code": "left_command" }], 45 + "type": "basic" 46 + }, 47 + { 48 + "from": { 49 + "key_code": "semicolon", 50 + "modifiers": {} 51 + }, 52 + "parameters": { 53 + "basic.to_delayed_action_delay_milliseconds": 180, 54 + "basic.to_if_held_down_threshold_milliseconds": 180 55 + }, 56 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "semicolon" }] }, 57 + "to_if_alone": [ 58 + { 59 + "halt": true, 60 + "key_code": "semicolon" 61 + } 62 + ], 63 + "to_if_held_down": [{ "key_code": "right_command" }], 64 + "type": "basic" 65 + }, 66 + { 67 + "from": { 68 + "key_code": "l", 69 + "modifiers": {} 70 + }, 71 + "parameters": { 72 + "basic.to_delayed_action_delay_milliseconds": 180, 73 + "basic.to_if_held_down_threshold_milliseconds": 180 74 + }, 75 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "l" }] }, 76 + "to_if_alone": [ 77 + { 78 + "halt": true, 79 + "key_code": "l" 80 + } 81 + ], 82 + "to_if_held_down": [{ "key_code": "right_option" }], 83 + "type": "basic" 84 + } 85 + ] 86 + }, 87 + { 88 + "description": "right_command+u to prev_tab, right_command+i to next_tab", 89 + "manipulators": [ 90 + { 91 + "from": { 92 + "key_code": "i", 93 + "modifiers": { 94 + "mandatory": ["right_command"], 95 + "optional": ["any"] 96 + } 97 + }, 98 + "to": [ 99 + { 100 + "key_code": "tab", 101 + "modifiers": ["left_control"] 102 + } 103 + ], 104 + "type": "basic" 105 + }, 106 + { 107 + "from": { 108 + "key_code": "u", 109 + "modifiers": { 110 + "mandatory": ["right_command"], 111 + "optional": ["any"] 112 + } 113 + }, 114 + "to": [ 115 + { 116 + "key_code": "tab", 117 + "modifiers": ["left_shift", "left_control"] 118 + } 119 + ], 120 + "type": "basic" 121 + } 122 + ] 123 + }, 124 + { 125 + "description": "Change right_command+hjkl to arrow keys", 126 + "manipulators": [ 127 + { 128 + "from": { 129 + "key_code": "h", 130 + "modifiers": { 131 + "mandatory": ["right_command"], 132 + "optional": ["any"] 133 + } 134 + }, 135 + "to": [{ "key_code": "left_arrow" }], 136 + "type": "basic" 137 + }, 138 + { 139 + "from": { 140 + "key_code": "j", 141 + "modifiers": { 142 + "mandatory": ["right_command"], 143 + "optional": ["any"] 144 + } 145 + }, 146 + "to": [{ "key_code": "down_arrow" }], 147 + "type": "basic" 148 + }, 149 + { 150 + "from": { 151 + "key_code": "k", 152 + "modifiers": { 153 + "mandatory": ["right_command"], 154 + "optional": ["any"] 155 + } 156 + }, 157 + "to": [{ "key_code": "up_arrow" }], 158 + "type": "basic" 159 + }, 160 + { 161 + "from": { 162 + "key_code": "l", 163 + "modifiers": { 164 + "mandatory": ["right_command"], 165 + "optional": ["any"] 166 + } 167 + }, 168 + "to": [{ "key_code": "right_arrow" }], 169 + "type": "basic" 170 + } 171 + ] 172 + } 173 + ] 174 + }, 175 + "devices": [ 176 + { 177 + "disable_built_in_keyboard_if_exists": true, 178 + "identifiers": { 179 + "is_keyboard": true, 180 + "product_id": 6519, 181 + "vendor_id": 12951 182 + }, 183 + "ignore": true 184 + }, 185 + { 186 + "identifiers": { 187 + "is_keyboard": true, 188 + "product_id": 832, 189 + "vendor_id": 1452 190 + }, 191 + "simple_modifications": [ 192 + { 193 + "from": { "key_code": "caps_lock" }, 194 + "to": [{ "key_code": "left_control" }] 195 + }, 196 + { 197 + "from": { "key_code": "left_control" }, 198 + "to": [{ "key_code": "caps_lock" }] 199 + } 200 + ] 201 + }, 202 + { 203 + "identifiers": { "is_keyboard": true }, 204 + "simple_modifications": [ 205 + { 206 + "from": { "key_code": "caps_lock" }, 207 + "to": [{ "key_code": "left_control" }] 208 + }, 209 + { 210 + "from": { "key_code": "left_control" }, 211 + "to": [{ "key_code": "caps_lock" }] 212 + } 213 + ] 214 + } 215 + ], 216 + "name": "Default profile", 217 + "selected": true, 218 + "virtual_hid_keyboard": { "keyboard_type_v2": "iso" } 219 + } 220 + ] 221 + }
+221
config/karabiner/automatic_backups/karabiner_20250825.json
··· 1 + { 2 + "profiles": [ 3 + { 4 + "complex_modifications": { 5 + "rules": [ 6 + { 7 + "description": "homerow mods 'a s Opt Cmd g h Cmd Opt Ctrl ñ", 8 + "manipulators": [ 9 + { 10 + "from": { 11 + "key_code": "s", 12 + "modifiers": { "optional": ["any"] } 13 + }, 14 + "parameters": { 15 + "basic.to_delayed_action_delay_milliseconds": 180, 16 + "basic.to_if_held_down_threshold_milliseconds": 180 17 + }, 18 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "s" }] }, 19 + "to_if_alone": [ 20 + { 21 + "halt": true, 22 + "key_code": "s" 23 + } 24 + ], 25 + "to_if_held_down": [{ "key_code": "left_option" }], 26 + "type": "basic" 27 + }, 28 + { 29 + "from": { 30 + "key_code": "a", 31 + "modifiers": { "optional": ["any"] } 32 + }, 33 + "parameters": { 34 + "basic.to_delayed_action_delay_milliseconds": 180, 35 + "basic.to_if_held_down_threshold_milliseconds": 180 36 + }, 37 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "a" }] }, 38 + "to_if_alone": [ 39 + { 40 + "halt": true, 41 + "key_code": "a" 42 + } 43 + ], 44 + "to_if_held_down": [{ "key_code": "left_command" }], 45 + "type": "basic" 46 + }, 47 + { 48 + "from": { 49 + "key_code": "semicolon", 50 + "modifiers": {} 51 + }, 52 + "parameters": { 53 + "basic.to_delayed_action_delay_milliseconds": 180, 54 + "basic.to_if_held_down_threshold_milliseconds": 180 55 + }, 56 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "semicolon" }] }, 57 + "to_if_alone": [ 58 + { 59 + "halt": true, 60 + "key_code": "semicolon" 61 + } 62 + ], 63 + "to_if_held_down": [{ "key_code": "right_command" }], 64 + "type": "basic" 65 + }, 66 + { 67 + "from": { 68 + "key_code": "l", 69 + "modifiers": {} 70 + }, 71 + "parameters": { 72 + "basic.to_delayed_action_delay_milliseconds": 180, 73 + "basic.to_if_held_down_threshold_milliseconds": 180 74 + }, 75 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "l" }] }, 76 + "to_if_alone": [ 77 + { 78 + "halt": true, 79 + "key_code": "l" 80 + } 81 + ], 82 + "to_if_held_down": [{ "key_code": "right_option" }], 83 + "type": "basic" 84 + } 85 + ] 86 + }, 87 + { 88 + "description": "right_command+u to prev_tab, right_command+i to next_tab", 89 + "manipulators": [ 90 + { 91 + "from": { 92 + "key_code": "i", 93 + "modifiers": { 94 + "mandatory": ["right_command"], 95 + "optional": ["any"] 96 + } 97 + }, 98 + "to": [ 99 + { 100 + "key_code": "tab", 101 + "modifiers": ["left_control"] 102 + } 103 + ], 104 + "type": "basic" 105 + }, 106 + { 107 + "from": { 108 + "key_code": "u", 109 + "modifiers": { 110 + "mandatory": ["right_command"], 111 + "optional": ["any"] 112 + } 113 + }, 114 + "to": [ 115 + { 116 + "key_code": "tab", 117 + "modifiers": ["left_shift", "left_control"] 118 + } 119 + ], 120 + "type": "basic" 121 + } 122 + ] 123 + }, 124 + { 125 + "description": "Change right_command+hjkl to arrow keys", 126 + "manipulators": [ 127 + { 128 + "from": { 129 + "key_code": "h", 130 + "modifiers": { 131 + "mandatory": ["right_command"], 132 + "optional": ["any"] 133 + } 134 + }, 135 + "to": [{ "key_code": "left_arrow" }], 136 + "type": "basic" 137 + }, 138 + { 139 + "from": { 140 + "key_code": "j", 141 + "modifiers": { 142 + "mandatory": ["right_command"], 143 + "optional": ["any"] 144 + } 145 + }, 146 + "to": [{ "key_code": "down_arrow" }], 147 + "type": "basic" 148 + }, 149 + { 150 + "from": { 151 + "key_code": "k", 152 + "modifiers": { 153 + "mandatory": ["right_command"], 154 + "optional": ["any"] 155 + } 156 + }, 157 + "to": [{ "key_code": "up_arrow" }], 158 + "type": "basic" 159 + }, 160 + { 161 + "from": { 162 + "key_code": "l", 163 + "modifiers": { 164 + "mandatory": ["right_command"], 165 + "optional": ["any"] 166 + } 167 + }, 168 + "to": [{ "key_code": "right_arrow" }], 169 + "type": "basic" 170 + } 171 + ] 172 + } 173 + ] 174 + }, 175 + "devices": [ 176 + { 177 + "identifiers": { 178 + "is_keyboard": true, 179 + "product_id": 6519, 180 + "vendor_id": 12951 181 + }, 182 + "ignore": true, 183 + "treat_as_built_in_keyboard": true 184 + }, 185 + { 186 + "identifiers": { 187 + "is_keyboard": true, 188 + "product_id": 832, 189 + "vendor_id": 1452 190 + }, 191 + "simple_modifications": [ 192 + { 193 + "from": { "key_code": "caps_lock" }, 194 + "to": [{ "key_code": "left_control" }] 195 + }, 196 + { 197 + "from": { "key_code": "left_control" }, 198 + "to": [{ "key_code": "caps_lock" }] 199 + } 200 + ] 201 + }, 202 + { 203 + "identifiers": { "is_keyboard": true }, 204 + "simple_modifications": [ 205 + { 206 + "from": { "key_code": "caps_lock" }, 207 + "to": [{ "key_code": "left_control" }] 208 + }, 209 + { 210 + "from": { "key_code": "left_control" }, 211 + "to": [{ "key_code": "caps_lock" }] 212 + } 213 + ] 214 + } 215 + ], 216 + "name": "Default profile", 217 + "selected": true, 218 + "virtual_hid_keyboard": { "keyboard_type_v2": "iso" } 219 + } 220 + ] 221 + }
+221
config/karabiner/automatic_backups/karabiner_20251113.json
··· 1 + { 2 + "profiles": [ 3 + { 4 + "complex_modifications": { 5 + "rules": [ 6 + { 7 + "description": "homerow mods 'a s Opt Cmd g h Cmd Opt Ctrl ñ", 8 + "manipulators": [ 9 + { 10 + "from": { 11 + "key_code": "s", 12 + "modifiers": { "optional": ["any"] } 13 + }, 14 + "parameters": { 15 + "basic.to_delayed_action_delay_milliseconds": 180, 16 + "basic.to_if_held_down_threshold_milliseconds": 180 17 + }, 18 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "s" }] }, 19 + "to_if_alone": [ 20 + { 21 + "halt": true, 22 + "key_code": "s" 23 + } 24 + ], 25 + "to_if_held_down": [{ "key_code": "left_option" }], 26 + "type": "basic" 27 + }, 28 + { 29 + "from": { 30 + "key_code": "a", 31 + "modifiers": { "optional": ["any"] } 32 + }, 33 + "parameters": { 34 + "basic.to_delayed_action_delay_milliseconds": 180, 35 + "basic.to_if_held_down_threshold_milliseconds": 180 36 + }, 37 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "a" }] }, 38 + "to_if_alone": [ 39 + { 40 + "halt": true, 41 + "key_code": "a" 42 + } 43 + ], 44 + "to_if_held_down": [{ "key_code": "left_command" }], 45 + "type": "basic" 46 + }, 47 + { 48 + "from": { 49 + "key_code": "semicolon", 50 + "modifiers": {} 51 + }, 52 + "parameters": { 53 + "basic.to_delayed_action_delay_milliseconds": 180, 54 + "basic.to_if_held_down_threshold_milliseconds": 180 55 + }, 56 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "semicolon" }] }, 57 + "to_if_alone": [ 58 + { 59 + "halt": true, 60 + "key_code": "semicolon" 61 + } 62 + ], 63 + "to_if_held_down": [{ "key_code": "right_command" }], 64 + "type": "basic" 65 + }, 66 + { 67 + "from": { 68 + "key_code": "l", 69 + "modifiers": {} 70 + }, 71 + "parameters": { 72 + "basic.to_delayed_action_delay_milliseconds": 180, 73 + "basic.to_if_held_down_threshold_milliseconds": 180 74 + }, 75 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "l" }] }, 76 + "to_if_alone": [ 77 + { 78 + "halt": true, 79 + "key_code": "l" 80 + } 81 + ], 82 + "to_if_held_down": [{ "key_code": "right_option" }], 83 + "type": "basic" 84 + } 85 + ] 86 + }, 87 + { 88 + "description": "right_command+u to prev_tab, right_command+i to next_tab", 89 + "manipulators": [ 90 + { 91 + "from": { 92 + "key_code": "i", 93 + "modifiers": { 94 + "mandatory": ["right_command"], 95 + "optional": ["any"] 96 + } 97 + }, 98 + "to": [ 99 + { 100 + "key_code": "tab", 101 + "modifiers": ["left_control"] 102 + } 103 + ], 104 + "type": "basic" 105 + }, 106 + { 107 + "from": { 108 + "key_code": "u", 109 + "modifiers": { 110 + "mandatory": ["right_command"], 111 + "optional": ["any"] 112 + } 113 + }, 114 + "to": [ 115 + { 116 + "key_code": "tab", 117 + "modifiers": ["left_shift", "left_control"] 118 + } 119 + ], 120 + "type": "basic" 121 + } 122 + ] 123 + }, 124 + { 125 + "description": "Change right_command+hjkl to arrow keys", 126 + "manipulators": [ 127 + { 128 + "from": { 129 + "key_code": "h", 130 + "modifiers": { 131 + "mandatory": ["right_command"], 132 + "optional": ["any"] 133 + } 134 + }, 135 + "to": [{ "key_code": "left_arrow" }], 136 + "type": "basic" 137 + }, 138 + { 139 + "from": { 140 + "key_code": "j", 141 + "modifiers": { 142 + "mandatory": ["right_command"], 143 + "optional": ["any"] 144 + } 145 + }, 146 + "to": [{ "key_code": "down_arrow" }], 147 + "type": "basic" 148 + }, 149 + { 150 + "from": { 151 + "key_code": "k", 152 + "modifiers": { 153 + "mandatory": ["right_command"], 154 + "optional": ["any"] 155 + } 156 + }, 157 + "to": [{ "key_code": "up_arrow" }], 158 + "type": "basic" 159 + }, 160 + { 161 + "from": { 162 + "key_code": "l", 163 + "modifiers": { 164 + "mandatory": ["right_command"], 165 + "optional": ["any"] 166 + } 167 + }, 168 + "to": [{ "key_code": "right_arrow" }], 169 + "type": "basic" 170 + } 171 + ] 172 + } 173 + ] 174 + }, 175 + "devices": [ 176 + { 177 + "identifiers": { 178 + "is_keyboard": true, 179 + "product_id": 6519, 180 + "vendor_id": 12951 181 + }, 182 + "ignore": true, 183 + "treat_as_built_in_keyboard": true 184 + }, 185 + { 186 + "identifiers": { 187 + "is_keyboard": true, 188 + "product_id": 832, 189 + "vendor_id": 1452 190 + }, 191 + "simple_modifications": [ 192 + { 193 + "from": { "key_code": "caps_lock" }, 194 + "to": [{ "key_code": "left_control" }] 195 + }, 196 + { 197 + "from": { "key_code": "left_control" }, 198 + "to": [{ "key_code": "caps_lock" }] 199 + } 200 + ] 201 + }, 202 + { 203 + "identifiers": { "is_keyboard": true }, 204 + "simple_modifications": [ 205 + { 206 + "from": { "key_code": "caps_lock" }, 207 + "to": [{ "key_code": "left_control" }] 208 + }, 209 + { 210 + "from": { "key_code": "left_control" }, 211 + "to": [{ "key_code": "caps_lock" }] 212 + } 213 + ] 214 + } 215 + ], 216 + "name": "Default profile", 217 + "selected": true, 218 + "virtual_hid_keyboard": { "keyboard_type_v2": "iso" } 219 + } 220 + ] 221 + }
+259
config/karabiner/karabiner.json
··· 1 + { 2 + "profiles": [ 3 + { 4 + "complex_modifications": { 5 + "rules": [ 6 + { 7 + "description": "homerow mods 'a s Opt Cmd g h Cmd Opt Ctrl ñ", 8 + "manipulators": [ 9 + { 10 + "from": { 11 + "key_code": "s", 12 + "modifiers": { "optional": [] } 13 + }, 14 + "parameters": { 15 + "basic.to_delayed_action_delay_milliseconds": 150, 16 + "basic.to_if_held_down_threshold_milliseconds": 150 17 + }, 18 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "s" }] }, 19 + "to_if_alone": [ 20 + { 21 + "halt": true, 22 + "key_code": "s" 23 + } 24 + ], 25 + "to_if_held_down": [{ "key_code": "left_option" }], 26 + "type": "basic" 27 + }, 28 + { 29 + "from": { 30 + "key_code": "d", 31 + "modifiers": { "optional": [] } 32 + }, 33 + "parameters": { 34 + "basic.to_delayed_action_delay_milliseconds": 150, 35 + "basic.to_if_held_down_threshold_milliseconds": 150 36 + }, 37 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "d" }] }, 38 + "to_if_alone": [ 39 + { 40 + "halt": true, 41 + "key_code": "d" 42 + } 43 + ], 44 + "to_if_held_down": [{ "key_code": "left_control" }], 45 + "type": "basic" 46 + }, 47 + { 48 + "from": { 49 + "key_code": "k", 50 + "modifiers": { "optional": [] } 51 + }, 52 + "parameters": { 53 + "basic.to_delayed_action_delay_milliseconds": 150, 54 + "basic.to_if_held_down_threshold_milliseconds": 150 55 + }, 56 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "k" }] }, 57 + "to_if_alone": [ 58 + { 59 + "halt": true, 60 + "key_code": "k" 61 + } 62 + ], 63 + "to_if_held_down": [{ "key_code": "left_control" }], 64 + "type": "basic" 65 + }, 66 + { 67 + "from": { 68 + "key_code": "a", 69 + "modifiers": { "optional": [] } 70 + }, 71 + "parameters": { 72 + "basic.to_delayed_action_delay_milliseconds": 150, 73 + "basic.to_if_held_down_threshold_milliseconds": 150 74 + }, 75 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "a" }] }, 76 + "to_if_alone": [ 77 + { 78 + "halt": true, 79 + "key_code": "a" 80 + } 81 + ], 82 + "to_if_held_down": [{ "key_code": "left_command" }], 83 + "type": "basic" 84 + }, 85 + { 86 + "from": { 87 + "key_code": "semicolon", 88 + "modifiers": {} 89 + }, 90 + "parameters": { 91 + "basic.to_delayed_action_delay_milliseconds": 150, 92 + "basic.to_if_held_down_threshold_milliseconds": 150 93 + }, 94 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "semicolon" }] }, 95 + "to_if_alone": [ 96 + { 97 + "halt": true, 98 + "key_code": "semicolon" 99 + } 100 + ], 101 + "to_if_held_down": [{ "key_code": "right_command" }], 102 + "type": "basic" 103 + }, 104 + { 105 + "from": { 106 + "key_code": "l", 107 + "modifiers": {} 108 + }, 109 + "parameters": { 110 + "basic.to_delayed_action_delay_milliseconds": 150, 111 + "basic.to_if_held_down_threshold_milliseconds": 150 112 + }, 113 + "to_delayed_action": { "to_if_canceled": [{ "key_code": "l" }] }, 114 + "to_if_alone": [ 115 + { 116 + "halt": true, 117 + "key_code": "l" 118 + } 119 + ], 120 + "to_if_held_down": [{ "key_code": "right_option" }], 121 + "type": "basic" 122 + } 123 + ] 124 + }, 125 + { 126 + "description": "right_command+u to prev_tab, right_command+i to next_tab", 127 + "manipulators": [ 128 + { 129 + "from": { 130 + "key_code": "i", 131 + "modifiers": { 132 + "mandatory": ["right_command"], 133 + "optional": ["any"] 134 + } 135 + }, 136 + "to": [ 137 + { 138 + "key_code": "tab", 139 + "modifiers": ["left_control"] 140 + } 141 + ], 142 + "type": "basic" 143 + }, 144 + { 145 + "from": { 146 + "key_code": "u", 147 + "modifiers": { 148 + "mandatory": ["right_command"], 149 + "optional": ["any"] 150 + } 151 + }, 152 + "to": [ 153 + { 154 + "key_code": "tab", 155 + "modifiers": ["left_shift", "left_control"] 156 + } 157 + ], 158 + "type": "basic" 159 + } 160 + ] 161 + }, 162 + { 163 + "description": "Change right_command+hjkl to arrow keys", 164 + "manipulators": [ 165 + { 166 + "from": { 167 + "key_code": "h", 168 + "modifiers": { 169 + "mandatory": ["right_command"], 170 + "optional": ["any"] 171 + } 172 + }, 173 + "to": [{ "key_code": "left_arrow" }], 174 + "type": "basic" 175 + }, 176 + { 177 + "from": { 178 + "key_code": "j", 179 + "modifiers": { 180 + "mandatory": ["right_command"], 181 + "optional": ["any"] 182 + } 183 + }, 184 + "to": [{ "key_code": "down_arrow" }], 185 + "type": "basic" 186 + }, 187 + { 188 + "from": { 189 + "key_code": "k", 190 + "modifiers": { 191 + "mandatory": ["right_command"], 192 + "optional": ["any"] 193 + } 194 + }, 195 + "to": [{ "key_code": "up_arrow" }], 196 + "type": "basic" 197 + }, 198 + { 199 + "from": { 200 + "key_code": "l", 201 + "modifiers": { 202 + "mandatory": ["right_command"], 203 + "optional": ["any"] 204 + } 205 + }, 206 + "to": [{ "key_code": "right_arrow" }], 207 + "type": "basic" 208 + } 209 + ] 210 + } 211 + ] 212 + }, 213 + "devices": [ 214 + { 215 + "identifiers": { 216 + "is_keyboard": true, 217 + "product_id": 6519, 218 + "vendor_id": 12951 219 + }, 220 + "ignore": true, 221 + "treat_as_built_in_keyboard": true 222 + }, 223 + { 224 + "identifiers": { 225 + "is_keyboard": true, 226 + "product_id": 832, 227 + "vendor_id": 1452 228 + }, 229 + "simple_modifications": [ 230 + { 231 + "from": { "key_code": "caps_lock" }, 232 + "to": [{ "key_code": "left_control" }] 233 + }, 234 + { 235 + "from": { "key_code": "left_control" }, 236 + "to": [{ "key_code": "caps_lock" }] 237 + } 238 + ] 239 + }, 240 + { 241 + "identifiers": { "is_keyboard": true }, 242 + "simple_modifications": [ 243 + { 244 + "from": { "key_code": "caps_lock" }, 245 + "to": [{ "key_code": "left_control" }] 246 + }, 247 + { 248 + "from": { "key_code": "left_control" }, 249 + "to": [{ "key_code": "caps_lock" }] 250 + } 251 + ] 252 + } 253 + ], 254 + "name": "Default profile", 255 + "selected": true, 256 + "virtual_hid_keyboard": { "keyboard_type_v2": "iso" } 257 + } 258 + ] 259 + }
+47
config/kitty/GruvboxMaterialDarkHard.conf
··· 1 + # vim:ft=kitty 2 + ## name: Gruvbox Material Dark Hard 3 + ## author: Sainnhe Park 4 + ## license: MIT 5 + ## upstream: https://raw.githubusercontent.com/rsaihe/gruvbox-material-kitty/main/colors/gruvbox-material-dark-hard.conf 6 + ## blurb: A modified version of Gruvbox with softer contrasts 7 + 8 + background #1d2021 9 + foreground #d4be98 10 + 11 + selection_background #d4be98 12 + selection_foreground #1d2021 13 + 14 + cursor #a89984 15 + cursor_text_color background 16 + 17 + # Black 18 + color0 #665c54 19 + color8 #928374 20 + 21 + # Red 22 + color1 #ea6962 23 + color9 #ea6962 24 + 25 + # Green 26 + color2 #a9b665 27 + color10 #a9b665 28 + 29 + # Yellow 30 + color3 #e78a4e 31 + color11 #d8a657 32 + 33 + # Blue 34 + color4 #7daea3 35 + color12 #7daea3 36 + 37 + # Magenta 38 + color5 #d3869b 39 + color13 #d3869b 40 + 41 + # Cyan 42 + color6 #89b482 43 + color14 #89b482 44 + 45 + # White 46 + color7 #d4be98 47 + color15 #d4be98
+80
config/kitty/catppuccin-mocha.conf
··· 1 + # vim:ft=kitty 2 + 3 + ## name: Catppuccin Kitty Mocha 4 + ## author: Catppuccin Org 5 + ## license: MIT 6 + ## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf 7 + ## blurb: Soothing pastel theme for the high-spirited! 8 + 9 + 10 + 11 + # The basic colors 12 + foreground #CDD6F4 13 + background #1E1E2E 14 + selection_foreground #1E1E2E 15 + selection_background #F5E0DC 16 + 17 + # Cursor colors 18 + cursor #F5E0DC 19 + cursor_text_color #1E1E2E 20 + 21 + # URL underline color when hovering with mouse 22 + url_color #F5E0DC 23 + 24 + # Kitty window border colors 25 + active_border_color #B4BEFE 26 + inactive_border_color #6C7086 27 + bell_border_color #F9E2AF 28 + 29 + # OS Window titlebar colors 30 + wayland_titlebar_color system 31 + macos_titlebar_color system 32 + 33 + # Tab bar colors 34 + active_tab_foreground #11111B 35 + active_tab_background #CBA6F7 36 + inactive_tab_foreground #CDD6F4 37 + inactive_tab_background #181825 38 + tab_bar_background #11111B 39 + 40 + # Colors for marks (marked text in the terminal) 41 + mark1_foreground #1E1E2E 42 + mark1_background #B4BEFE 43 + mark2_foreground #1E1E2E 44 + mark2_background #CBA6F7 45 + mark3_foreground #1E1E2E 46 + mark3_background #74C7EC 47 + 48 + # The 16 terminal colors 49 + 50 + # black 51 + color0 #45475A 52 + color8 #585B70 53 + 54 + # red 55 + color1 #F38BA8 56 + color9 #F38BA8 57 + 58 + # green 59 + color2 #A6E3A1 60 + color10 #A6E3A1 61 + 62 + # yellow 63 + color3 #F9E2AF 64 + color11 #F9E2AF 65 + 66 + # blue 67 + color4 #89B4FA 68 + color12 #89B4FA 69 + 70 + # magenta 71 + color5 #F5C2E7 72 + color13 #F5C2E7 73 + 74 + # cyan 75 + color6 #94E2D5 76 + color14 #94E2D5 77 + 78 + # white 79 + color7 #BAC2DE 80 + color15 #A6ADC8
+95
config/kitty/current-theme.conf
··· 1 + # vim:ft=kitty 2 + 3 + ## name: Base2Tone Cave Dark 4 + ## author: Bram de Haan (https://github.com/atelierbram) 5 + ## license: MIT 6 + ## upstream: https://github.com/atelierbram/Base2Tone-kitty/blob/main/themes/base2tone-cave-dark.conf 7 + ## blurb: Duotone theme | cool cave red - yellow ochre 8 + 9 + 10 + #: The basic colors 11 + 12 + foreground #9f999b 13 + background #222021 14 + selection_foreground #9f999b 15 + selection_background #2f2d2e 16 + 17 + 18 + #: Cursor colors 19 + 20 + cursor #996e00 21 + cursor_text_color #222021 22 + 23 + 24 + #: URL underline color when hovering with mouse 25 + 26 + url_color #f0a8c1 27 + 28 + 29 + #: kitty window border colors and terminal bell colors 30 + 31 + active_border_color #565254 32 + inactive_border_color #222021 33 + bell_border_color #ad1f51 34 + visual_bell_color none 35 + 36 + 37 + #: OS Window titlebar colors 38 + 39 + wayland_titlebar_color #2f2d2e 40 + macos_titlebar_color #2f2d2e 41 + 42 + 43 + #: Tab bar colors 44 + 45 + active_tab_foreground #fbfaf9 46 + active_tab_background #222021 47 + inactive_tab_foreground #aeaca7 48 + inactive_tab_background #2f2d2e 49 + tab_bar_background #2f2d2e 50 + tab_bar_margin_color none 51 + 52 + 53 + #: Colors for marks (marked text in the terminal) 54 + 55 + mark1_foreground #222021 56 + mark1_background #875e6d 57 + mark2_foreground #222021 58 + mark2_background #8b8984 59 + mark3_foreground #222021 60 + mark3_background #aa7c09 61 + 62 + 63 + #: The basic 16 colors 64 + 65 + #: black 66 + color0 #222021 67 + color8 #635f60 68 + 69 + #: red 70 + color1 #936c7a 71 + color9 #ddaf3c 72 + 73 + #: green 74 + color2 #cca133 75 + color10 #2f2d2e 76 + 77 + #: yellow 78 + color3 #ffcc4d 79 + color11 #565254 80 + 81 + #: blue 82 + color4 #9c818b 83 + color12 #706b6d 84 + 85 + #: magenta 86 + color5 #cca133 87 + color13 #f0a8c1 88 + 89 + #: cyan 90 + color6 #d27998 91 + color14 #c39622 92 + 93 + #: white 94 + color7 #9f999b 95 + color15 #ffebf2
+49
config/kitty/kanagawabones.conf
··· 1 + # This file is auto-generated by shipwright.nvim 2 + # vim:ft=kitty 3 + ## name: kanagawabones 4 + ## author: Michael Chris Lopez 5 + ## license: MIT 6 + ## upstream: https://github.com/mcchrish/zenbones.nvim/raw/main/extras/kitty/kanagawabones.conf 7 + ## blurb: A zenbones variant inspired by Kanagawa. 8 + foreground #DDD8BB 9 + background #1F1F28 10 + selection_foreground #DDD8BB 11 + selection_background #49473E 12 + # Cursor colors 13 + cursor #E6E0C2 14 + cursor_text_color #1F1F28 15 + # URL underline color when hovering with mouse 16 + # kitty window border colors 17 + # OS Window titlebar colors 18 + # Tab bar colors 19 + active_tab_foreground #DDD8BB 20 + active_tab_background #614A82 21 + inactive_tab_foreground #DDD8BB 22 + inactive_tab_background #363644 23 + # Colors for marks (marked text in the terminal) 24 + # The basic 16 colors 25 + # black 26 + color0 #1F1F28 27 + color8 #3C3C51 28 + # red 29 + color1 #E46A78 30 + color9 #EC818C 31 + # green 32 + color2 #98BC6D 33 + color10 #9EC967 34 + # yellow 35 + color3 #E5C283 36 + color11 #F1C982 37 + # blue 38 + color4 #7EB3C9 39 + color12 #7BC2DF 40 + # magenta 41 + color5 #957FB8 42 + color13 #A98FD2 43 + # cyan 44 + color6 #7EB3C9 45 + color14 #7BC2DF 46 + # white 47 + color7 #DDD8BB 48 + color15 #A8A48D 49 + # You can set the remaining 240 colors as color16 to color255.
+252
config/kitty/kitty.conf
··· 1 + # BEGIN_KITTY_THEME 2 + # Black Metal 3 + # include Rasmus.conf 4 + # include vague.conf 5 + # include gruber-darker.conf 6 + include umbraline.conf 7 + # END_KITTY_THEME 8 + # vim:fileencoding=utf-8:ft=conf 9 + 10 + # Font family. You can also specify different fonts for the 11 + # bold/italic/bold-italic variants. By default they are derived automatically, 12 + # by the OSes font system. Setting them manually is useful for font families 13 + # that have many weight variants like Book, Medium, Thick, etc. For example: 14 + # font_family Operator Mono Book 15 + # bold_font Operator Mono Thick 16 + # bold_italic_font Operator Mono Medium 17 + # font_family Input Mono 18 + # font_family Jetbrains Mono 19 + # font_family Jetbrains Mono NL 20 + # font_family Fira Code Nerd Font Mono 21 + # font_family Cascadia Code 22 + # font_family Iosevka Nerd Font Mono 23 + # font_family VictorMono Nerd Font Mono 24 + # font_family SF Mono 25 + # font_family InconsolataGo Nerd Font Mono 26 + # font_family BlexMono Nerd Font Mono 27 + # font_family AnonymicePro Nerd Font Mono 28 + font_family Terminess Nerd Font Mono 29 + italic_font Terminess Nerd Font Mono 30 + bold_font Terminess Nerd Font Mono 31 + bold_italic_font Terminess Nerd Font Mono 32 + 33 + # Font size (in pts) 34 + font_size 20 35 + 36 + disable_ligatures always 37 + 38 + # The foreground color 39 + # foreground #c0b18b 40 + 41 + # The background color 42 + # background #282a36 43 + 44 + # Background opacity 45 + background_opacity 0.95 46 + background_blur 1 47 + 48 + # The foreground for selections 49 + # selection_foreground #2f2f2f 50 + 51 + # The background for selections 52 + # selection_background #d75f5f 53 + 54 + # The cursor color 55 + # cursor #8fee96 56 + 57 + cursor_trail 0 58 + cursor_text_color background 59 + 60 + # The cursor shape can be one of (block, beam, underline) 61 + cursor_shape block 62 + 63 + # The interval (in seconds) at which to blink the cursor. Set to zero to 64 + # disable blinking. 65 + cursor_blink_interval -1 66 + 67 + # Stop blinking cursor after the specified number of seconds of keyboard inactivity. Set to 68 + # zero or a negative number to never stop blinking. 69 + cursor_stop_blinking_after 0 70 + 71 + # Number of lines of history to keep in memory for scrolling back 72 + scrollback_lines 2000 73 + 74 + # Program with which to view scrollback in a new window. The scrollback buffer is passed as 75 + # STDIN to this program. If you change it, make sure the program you use can 76 + # handle ANSI escape sequences for colors and text formatting. 77 + scrollback_pager less +G -R 78 + 79 + # Wheel scroll multiplier (modify the amount scrolled by the mouse wheel) 80 + wheel_scroll_multiplier 5.0 81 + 82 + # The interval between successive clicks to detect double/triple clicks (in seconds) 83 + click_interval 0.5 84 + 85 + # Characters considered part of a word when double clicking. In addition to these characters 86 + # any character that is marked as an alpha-numeric character in the unicode 87 + # database will be matched. 88 + select_by_word_characters :@-./_~?&=%+# 89 + 90 + # Hide mouse cursor after the specified number of seconds of the mouse not being used. Set to 91 + # zero or a negative number to disable mouse cursor hiding. 92 + mouse_hide_wait 1.0 93 + 94 + # The enabled window layouts. A comma separated list of layout names. The special value * means 95 + # all layouts. The first listed layout will be used as the startup layout. 96 + # For a list of available layouts, see the file layouts.py 97 + enabled_layouts tall:bias=50;full_size=1;mirrored=false 98 + 99 + # If enabled, the window size will be remembered so that new instances of kitty will have the same 100 + # size as the previous instance. If disabled, the window will initially have size configured 101 + # by initial_window_width/height, in pixels. 102 + remember_window_size no 103 + initial_window_width 640 104 + initial_window_height 400 105 + 106 + # Delay (in milliseconds) between screen updates. Decreasing it, increases fps 107 + # at the cost of more CPU usage. The default value yields ~100fps which is more 108 + # that sufficient for most uses. 109 + repaint_delay 10 110 + 111 + # Delay (in milliseconds) before input from the program running in the terminal 112 + # is processed. Note that decreasing it will increase responsiveness, but also 113 + # increase CPU usage and might cause flicker in full screen programs that 114 + # redraw the entire screen on each loop, because kitty is so fast that partial 115 + # screen updates will be drawn. 116 + input_delay 3 117 + 118 + # Visual bell duration. Flash the screen when a bell occurs for the specified number of 119 + # seconds. Set to zero to disable. 120 + visual_bell_duration 0.0 121 + 122 + # Enable/disable the audio bell. Useful in environments that require silence. 123 + enable_audio_bell no 124 + 125 + # The modifier keys to press when clicking with the mouse on URLs to open the URL 126 + open_url_modifiers ctrl+shift 127 + 128 + # The program with which to open URLs that are clicked on. The special value "default" means to 129 + # use the operating system's default URL handler. 130 + open_url_with default 131 + 132 + # The value of the TERM environment variable to set 133 + term screen 134 + 135 + # The width (in pts) of window borders. Will be rounded to the nearest number of pixels based on screen resolution. 136 + window_border_width 20 137 + 138 + window_margin_width 1 139 + 140 + # The color for the border of the active window 141 + # active_border_color #ffffff 142 + 143 + # The color for the border of inactive windows 144 + # inactive_border_color #cccccc 145 + 146 + # Tab-bar colors 147 + # active_tab_foreground #000 148 + # active_tab_background #eee 149 + # inactive_tab_foreground #444 150 + # inactive_tab_background #999 151 + 152 + # Tab-bar style 153 + tab_bar_style powerline 154 + tab_powerline_style angled 155 + 156 + # Key mapping 157 + # For a list of key names, see: http://www.glfw.org/docs/latest/group__keys.html 158 + # For a list of modifier names, see: http://www.glfw.org/docs/latest/group__mods.html 159 + # You can use the special action no_op to unmap a keyboard shortcut that is 160 + # assigned in the default configuration. 161 + 162 + # Clipboard 163 + map alt+c copy_to_clipboard 164 + map alt+v paste_from_clipboard 165 + map alt+shift+v paste_from_selection 166 + map alt+shift+c copy_to_selection 167 + 168 + # Scrolling 169 + # map ctrl+shift+up scroll_line_up 170 + # map ctrl+shift+down scroll_line_down 171 + # map ctrl+shift+k scroll_line_up 172 + # map ctrl+shift+j scroll_line_down 173 + map ctrl+shift+page_up scroll_page_up 174 + map ctrl+shift+page_down scroll_page_down 175 + map ctrl+shift+home scroll_home 176 + map ctrl+shift+end scroll_end 177 + # map ctrl+shift+h show_scrollback 178 + 179 + # Window management 180 + # map ctrl+n new_os_window 181 + # map ctrl+w close_window 182 + # map ctrl+shift+enter new_window 183 + # map ctrl+shift+] next_window 184 + # map ctrl+shift+[ previous_window 185 + # map ctrl+shift+f move_window_forward 186 + # map ctrl+shift+b move_window_backward 187 + # map ctrl+shift+k move_window up 188 + # map ctrl+shift+h move_window left 189 + # map ctrl+shift+l move_window right 190 + # map ctrl+shift+j move_window down 191 + # map ctrl+h neighboring_window left 192 + # map ctrl+l neighboring_window right 193 + # map ctrl+k neighboring_window up 194 + # map ctrl+j neighboring_window down 195 + # map ctrl+alt+h resize_window narrower 196 + # map ctrl+alt+l resize_window wider 197 + # map ctrl+alt+k resize_window taller 198 + # map ctrl+alt+j resize_window shorter 3 199 + # reset all windows in the tab to default sizes 200 + map ctrl+home resize_window reset 201 + # map ctrl+shift+k move_window_to_top 202 + map ctrl+shift+1 first_window 203 + map ctrl+shift+2 second_window 204 + map ctrl+shift+3 third_window 205 + map ctrl+shift+4 fourth_window 206 + map ctrl+shift+5 fifth_window 207 + map ctrl+shift+6 sixth_window 208 + map ctrl+shift+7 seventh_window 209 + map ctrl+shift+8 eighth_window 210 + map ctrl+shift+9 ninth_window 211 + map ctrl+shift+0 tenth_window 212 + 213 + # Tab management 214 + map ctrl+shift+right next_tab 215 + map ctrl+shift+left previous_tab 216 + map ctrl+shift+t new_tab 217 + map ctrl+shift+q close_tab 218 + map ctrl+shift+alt+l next_layout 219 + map ctrl+shift+. move_tab_forward 220 + map ctrl+shift+, move_tab_backward 221 + 222 + # Miscellaneous 223 + map ctrl+shift+up increase_font_size 224 + map ctrl+shift+down decrease_font_size 225 + map ctrl+shift+backspace restore_font_size 226 + 227 + # Symbol mapping (special font for specified unicode code points). Map the 228 + # specified unicode codepoints to a particular font. Useful if you need special 229 + # rendering for some symbols, such as for Powerline. Avoids the need for 230 + # patched fonts. Each unicode code point is specified in the form U+<code point 231 + # in hexadecimal>. You can specify multiple code points, separated by commas 232 + # and ranges separated by hyphens. symbol_map itself can be specified multiple times. 233 + # Syntax is: 234 + # 235 + # symbol_map codepoints Font Family Name 236 + # 237 + # For example: 238 + # 239 + #symbol_map U+E0A0-U+E0A2,U+E0B0-U+E0B3 PowerlineSymbols 240 + # mac options 241 + # titlebar-only 242 + # titlebar-and-corners 243 + hide_window_decorations titlebar-only 244 + macos_option_as_alt no 245 + 246 + # Change the color of the kitty window's titlebar on macOS. A value of "system" 247 + # means to use the default system color, a value of "background" means to use 248 + # the default background color and finally you can use an arbitrary color, such 249 + # as #12af59 or "red". 250 + # macos_titlebar_color system 251 + 252 + allow_remote_control yes
+245
config/kitty/kitty.conf.bak
··· 1 + # vim:fileencoding=utf-8:ft=conf 2 + 3 + # Font family. You can also specify different fonts for the 4 + # bold/italic/bold-italic variants. By default they are derived automatically, 5 + # by the OSes font system. Setting them manually is useful for font families 6 + # that have many weight variants like Book, Medium, Thick, etc. For example: 7 + # font_family Operator Mono Book 8 + # bold_font Operator Mono Thick 9 + # bold_italic_font Operator Mono Medium 10 + # font_family Input Mono 11 + # font_family Jetbrains Mono 12 + # font_family Jetbrains Mono NL 13 + # font_family Fira Code Nerd Font Mono 14 + # font_family Cascadia Code 15 + # font_family Iosevka Nerd Font Mono 16 + # font_family VictorMono Nerd Font Mono 17 + # font_family SF Mono 18 + # font_family InconsolataGo Nerd Font Mono 19 + # font_family BlexMono Nerd Font Mono 20 + font_family AnonymicePro Nerd Font Mono 21 + italic_font AnonymicePro Nerd Font Mono 22 + bold_font AnonymicePro Nerd Font Mono 23 + bold_italic_font AnonymicePro Nerd Font Mono 24 + 25 + # Font size (in pts) 26 + font_size 17 27 + 28 + disable_ligatures always 29 + 30 + # The foreground color 31 + # foreground #c0b18b 32 + 33 + # The background color 34 + # background #282a36 35 + 36 + # Background opacity 37 + background_opacity 1 38 + 39 + # The foreground for selections 40 + # selection_foreground #2f2f2f 41 + 42 + # The background for selections 43 + # selection_background #d75f5f 44 + 45 + # The cursor color 46 + # cursor #8fee96 47 + 48 + # The cursor shape can be one of (block, beam, underline) 49 + cursor_shape block 50 + 51 + # The interval (in seconds) at which to blink the cursor. Set to zero to 52 + # disable blinking. 53 + cursor_blink_interval 0.5 54 + 55 + # Stop blinking cursor after the specified number of seconds of keyboard inactivity. Set to 56 + # zero or a negative number to never stop blinking. 57 + cursor_stop_blinking_after 0 58 + 59 + # Number of lines of history to keep in memory for scrolling back 60 + scrollback_lines 2000 61 + 62 + # Program with which to view scrollback in a new window. The scrollback buffer is passed as 63 + # STDIN to this program. If you change it, make sure the program you use can 64 + # handle ANSI escape sequences for colors and text formatting. 65 + scrollback_pager less +G -R 66 + 67 + # Wheel scroll multiplier (modify the amount scrolled by the mouse wheel) 68 + wheel_scroll_multiplier 5.0 69 + 70 + # The interval between successive clicks to detect double/triple clicks (in seconds) 71 + click_interval 0.5 72 + 73 + # Characters considered part of a word when double clicking. In addition to these characters 74 + # any character that is marked as an alpha-numeric character in the unicode 75 + # database will be matched. 76 + select_by_word_characters :@-./_~?&=%+# 77 + 78 + # Hide mouse cursor after the specified number of seconds of the mouse not being used. Set to 79 + # zero or a negative number to disable mouse cursor hiding. 80 + mouse_hide_wait 1.0 81 + 82 + # The enabled window layouts. A comma separated list of layout names. The special value * means 83 + # all layouts. The first listed layout will be used as the startup layout. 84 + # For a list of available layouts, see the file layouts.py 85 + enabled_layouts tall:bias=50;full_size=1;mirrored=false 86 + 87 + # If enabled, the window size will be remembered so that new instances of kitty will have the same 88 + # size as the previous instance. If disabled, the window will initially have size configured 89 + # by initial_window_width/height, in pixels. 90 + remember_window_size no 91 + initial_window_width 640 92 + initial_window_height 400 93 + 94 + # Delay (in milliseconds) between screen updates. Decreasing it, increases fps 95 + # at the cost of more CPU usage. The default value yields ~100fps which is more 96 + # that sufficient for most uses. 97 + repaint_delay 10 98 + 99 + # Delay (in milliseconds) before input from the program running in the terminal 100 + # is processed. Note that decreasing it will increase responsiveness, but also 101 + # increase CPU usage and might cause flicker in full screen programs that 102 + # redraw the entire screen on each loop, because kitty is so fast that partial 103 + # screen updates will be drawn. 104 + input_delay 3 105 + 106 + # Visual bell duration. Flash the screen when a bell occurs for the specified number of 107 + # seconds. Set to zero to disable. 108 + visual_bell_duration 0.0 109 + 110 + # Enable/disable the audio bell. Useful in environments that require silence. 111 + enable_audio_bell no 112 + 113 + # The modifier keys to press when clicking with the mouse on URLs to open the URL 114 + open_url_modifiers ctrl+shift 115 + 116 + # The program with which to open URLs that are clicked on. The special value "default" means to 117 + # use the operating system's default URL handler. 118 + open_url_with default 119 + 120 + # The value of the TERM environment variable to set 121 + term screen-256color 122 + 123 + # The width (in pts) of window borders. Will be rounded to the nearest number of pixels based on screen resolution. 124 + window_border_width 20 125 + 126 + window_margin_width 1 127 + 128 + # The color for the border of the active window 129 + # active_border_color #ffffff 130 + 131 + # The color for the border of inactive windows 132 + # inactive_border_color #cccccc 133 + 134 + # Tab-bar colors 135 + # active_tab_foreground #000 136 + # active_tab_background #eee 137 + # inactive_tab_foreground #444 138 + # inactive_tab_background #999 139 + 140 + # Tab-bar style 141 + tab_bar_style powerline 142 + tab_powerline_style angled 143 + 144 + # Key mapping 145 + # For a list of key names, see: http://www.glfw.org/docs/latest/group__keys.html 146 + # For a list of modifier names, see: http://www.glfw.org/docs/latest/group__mods.html 147 + # You can use the special action no_op to unmap a keyboard shortcut that is 148 + # assigned in the default configuration. 149 + 150 + # Clipboard 151 + map alt+c copy_to_clipboard 152 + map alt+v paste_from_clipboard 153 + map alt+shift+v paste_from_selection 154 + map alt+shift+c copy_to_selection 155 + 156 + # Scrolling 157 + # map ctrl+shift+up scroll_line_up 158 + # map ctrl+shift+down scroll_line_down 159 + # map ctrl+shift+k scroll_line_up 160 + # map ctrl+shift+j scroll_line_down 161 + map ctrl+shift+page_up scroll_page_up 162 + map ctrl+shift+page_down scroll_page_down 163 + map ctrl+shift+home scroll_home 164 + map ctrl+shift+end scroll_end 165 + # map ctrl+shift+h show_scrollback 166 + 167 + # Window management 168 + # map ctrl+n new_os_window 169 + # map ctrl+w close_window 170 + # map ctrl+shift+enter new_window 171 + # map ctrl+shift+] next_window 172 + # map ctrl+shift+[ previous_window 173 + # map ctrl+shift+f move_window_forward 174 + # map ctrl+shift+b move_window_backward 175 + # map ctrl+shift+k move_window up 176 + # map ctrl+shift+h move_window left 177 + # map ctrl+shift+l move_window right 178 + # map ctrl+shift+j move_window down 179 + # map ctrl+h neighboring_window left 180 + # map ctrl+l neighboring_window right 181 + # map ctrl+k neighboring_window up 182 + # map ctrl+j neighboring_window down 183 + # map ctrl+alt+h resize_window narrower 184 + # map ctrl+alt+l resize_window wider 185 + # map ctrl+alt+k resize_window taller 186 + # map ctrl+alt+j resize_window shorter 3 187 + # reset all windows in the tab to default sizes 188 + map ctrl+home resize_window reset 189 + # map ctrl+shift+k move_window_to_top 190 + map ctrl+shift+1 first_window 191 + map ctrl+shift+2 second_window 192 + map ctrl+shift+3 third_window 193 + map ctrl+shift+4 fourth_window 194 + map ctrl+shift+5 fifth_window 195 + map ctrl+shift+6 sixth_window 196 + map ctrl+shift+7 seventh_window 197 + map ctrl+shift+8 eighth_window 198 + map ctrl+shift+9 ninth_window 199 + map ctrl+shift+0 tenth_window 200 + 201 + # Tab management 202 + map ctrl+shift+right next_tab 203 + map ctrl+shift+left previous_tab 204 + map ctrl+shift+t new_tab 205 + map ctrl+shift+q close_tab 206 + map ctrl+shift+alt+l next_layout 207 + map ctrl+shift+. move_tab_forward 208 + map ctrl+shift+, move_tab_backward 209 + 210 + # Miscellaneous 211 + map ctrl+shift+up increase_font_size 212 + map ctrl+shift+down decrease_font_size 213 + map ctrl+shift+backspace restore_font_size 214 + 215 + # Symbol mapping (special font for specified unicode code points). Map the 216 + # specified unicode codepoints to a particular font. Useful if you need special 217 + # rendering for some symbols, such as for Powerline. Avoids the need for 218 + # patched fonts. Each unicode code point is specified in the form U+<code point 219 + # in hexadecimal>. You can specify multiple code points, separated by commas 220 + # and ranges separated by hyphens. symbol_map itself can be specified multiple times. 221 + # Syntax is: 222 + # 223 + # symbol_map codepoints Font Family Name 224 + # 225 + # For example: 226 + # 227 + #symbol_map U+E0A0-U+E0A2,U+E0B0-U+E0B3 PowerlineSymbols 228 + # mac options 229 + # titlebar-only 230 + # titlebar-and-corners 231 + hide_window_decorations titlebar-only 232 + macos_option_as_alt no 233 + 234 + # Change the color of the kitty window's titlebar on macOS. A value of "system" 235 + # means to use the default system color, a value of "background" means to use 236 + # the default background color and finally you can use an arbitrary color, such 237 + # as #12af59 or "red". 238 + # macos_titlebar_color system 239 + 240 + allow_remote_control yes 241 + 242 + # BEGIN_KITTY_THEME 243 + # Base2Tone Cave Dark 244 + include Base2Tone-Cave-Dark.conf 245 + # END_KITTY_THEME
+21
config/kitty/mellifluous.conf
··· 1 + foreground #dddddd 2 + background #1d1d1d 3 + cursor #dddddd 4 + color0 #1d1d1d 5 + color1 #d0a08a 6 + color2 #accca4 7 + color3 #bccda1 8 + color4 #bf9ac1 9 + color5 #bc9ead 10 + color6 #cbd19f 11 + color7 #dddddd 12 + color8 #707070 13 + color9 #e9ccb9 14 + color10 #cde6c8 15 + color11 #d9edc5 16 + color12 #dcbedd 17 + color13 #d9c3d2 18 + color14 #e3e5c9 19 + color15 #ffffff 20 + selection_foreground #1d1d1d 21 + selection_background #dddddd
+25
config/kitty/onedark.conf
··· 1 + # One Dark by Giuseppe Cesarano, https://github.com/GiuseppeCesarano 2 + # This work is licensed under the terms of the GPL-2.0 license. 3 + # For a copy, see https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html. 4 + 5 + foreground #a0a8b7 6 + background #181b20 7 + cursor #cccccc 8 + color0 #282c34 9 + color1 #e06c75 10 + color2 #98c379 11 + color3 #e5c07b 12 + color4 #61afef 13 + color5 #be5046 14 + color6 #56b6c2 15 + color7 #979eab 16 + color8 #393e48 17 + color9 #d19a66 18 + color10 #56b6c2 19 + color11 #e5c07b 20 + color12 #61afef 21 + color13 #be5046 22 + color14 #56b6c2 23 + color15 #abb2bf 24 + selection_foreground #282c34 25 + selection_background #979eab
+56
config/kitty/rose-pine-moon.conf
··· 1 + ## name: Rosé Pine Moon 2 + ## author: mvllow 3 + ## license: MIT 4 + ## upstream: https://github.com/rose-pine/kitty/blob/main/dist/rose-pine-moon.conf 5 + ## blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist 6 + 7 + foreground #e0def4 8 + background #232136 9 + selection_foreground #e0def4 10 + selection_background #44415a 11 + 12 + cursor #56526e 13 + cursor_text_color #e0def4 14 + 15 + url_color #c4a7e7 16 + 17 + active_tab_foreground #e0def4 18 + active_tab_background #393552 19 + inactive_tab_foreground #6e6a86 20 + inactive_tab_background #232136 21 + 22 + active_border_color #3e8fb0 23 + inactive_border_color #44415a 24 + 25 + # black 26 + color0 #393552 27 + color8 #6e6a86 28 + 29 + # red 30 + color1 #eb6f92 31 + color9 #eb6f92 32 + 33 + # green 34 + color2 #3e8fb0 35 + color10 #3e8fb0 36 + 37 + # yellow 38 + color3 #f6c177 39 + color11 #f6c177 40 + 41 + # blue 42 + color4 #9ccfd8 43 + color12 #9ccfd8 44 + 45 + # magenta 46 + color5 #c4a7e7 47 + color13 #c4a7e7 48 + 49 + # cyan 50 + color6 #ea9a97 51 + color14 #ea9a97 52 + 53 + # white 54 + color7 #e0def4 55 + color15 #e0def4 56 +
+53
config/kitty/rose-pine.conf
··· 1 + ## name: Rosé Pine 2 + ## author: mvllow 3 + ## license: MIT 4 + ## upstream: https://github.com/rose-pine/kitty/blob/main/dist/rose-pine.conf 5 + ## blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist 6 + 7 + foreground #e0def4 8 + background #191724 9 + selection_foreground #e0def4 10 + selection_background #403d52 11 + 12 + cursor #524f67 13 + cursor_text_color #e0def4 14 + 15 + url_color #c4a7e7 16 + 17 + active_tab_foreground #e0def4 18 + active_tab_background #26233a 19 + inactive_tab_foreground #6e6a86 20 + inactive_tab_background #191724 21 + 22 + # black 23 + color0 #26233a 24 + color8 #6e6a86 25 + 26 + # red 27 + color1 #eb6f92 28 + color9 #eb6f92 29 + 30 + # green 31 + color2 #31748f 32 + color10 #31748f 33 + 34 + # yellow 35 + color3 #f6c177 36 + color11 #f6c177 37 + 38 + # blue 39 + color4 #9ccfd8 40 + color12 #9ccfd8 41 + 42 + # magenta 43 + color5 #c4a7e7 44 + color13 #c4a7e7 45 + 46 + # cyan 47 + color6 #ebbcba 48 + color14 #ebbcba 49 + 50 + # white 51 + color7 #e0def4 52 + color15 #e0def4 53 +
+53
config/kitty/vague.conf
··· 1 + # Vague for Kitty 2 + # ------------------- 3 + # Theme Author: vague2k <ilovedrawing056@gmail.com> 4 + # Ported by: skewb1k <skewb1kunix@gmail.com> 5 + # License: MIT License 6 + # Upstream: https://github.com/vague2k/vague.nvim/blob/main/extras/kitty/vague.conf 7 + 8 + foreground #cdcdcd 9 + background #141415 10 + selection_foreground #cdcdcd 11 + selection_background #252530 12 + 13 + cursor #cdcdcd 14 + cursor_text_color #cdcdcd 15 + 16 + url_color #bb9dbd 17 + 18 + active_tab_foreground #cdcdcd 19 + active_tab_background #141415 20 + inactive_tab_foreground #606079 21 + inactive_tab_background #252530 22 + 23 + # black 24 + color0 #252530 25 + color8 #606079 26 + 27 + # red 28 + color1 #d8647e 29 + color9 #e08398 30 + 31 + # green 32 + color2 #7fa563 33 + color10 #99b782 34 + 35 + # yellow 36 + color3 #f3be7c 37 + color11 #f5cb96 38 + 39 + # blue 40 + color4 #6e94b2 41 + color12 #8ba9c1 42 + 43 + # magenta 44 + color5 #bb9dbd 45 + color13 #c9b1ca 46 + 47 + # cyan 48 + color6 #aeaed1 49 + color14 #bebeda 50 + 51 + # white 52 + color7 #cdcdcd 53 + color15 #d7d7d7
+37
config/pet/config.toml
··· 1 + 2 + [GHEGist] 3 + Public = false 4 + access_token = "" 5 + auto_sync = false 6 + base_url = "" 7 + file_name = "" 8 + gist_id = "" 9 + upload_url = "" 10 + 11 + [General] 12 + Backend = "gist" 13 + Cmd = [] 14 + Color = false 15 + Column = 40 16 + Editor = "nvim" 17 + Format = "[$description]: $command $tags" 18 + SelectCmd = "fzf --ansi --layout=reverse --border --height=90% --pointer=* --cycle --prompt=Snippets:" 19 + SnippetDirs = [] 20 + SnippetFile = "/Users/vieites/.config/pet/snippet.toml" 21 + SortBy = "" 22 + 23 + [Gist] 24 + Public = false 25 + access_token = "" 26 + auto_sync = false 27 + file_name = "pet-snippet.toml" 28 + gist_id = "" 29 + 30 + [GitLab] 31 + ID = "" 32 + Url = "" 33 + Visibility = "private" 34 + access_token = "" 35 + auto_sync = false 36 + file_name = "pet-snippet.toml" 37 + skip_ssl = false
+28
config/pet/snippet.toml
··· 1 + 2 + [[Snippets]] 3 + Description = "Remove the last unpushed n_commits mantaining the changes" 4 + Filename = "/Users/vieites/.config/pet/snippet.toml" 5 + Output = "" 6 + Tag = ["git"] 7 + command = "git reset --soft HEAD~<n_commits=1>" 8 + 9 + [[Snippets]] 10 + Description = "Remove the last unpushed n_commits without mantaining the changes" 11 + Filename = "/Users/vieites/.config/pet/snippet.toml" 12 + Output = "" 13 + Tag = ["git"] 14 + command = "git reset --hard HEAD~<n_commits=1>" 15 + 16 + [[Snippets]] 17 + Description = "Remove untracked files" 18 + Filename = "/Users/vieites/.config/pet/snippet.toml" 19 + Output = "" 20 + Tag = ["git"] 21 + command = "git clean -f" 22 + 23 + [[Snippets]] 24 + Description = "Check untracked files to be removed" 25 + Filename = "/Users/vieites/.config/pet/snippet.toml" 26 + Output = "" 27 + Tag = ["git"] 28 + command = "git clean -n -d"
+28
config/sketchybar/plugins/battery.sh
··· 1 + #!/bin/sh 2 + 3 + PERCENTAGE="$(pmset -g batt | grep -Eo "\d+%" | cut -d% -f1)" 4 + CHARGING="$(pmset -g batt | grep 'AC Power')" 5 + 6 + if [ "$PERCENTAGE" = "" ]; then 7 + exit 0 8 + fi 9 + 10 + case "${PERCENTAGE}" in 11 + 9[0-9]|100) ICON="" 12 + ;; 13 + [6-8][0-9]) ICON="" 14 + ;; 15 + [3-5][0-9]) ICON="" 16 + ;; 17 + [1-2][0-9]) ICON="" 18 + ;; 19 + *) ICON="" 20 + esac 21 + 22 + if [[ "$CHARGING" != "" ]]; then 23 + ICON="" 24 + fi 25 + 26 + # The item invoking this script (name $NAME) will get its icon and label 27 + # updated with the current battery status 28 + sketchybar --set "$NAME" icon="$ICON" label="${PERCENTAGE}%"
+8
config/sketchybar/plugins/clock.sh
··· 1 + #!/bin/sh 2 + 3 + # The $NAME variable is passed from sketchybar and holds the name of 4 + # the item invoking this script: 5 + # https://felixkratz.github.io/SketchyBar/config/events#events-and-scripting 6 + 7 + sketchybar --set "$NAME" label="$(date '+%H:%M  %d/%m')" 8 +
+5
config/sketchybar/plugins/cpu.sh
··· 1 + #!/bin/sh 2 + 3 + usage=$(ps -A -o %cpu | awk '{s+=$1} END {print int(s / 8) "%"}') 4 + 5 + sketchybar --set "$NAME" label="$usage"
+10
config/sketchybar/plugins/front_app.sh
··· 1 + #!/bin/sh 2 + 3 + # Some events send additional information specific to the event in the $INFO 4 + # variable. E.g. the front_app_switched event sends the name of the newly 5 + # focused application in the $INFO variable: 6 + # https://felixkratz.github.io/SketchyBar/config/events#events-and-scripting 7 + 8 + if [ "$SENDER" = "front_app_switched" ]; then 9 + sketchybar --set "$NAME" label="$INFO" 10 + fi
+11
config/sketchybar/plugins/keyboard.sh
··· 1 + #!/bin/sh 2 + 3 + sleep 0.5 4 + 5 + selected=$(defaults read ~/Library/Preferences/com.apple.HIToolbox.plist AppleSelectedInputSources | 6 + grep -i "keyboardlayout name" | 7 + cut -d= -f2 | 8 + tr -d "\";" | 9 + xargs -I% echo %) 10 + 11 + sketchybar --set "$NAME" label="$selected"
+5
config/sketchybar/plugins/memory.sh
··· 1 + #!/bin/sh 2 + 3 + usage=$(ps -A -o %mem | awk '{s+=$1} END {print int(s) "%"}') 4 + 5 + sketchybar --set "$NAME" label="$usage"
+35
config/sketchybar/plugins/space.sh
··· 1 + #!/bin/sh 2 + 3 + # if [[ -z "$FOCUSED" ]] 4 + # then 5 + # FOCUSED=$(aerospace list-workspaces --focused) 6 + # fi 7 + # 8 + # default=( 9 + # icon.background.height=10 10 + # icon.background.corner_radius=10 11 + # icon.padding_right=5 12 + # icon.padding_left=5 13 + # ) 14 + # 15 + # focused=( 16 + # icon.background.drawing=true 17 + # icon.background.height=16 18 + # icon.background.corner_radius=10 19 + # icon.padding_right=20 20 + # icon.padding_left=20 21 + # ) 22 + # 23 + # if [[ "aerospace.$FOCUSED" == "$NAME" ]] 24 + # then 25 + # sketchybar --animate linear 5 \ 26 + # --set "$NAME" "${focused[@]}" 27 + # elif [[ "aerospace.$PREV" == "$NAME" ]] 28 + # then 29 + # sketchybar --animate linear 5 \ 30 + # --set "$NAME" "${default[@]}" 31 + # fi 32 + # 33 + # 34 + 35 + sketchybar --set aerospace label="$(aerospace list-workspaces --focused)"
+37
config/sketchybar/plugins/syscontrol.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + ACTION="$1" 4 + 5 + # Check that a valid argument was provided 6 + if [[ "$ACTION" != "restart" && "$ACTION" != "down" ]]; then 7 + echo "Usage: $0 [restart|down]" 8 + exit 1 9 + fi 10 + 11 + # Set the confirmation message based on the action 12 + if [[ "$ACTION" == "restart" ]]; then 13 + MESSAGE="Are you sure you want to reboot the system?" 14 + else 15 + MESSAGE="Are you sure you want to shut down the system?" 16 + fi 17 + 18 + # Show AppleScript confirmation dialog and capture the button pressed 19 + CHOICE=$(osascript <<EOF 20 + tell application "System Events" 21 + activate 22 + set dialogResult to display dialog "$MESSAGE" buttons {"No", "Yes"} default button "No" with icon caution 23 + return button returned of dialogResult 24 + end tell 25 + EOF 26 + ) 27 + 28 + # Perform the action if the user confirmed 29 + if [[ "$CHOICE" == "Yes" ]]; then 30 + if [[ "$ACTION" == "restart" ]]; then 31 + sudo shutdown -r now 32 + else 33 + sudo shutdown -h now 34 + fi 35 + else 36 + echo "Operation cancelled." 37 + fi
+20
config/sketchybar/plugins/volume.sh
··· 1 + #!/bin/sh 2 + 3 + # The volume_change event supplies a $INFO variable in which the current volume 4 + # percentage is passed to the script. 5 + 6 + if [ "$SENDER" = "volume_change" ]; then 7 + VOLUME="$INFO" 8 + 9 + case "$VOLUME" in 10 + [6-9][0-9]|100) ICON="󰕾" 11 + ;; 12 + [3-5][0-9]) ICON="󰖀" 13 + ;; 14 + [1-9]|[1-2][0-9]) ICON="󰕿" 15 + ;; 16 + *) ICON="󰖁" 17 + esac 18 + 19 + sketchybar --set "$NAME" icon="$ICON" label="$VOLUME%" 20 + fi
+126
config/sketchybar/sketchybarrc
··· 1 + # This is a demo config to showcase some of the most important commands. 2 + # It is meant to be changed and configured, as it is intentionally kept sparse. 3 + # For a (much) more advanced configuration example see my dotfiles: 4 + # https://github.com/FelixKratz/dotfiles 5 + 6 + PLUGIN_DIR="$CONFIG_DIR/plugins" 7 + 8 + ##### Bar Appearance ##### 9 + # Configuring the general appearance of the bar. 10 + # These are only some of the options available. For all options see: 11 + # https://felixkratz.github.io/SketchyBar/config/bar 12 + # If you are looking for other colors, see the color picker: 13 + # https://felixkratz.github.io/SketchyBar/config/tricks#color-picker 14 + 15 + sketchybar --bar position=top height=35 blur_radius=30 color=0x40000000 16 + 17 + ##### Changing Defaults ##### 18 + # We now change some default values, which are applied to all further items. 19 + # For a full list of all available item properties see: 20 + # https://felixkratz.github.io/SketchyBar/config/items 21 + 22 + ##### theme ##### 23 + PALETTE_BASE="0x33191724" 24 + PALETTE_TEXT="0xffe0def4" 25 + PALETTE_MALVE="0xffc4a7e7" 26 + PALETTE_GREEN="0xff9ccfd8" 27 + PALETTE_BLUE="0xff31748f" 28 + PALETTE_YELLOW="0xfff6c177" 29 + ################# 30 + 31 + default=( 32 + padding_left=5 33 + padding_right=5 34 + icon.font="BlexMono Nerd Font Mono:Bold:16.0" 35 + label.font="BlexMono Nerd Font Mono:Semibold:15.0" 36 + # icon.color=0xdd1e1e2e # Dark 37 + # label.color=0xdd1e1e2e 38 + icon.color="$PALETTE_TEXT" # Light 39 + label.color="$PALETTE_TEXT" 40 + icon.padding_left=4 41 + icon.padding_right=4 42 + label.padding_left=4 43 + label.padding_right=4 44 + ) 45 + sketchybar --default "${default[@]}" 46 + 47 + bar=( 48 + height=33 49 + color="$PALETTE_BASE" 50 + ) 51 + sketchybar --bar "${bar[@]}" 52 + 53 + no_margin=( 54 + icon.padding_left=0 55 + background.padding_left=0 56 + background.padding_right=0 57 + icon.padding_right=0 58 + label.padding_left=0 59 + label.padding_right=0 60 + label.font.size=15 61 + icon.font.size=15 62 + ) 63 + 64 + sketchybar --default "${default[@]}" 65 + 66 + sketchybar --add item front_app q \ 67 + --set front_app icon.drawing=off script="$PLUGIN_DIR/front_app.sh" \ 68 + --subscribe front_app front_app_switched 69 + 70 + ##### Adding Mission Control Space Indicators ##### 71 + # Let's add some mission control spaces: 72 + # https://felixkratz.github.io/SketchyBar/config/components#space----associate-mission-control-spaces-with-an-item 73 + # to indicate active and available mission control spaces. 74 + 75 + sketchybar --add event aerospace_workspace_change 76 + 77 + sketchybar --default "default[@]" 78 + 79 + ##### Adding Left Items ##### 80 + # We add some regular items to the left side of the bar, where 81 + # only the properties deviating from the current defaults need to be set 82 + 83 + ##### Adding Right Items ##### 84 + # In the same way as the left items we can add items to the right side. 85 + # Additional position (e.g. center) are available, see: 86 + # https://felixkratz.github.io/SketchyBar/config/items#adding-items-to-sketchybar 87 + 88 + # Some items refresh on a fixed cycle, e.g. the clock runs its script once 89 + # every 10s. Other items respond to events they subscribe to, e.g. the 90 + # volume.sh script is only executed once an actual change in system audio 91 + # volume is registered. More info about the event system can be found here: 92 + # https://felixkratz.github.io/SketchyBar/config/events 93 + 94 + sketchybar --add event change_keyboard_layout 95 + 96 + sketchybar --default icon.font.size=20 97 + 98 + sketchybar --add item clock right \ 99 + --set clock \ 100 + script="$PLUGIN_DIR/clock.sh" \ 101 + update_freq=10 \ 102 + icon= \ 103 + icon.padding_right=0 \ 104 + --add item keyboard right \ 105 + --set keyboard \ 106 + script="$PLUGIN_DIR/keyboard.sh" \ 107 + icon="" \ 108 + icon.padding_right=0 \ 109 + --subscribe keyboard change_keyboard_layout \ 110 + --add item battery right \ 111 + --set battery \ 112 + update_freq=120 \ 113 + script="$PLUGIN_DIR/battery.sh" \ 114 + icon.font.size=17 \ 115 + icon.padding_left=0 \ 116 + icon.padding_right=0 \ 117 + --subscribe battery system_woke \ 118 + --add item aerospace right \ 119 + --set aerospace \ 120 + script="$PLUGIN_DIR/space.sh" \ 121 + icon=󱓼 \ 122 + icon.padding_right=0 \ 123 + label.padding_right=5 \ 124 + --subscribe aerospace aerospace_workspace_change 125 + 126 + sketchybar --update
+61
config/skhd/skhdrc
··· 1 + # open Warp terminal 2 + # cmd - return : open -a "Warp" 3 + 4 + # focus window 5 + cmd - h : yabai -m window --focus west 6 + cmd - j : yabai -m window --focus south 7 + cmd - k : yabai -m window --focus north 8 + cmd - l : yabai -m window --focus east 9 + 10 + # swap managed window 11 + shift + cmd - h : yabai -m window --swap west 12 + shift + cmd - j : yabai -m window --swap south 13 + shift + cmd - k : yabai -m window --swap north 14 + shift + cmd - l : yabai -m window --swap east 15 + 16 + # move managed window 17 + shift + cmd + ctrl - h : yabai -m window --warp west 18 + shift + cmd + ctrl - j : yabai -m window --warp south 19 + shift + cmd + ctrl - k : yabai -m window --warp north 20 + shift + cmd + ctrl - l : yabai -m window --warp east 21 + 22 + # toggle window fullscreen zoom 23 + alt - m : yabai -m window --toggle zoom-fullscreen 24 + 25 + # toggle space layout float/tiled 26 + alt - f : yabai -m space --layout float; /Users/vieites/.mac_config/yabai/scripts/notification.rs -m "Floating" -t "Space" 27 + alt - t : yabai -m space --layout bsp; /Users/vieites/.mac_config/yabai/scripts/notification.rs -m "Tiling" -t "Space" 28 + 29 + # get space information 30 + shift + alt - s : /Users/vieites/.mac_config/yabai/scripts/notification.rs notify -s 31 + 32 + # float / unfloat window and center on screen 33 + alt - c : yabai -m window --toggle float;\ 34 + yabai -m window --grid 8:5:1:1:3:6 35 + 36 + # float / unfloat window and center horizontaly on screen 37 + alt - v : yabai -m window --toggle float;\ 38 + yabai -m window --grid 1:5:1:0:3:1 39 + 40 + # toggle window split type 41 + alt - s : yabai -m window --toggle split 42 + 43 + # move window and focus desktop 44 + shift + cmd - 1 : yabai -m window --space 1 45 + shift + cmd - 2 : yabai -m window --space 2 46 + shift + cmd - 3 : yabai -m window --space 3 47 + shift + cmd - 4 : yabai -m window --space 4 48 + shift + cmd - 5 : yabai -m window --space 5 49 + shift + cmd - 6 : yabai -m window --space 6 50 + shift + cmd - 7 : yabai -m window --space 7 51 + shift + cmd - 8 : yabai -m window --space 8 52 + 53 + # send window to monitor and follow focus 54 + shift + alt - n : yabai -m window --display next; yabai -m display --focus next 55 + shift + alt - p : yabai -m window --display previous; yabai -m display --focus previous 56 + 57 + # # increase window size 58 + cmd + ctrl - k : /Users/vieites/.mac_config/yabai/scripts/resize.sh north 59 + cmd + ctrl - h : /Users/vieites/.mac_config/yabai/scripts/resize.sh west 60 + cmd + ctrl - j : /Users/vieites/.mac_config/yabai/scripts/resize.sh south 61 + cmd + ctrl - l : /Users/vieites/.mac_config/yabai/scripts/resize.sh east
+123
config/starship/starship.toml
··· 1 + format = """ 2 + $directory\ 3 + $character""" 4 + 5 + right_format = """ 6 + $git_branch\ 7 + $git_state\ 8 + $git_status\ 9 + $c\ 10 + $lua\ 11 + $java\ 12 + $python\ 13 + $rust\ 14 + $docker_context\ 15 + $kubernetes\ 16 + $terraform\ 17 + $cmd_duration\ 18 + """ 19 + 20 + # $line_break\ 21 + # $fill\ 22 + # $git_metrics\ 23 + # $time\ 24 + 25 + add_newline = false 26 + 27 + palette = "colors" 28 + 29 + [palettes.colors] 30 + pink = "#EC50D2" 31 + white = "#FFFFFF" 32 + darkblue = "#2492E6" 33 + 34 + # # Replace the "❯" symbol in the prompt with "➜" 35 + [character] # The name of the module we are configuring is "character" 36 + # success_symbol = "[](green)" # The "success_symbol" segment is being set to "➜" with the color "bold green" 37 + success_symbol = "[❯](green)" # The "success_symbol" segment is being set to "➜" with the color "bold green" 38 + error_symbol = "[❯](red)" # The "success_symbol" segment is being set to "➜" with the color "bold green" 39 + vicmd_symbol = "[](bold green)" 40 + 41 + # # Directory 42 + [directory] 43 + # truncation_length = 1 44 + truncate_to_repo = true 45 + # home_symbol = "" 46 + # fish_style_pwd_dir_length = 1 47 + style = "bold bright-blue" 48 + read_only = " " 49 + read_only_style = "pink" 50 + 51 + # git 52 + [git_branch] 53 + symbol = " " 54 + format = '[$symbol$branch ]($style)' 55 + 56 + [git_status] 57 + format = '([$all_status$ahead_behind]($style))' 58 + style = "bold yellow" 59 + up_to_date = " " 60 + deleted = " " 61 + ahead = " " 62 + behind = " " 63 + conflicted = "= " 64 + diverged = "⇕ " 65 + untracked = "? " 66 + stashed = "$ " 67 + modified = "! " 68 + staged = "+ " 69 + renamed = "» " 70 + 71 + [git_metrics] 72 + disabled = false 73 + # added_style = "bold blue" 74 + # format = "[+$added]($added_style)/[-$deleted]($deleted_style) " 75 + 76 + # languages 77 + [c] 78 + format = "[$symbol$version ]($style)" 79 + 80 + [rust] 81 + symbol = " " 82 + style = "bold #dd3617" 83 + format = "[$symbol$version ]($style)" 84 + 85 + [lua] 86 + symbol = " " 87 + format = "[$symbol$version ]($style)" 88 + 89 + [java] 90 + symbol = " " 91 + format = "[$symbol$version ](red)" 92 + 93 + [docker_context] 94 + symbol = " " 95 + format = "[$symbol$version ]($style)" 96 + 97 + [terraform] 98 + symbol = "󱁢 " 99 + format = "[$symbol$version ]($style)" 100 + 101 + #time 102 + [time] 103 + time_format = " %I:%M %P" 104 + format = "[$time]($style) " 105 + style = "bold yellow" 106 + disabled = false 107 + 108 + [cmd_duration] 109 + format = "[$duration ]($style)" 110 + style = "bold white" 111 + 112 + # # Disable the package module, hiding it from the prompt completely 113 + [nodejs] 114 + disabled = true 115 + 116 + [python] 117 + format = '[${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)' 118 + style = "green" 119 + symbol = " " 120 + python_binary = ['.venv/bin/python', 'python', 'python3', 'python2'] 121 + 122 + [line_break] 123 + disabled = true
+23
config/wezterm/autocmds.lua
··· 1 + local wezterm = require 'wezterm' 2 + 3 + local M = {} 4 + 5 + M.apply_to_config = function(config) 6 + wezterm.on("format-tab-title", function(tab, tabs, panes, config, hover, max_width) 7 + local zoomed = "" 8 + if tab.active_pane.is_zoomed then 9 + zoomed = "[Z]" 10 + end 11 + 12 + return ' ' .. zoomed .. tab.active_pane.title .. ' ' 13 + end) 14 + 15 + wezterm.on('update-right-status', function(window, _) 16 + local text = wezterm.format { 17 + { Text = window:active_workspace() }, 18 + } 19 + window:set_right_status(text) 20 + end) 21 + end 22 + 23 + return M
+13
config/wezterm/colors/kanso-ink.toml
··· 1 + [colors] 2 + foreground = "#C5C9C7" 3 + background = "#14171d" 4 + cursor_bg = "#14171d" 5 + cursor_fg = "#C5C9C7" 6 + cursor_border = "#C5C9C7" 7 + selection_fg = "#C5C9C7" 8 + selection_bg = "#393B42" 9 + scrollbar_thumb = "#393B42" 10 + split = "#393B42" 11 + 12 + ansi = ["#14171d", "#C4746E", "#8A9A7B", "#C4B28A", "#8BA4B0", "#A292A3", "#8EA4A2", "#A4A7A4"] 13 + brights = ["#A4A7A4", "#E46876", "#87A987", "#E6C384", "#7FB4CA", "#938AA9", "#7AA89F", "#C5C9C7"]
+13
config/wezterm/colors/kanso-zen.toml
··· 1 + [colors] 2 + foreground = "#C5C9C7" 3 + background = "#090E13" 4 + cursor_bg = "#090E13" 5 + cursor_fg = "#C5C9C7" 6 + cursor_border = "#C5C9C7" 7 + selection_fg = "#C5C9C7" 8 + selection_bg = "#24262D" 9 + scrollbar_thumb = "#24262D" 10 + split = "#24262D" 11 + 12 + ansi = ["#090E13", "#C4746E", "#8A9A7B", "#C4B28A", "#8BA4B0", "#A292A3", "#8EA4A2", "#A4A7A4"] 13 + brights = ["#A4A7A4", "#E46876", "#87A987", "#E6C384", "#7FB4CA", "#938AA9", "#7AA89F", "#C5C9C7"]
+12
config/wezterm/colors/mellifluous.toml
··· 1 + # Mellifluous 2 + [colors] 3 + foreground = "#dddddd" 4 + background = "#1d1d1d" 5 + cursor_bg = "#bfad9e" 6 + cursor_border = "#bfad9e" 7 + cursor_fg = "#1d1d1d" 8 + selection_bg = "#2d2d2d" 9 + selection_fg = "#c0af8c" 10 + 11 + ansi = ["#1d1d1d","#d29393","#b3b393","#cbaa89","#a8a1be","#b39fb0","#c0af8c","#dadada"] 12 + brights = ["#5b5b5b","#c95954","#828040","#a6794c","#5a6599","#9c6995","#74a39e","#ffffff"]
+65
config/wezterm/configs.lua
··· 1 + local wezterm = require 'wezterm' 2 + local configs = {} 3 + 4 + configs.apply_to_config = function(config) 5 + -- Font 6 + -- config.font = wezterm.font_with_fallback { 'Victor Mono', 'Hack Nerd Font' } 7 + -- config.font = wezterm.font_with_fallback { 'JetBrains Mono', 'Hack Nerd Font' } 8 + -- config.font = wezterm.font_with_fallback { 'SF Mono', 'Hack Nerd Font Mono' } 9 + -- config.font = wezterm.font("Victor Mono", { weight = "Medium" }) 10 + config.font = wezterm.font("AnonymicePro Nerd Font Mono", { weight = "Medium" }) 11 + 12 + -- Leader 13 + config.leader = { key = 'Space', mods = 'CTRL' } 14 + 15 + -- Cursor 16 + config.force_reverse_video_cursor = true 17 + 18 + -- Window 19 + config.window_padding = { 20 + left = 0, 21 + right = 0, 22 + bottom = 0, 23 + top = 0, 24 + } 25 + config.window_background_opacity = 0.95 26 + config.macos_window_background_blur = 10 27 + config.window_decorations = "RESIZE" 28 + 29 + -- Colorscheme 30 + -- config.color_scheme = 'Kanagawa (Gogh)' -- kanagawa 31 + -- config.color_scheme = 'mellifluous' -- mellifluous 32 + -- config.color_scheme = 'Catppuccin Mocha (Gogh)' -- catppuccin 33 + config.color_scheme = 'Rosé Pine (Gogh)' -- rose-pine 34 + -- config.color_scheme = 'tokyonight-storm' -- tokyonight 35 + config.colors = { 36 + tab_bar = { 37 + background = "rgba(0, 0, 0, 0)", 38 + active_tab = { 39 + bg_color = "rgba(0, 0, 0, 0)", 40 + fg_color = "#cccc50" 41 + }, 42 + inactive_tab = { 43 + bg_color = "rgba(0, 0, 0, 0)", 44 + fg_color = "#444444" 45 + }, 46 + } 47 + } 48 + 49 + config.font_size = 20 50 + config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" } 51 + 52 + -- Tabbar 53 + config.enable_tab_bar = true 54 + config.tab_bar_at_bottom = true 55 + -- config.show_new_tab_button_in_tab_bar = false 56 + 57 + -- Ctrl-C not bad exit 58 + config.clean_exit_codes = { 130 } 59 + 60 + config.send_composed_key_when_left_alt_is_pressed = true 61 + config.use_fancy_tab_bar = false 62 + -- Return config 63 + end 64 + 65 + return configs
+29
config/wezterm/keys.lua
··· 1 + local wezterm = require 'wezterm' 2 + local act = wezterm.action 3 + 4 + local M = {} 5 + 6 + M.apply_to_config = function(config) 7 + config.keys = { 8 + { key = 'r', mods = 'LEADER', action = act.ReloadConfiguration }, 9 + { key = 's', mods = 'LEADER', action = act.ShowLauncherArgs { flags = 'WORKSPACES' } }, 10 + -- Panes 11 + { key = 'h', mods = 'LEADER', action = act.ActivatePaneDirection 'Left' }, 12 + { key = 'l', mods = 'LEADER', action = act.ActivatePaneDirection 'Right' }, 13 + { key = 'k', mods = 'LEADER', action = act.ActivatePaneDirection 'Up' }, 14 + { key = 'j', mods = 'LEADER', action = act.ActivatePaneDirection 'Down' }, 15 + { key = '_', mods = 'LEADER', action = act.SplitPane { direction = 'Right' } }, 16 + { key = '-', mods = 'LEADER', action = act.SplitPane { direction = 'Down' } }, 17 + { key = 'm', mods = 'LEADER', action = act.TogglePaneZoomState }, 18 + -- Tabs 19 + { key = 'c', mods = 'LEADER', action = act.SpawnTab 'CurrentPaneDomain' }, 20 + { key = ',', mods = 'LEADER', action = act.ActivateTabRelative(-1) }, 21 + { key = '.', mods = 'LEADER', action = act.ActivateTabRelative(1) }, 22 + { key = ',', mods = 'CTRL|SHIFT', action = act.MoveTabRelative(-1) }, 23 + { key = '.', mods = 'CTRL|SHIFT', action = act.MoveTabRelative(1) }, 24 + -- Search 25 + { key = '[', mods = 'LEADER', action = act.ActivateCopyMode }, 26 + } 27 + end 28 + 29 + return M
+37
config/wezterm/keytables.lua
··· 1 + local wezterm = require 'wezterm' 2 + local act = wezterm.action 3 + 4 + local M = {} 5 + 6 + M.apply_to_config = function(config) 7 + local search_mode = nil 8 + local copy_mode = nil 9 + 10 + if wezterm.gui then 11 + search_mode = wezterm.gui.default_key_tables().search_mode 12 + copy_mode = wezterm.gui.default_key_tables().copy_mode 13 + table.insert( 14 + search_mode, 15 + { key = 'Enter', mods = '', action = act.CopyMode 'AcceptPattern' } 16 + ) 17 + table.insert( 18 + search_mode, 19 + { key = 'u', mods = 'CTRL', action = act.CopyMode 'ClearPattern' } 20 + ) 21 + table.insert( 22 + copy_mode, 23 + { key = '-', mods = '', action = act.CopyMode 'ClearPattern' } 24 + ) 25 + table.insert( 26 + copy_mode, 27 + { key = '/', mods = '', action = act.CopyMode 'EditPattern' } 28 + ) 29 + end 30 + 31 + config.key_tables = { 32 + search_mode = search_mode, 33 + copy_mode = copy_mode 34 + } 35 + end 36 + 37 + return M
+39
config/wezterm/wezterm.lua
··· 1 + local wezterm = require 'wezterm' 2 + 3 + local config = {} 4 + 5 + if wezterm.config_builder then 6 + config = wezterm.config_builder() 7 + end 8 + 9 + ---@param spec {string,...} A table with the modules to load. 10 + local function apply_to_config(spec) 11 + for _, s in ipairs(spec) do 12 + local ok, r = pcall(require, s) 13 + if ok then 14 + r.apply_to_config(config) 15 + else 16 + wezterm.log_error(string.format("The module '%s' does not exist", s)) 17 + end 18 + end 19 + 20 + end 21 + 22 + apply_to_config({ 23 + 'configs', 24 + 'keys', 25 + 'keytables', 26 + 'autocmds', 27 + }) 28 + 29 + -- Plugins 30 + 31 + wezterm.plugin.update_all() 32 + 33 + local sess = wezterm.plugin.require 'https://github.com/vieitesss/workspacesionizer.wezterm' 34 + -- local sess = wezterm.plugin.require(string.format('file://%s/personal/workspacesionizer.wezterm', os.getenv("HOME"))) 35 + local o = sess.apply_to_config(config, { 36 + paths = { "~/personal", "~/.config", "~/tfg", "~/prefapp" }, 37 + }) 38 + 39 + return config
+52
config/yabai/yabairc
··· 1 + #!/usr/bin/env sh 2 + 3 + sudo yabai --uninstall-sa 4 + sudo yabai --install-sa 5 + 6 + yabai -m signal --add event=dock_did_restart action="sudo yabai --load-sa" 7 + sudo yabai --load-sa 8 + 9 + # global settings 10 + yabai -m config mouse_follows_focus off 11 + yabai -m config focus_follows_mouse off 12 + yabai -m config window_origin_display default 13 + yabai -m config window_placement second_child 14 + yabai -m config window_topmost off 15 + yabai -m config window_shadow on 16 + yabai -m config window_opacity off 17 + yabai -m config window_opacity_duration 0.0 18 + yabai -m config active_window_opacity 1.0 19 + yabai -m config normal_window_opacity 0.90 20 + yabai -m config window_border off 21 + yabai -m config window_border_width 6 22 + yabai -m config active_window_border_color 0xff775759 23 + yabai -m config normal_window_border_color 0xff555555 24 + yabai -m config insert_feedback_color 0xffd75f5f 25 + yabai -m config split_ratio 0.50 26 + yabai -m config auto_balance off 27 + yabai -m config mouse_modifier fn 28 + yabai -m config mouse_action1 move 29 + yabai -m config mouse_action2 resize 30 + yabai -m config mouse_drop_action swap 31 + 32 + # general space settings 33 + yabai -m config layout bsp 34 + yabai -m config top_padding 15 35 + yabai -m config bottom_padding 15 36 + yabai -m config left_padding 15 37 + yabai -m config right_padding 15 38 + yabai -m config window_gap 15 39 + 40 + # apps to not manage (ignore) 41 + yabai -m rule --add app="^System Settings$" manage=off 42 + yabai -m rule --add app="^VirtualBox$" manage=off 43 + yabai -m rule --add app="^Finder$" manage=off 44 + yabai -m rule --add app="^App Store$" manage=off 45 + yabai -m rule --add app="^Alfred Preferences$" manage=off 46 + yabai -m rule --add app="^Numi$" manage=off 47 + yabai -m rule --add app="^Stats$" manage=off 48 + yabai -m rule --add app=".*\.out$" manage=off 49 + yabai -m rule --add app="^FachadaAplicacion$" manage=off 50 + yabai -m rule --add app="^Stickies$" manage=off 51 + 52 + echo "yabai configuration loaded.."
+71
config/zed/keymap.json
··· 1 + // Zed keymap 2 + // 3 + // For information on binding keys, see the Zed 4 + // documentation: https://zed.dev/docs/key-bindings 5 + // 6 + // To see the default key bindings run `zed: open default keymap` 7 + // from the command palette. 8 + [ 9 + { 10 + "bindings": { 11 + "ctrl-w l": "workspace::ActivatePaneRight", 12 + "ctrl-w h": "workspace::ActivatePaneLeft", 13 + "ctrl-w j": "workspace::ActivatePaneDown", 14 + "ctrl-w k": "workspace::ActivatePaneUp", 15 + }, 16 + }, 17 + { 18 + "context": "Workspace", 19 + "bindings": { 20 + // "shift shift": "file_finder::Toggle" 21 + }, 22 + }, 23 + { 24 + "context": "Editor && vim_mode == insert", 25 + "bindings": { 26 + // "j k": "vim::NormalBefore" 27 + }, 28 + }, 29 + { 30 + "context": "Editor && vim_mode == normal", 31 + "bindings": { 32 + "space f f": "file_finder::Toggle", 33 + }, 34 + }, 35 + { 36 + "context": "VimControl && !menu && vim_mode == normal", 37 + "bindings": { 38 + "space w": "workspace::Save", 39 + "ctrl-d": [ 40 + "action::Sequence", 41 + ["vim::ScrollDown", "editor::ScrollCursorCenter"], 42 + ], 43 + "ctrl-u": [ 44 + "action::Sequence", 45 + ["vim::ScrollUp", "editor::ScrollCursorCenter"], 46 + ], 47 + 48 + // tabs 49 + "ctrl-n": "pane::ActivateNextItem", 50 + "ctrl-p": "pane::ActivatePreviousItem", 51 + 52 + // git 53 + "space g s": "git_panel::ToggleFocus", 54 + 55 + // file tree 56 + "space o f": "project_panel::ToggleFocus", 57 + }, 58 + }, 59 + { 60 + "context": "(Editor && edit_prediction)", 61 + "bindings": { 62 + "shift-tab": "editor::AcceptEditPrediction", 63 + }, 64 + }, 65 + { 66 + "context": "(Editor && edit_prediction)", 67 + "bindings": { 68 + "tab": null, 69 + }, 70 + }, 71 + ]
+112
config/zed/settings.json
··· 1 + // Zed settings 2 + // 3 + // For information on how to configure Zed, see the Zed 4 + // documentation: https://zed.dev/docs/configuring-zed 5 + // 6 + // To see all of Zed's default settings without changing your 7 + // custom settings, run `zed: open default settings` from the 8 + // command palette (cmd-shift-p / ctrl-shift-p) 9 + { 10 + "vertical_scroll_margin": 8.0, 11 + "project_panel": { 12 + "sort_mode": "directories_first", 13 + "bold_folder_labels": true, 14 + }, 15 + "extend_comment_on_newline": false, 16 + "edit_predictions": { 17 + "copilot": { 18 + "enable_next_edit_suggestions": false 19 + }, 20 + "provider": "copilot", 21 + }, 22 + "buffer_line_height": "standard", 23 + "agent_servers": { 24 + "kimi2.5": { 25 + "type": "custom", 26 + "command": "kimi", 27 + }, 28 + "github-copilot": { 29 + "type": "registry", 30 + }, 31 + }, 32 + "agent_ui_font_size": 18.0, 33 + "agent_buffer_font_size": 16.0, 34 + "git": { 35 + "inline_blame": { 36 + "enabled": false, 37 + }, 38 + }, 39 + "use_autoclose": false, 40 + "toolbar": { 41 + "code_actions": false, 42 + "agent_review": true, 43 + "selections_menu": true, 44 + "quick_actions": false, 45 + "breadcrumbs": true, 46 + }, 47 + "use_on_type_format": true, 48 + "scrollbar": { 49 + "selected_symbol": true, 50 + }, 51 + "title_bar": { 52 + "show_menus": false, 53 + "show_user_picture": true, 54 + "show_user_menu": true, 55 + "show_sign_in": true, 56 + "show_onboarding_banner": true, 57 + "show_branch_name": true, 58 + }, 59 + "use_system_window_tabs": false, 60 + "tabs": { 61 + "show_diagnostics": "off", 62 + "file_icons": false, 63 + "git_status": false, 64 + }, 65 + "tab_bar": { 66 + "show_pinned_tabs_in_separate_row": false, 67 + "show_nav_history_buttons": false, 68 + "show": false, 69 + }, 70 + "relative_line_numbers": "enabled", 71 + "buffer_font_family": "Terminess Nerd Font Mono", 72 + "terminal": { 73 + "font_size": 17.0, 74 + "cursor_shape": "block", 75 + "shell": { 76 + "with_arguments": { 77 + "program": "zsh", 78 + "args": [], 79 + "title_override": null, 80 + }, 81 + }, 82 + "font_family": "Terminess Nerd Font Mono", 83 + }, 84 + "session": { 85 + "trust_all_worktrees": true, 86 + }, 87 + "vim_mode": true, 88 + "icon_theme": { 89 + "mode": "dark", 90 + "light": "Zed (Default)", 91 + "dark": "Zed (Default)", 92 + }, 93 + "ui_font_size": 16, 94 + "buffer_font_size": 17.0, 95 + "theme": { 96 + "mode": "dark", 97 + "light": "Ayu Light", 98 + "dark": "macOS Classic Dark", 99 + }, 100 + "languages": { 101 + "Go": { 102 + "hard_tabs": true, 103 + "tab_size": 4, 104 + }, 105 + "TypeScript": { 106 + "formatter": [], 107 + "code_actions_on_format": { 108 + "source.fixAll.eslint": true, 109 + }, 110 + }, 111 + }, 112 + }