├── .gitignore
├── LICENSE
├── README.md
├── SPEC.md
├── assets
├── colors.css
├── logo
│ ├── logo.png
│ └── logo.xcf
├── misc
│ └── transparent.png
└── palette
│ ├── circles
│ ├── background.png
│ ├── background.psd
│ ├── comment.png
│ ├── comment.psd
│ ├── currentline.png
│ ├── currentline.psd
│ ├── cyan.png
│ ├── cyan.psd
│ ├── foreground.png
│ ├── foreground.psd
│ ├── green.png
│ ├── green.psd
│ ├── orange.png
│ ├── orange.psd
│ ├── pink.png
│ ├── pink.psd
│ ├── purple.png
│ ├── purple.psd
│ ├── red.png
│ ├── red.psd
│ ├── yellow.png
│ └── yellow.psd
│ └── photoshop-swatches.aco
└── wallpaper
├── 1280x720.png
├── 1280x720.xcf
├── 1440x3120.png
├── 1440x3120.xcf
├── 1920x1080.png
├── 1920x1080.xcf
├── 1920x1200.png
├── 1920x1200.xcf
├── 2560x1440.png
├── 2560x1440.xcf
├── 2560x1600.png
├── 2560x1600.xcf
├── 3440x1440.png
├── 3440x1440.xcf
├── 3840x2160.png
└── 3840x2160.xcf
/.gitignore:
--------------------------------------------------------------------------------
1 | **/.DS_Store
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Eldritch
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | 
3 |
4 | Eldritch Theme
5 |
6 |
7 |
8 |
17 |
18 |
19 | Eldritch is a community-driven dark theme inspired by Lovecraftian horror. With tones from the dark abyss and an emphasis on green and blue, it caters to those who appreciate the darker side of life.
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | This repo serves as a repository for all the links to Eldritch theme ports as well as the general documentation and contribution guidelines. The theme is available for a variety of applications and is constantly being updated, expanded, and improved.
30 |
31 |
32 | ### 🎨 Palette
33 |
34 |
35 |
36 | |
37 | Labels |
38 | Descriptor |
39 | Hex |
40 | RGB |
41 | HSL |
42 | CMYK |
43 | Ansi16 |
44 | Ansi256 |
45 |
46 |
47 |  |
48 | Sunken Depths Grey |
49 | Background |
50 | #212337 |
51 | rgb(33, 35, 55) |
52 | hsl(234.55 deg, 25%, 17.25%) |
53 | cmyk(40, 36, 0, 78) |
54 | 0 |
55 | 236
56 | |
57 |
58 |  |
59 | Shallow Depths Grey |
60 | Current Line |
61 | #323449 |
62 | rgb(50, 52, 73) |
63 | hsl(234.78 deg, 18.7%, 24.12%) |
64 | cmyk(32, 42, 0, 5) |
65 | 8 |
66 | 59
67 | |
68 |
69 |  |
70 | Lighthouse White |
71 | Foreground |
72 | #ebfafa |
73 | rgb(235, 250, 250) |
74 | hsl(180 deg, 60%, 95.1%) |
75 | cmyk(6, 0, 0, 2) |
76 | 15 |
77 | 231
78 | |
79 |
80 |  |
81 | The Old One Purple |
82 | Comment |
83 | #7081d0 |
84 | rgb(112, 129, 208) |
85 | hsl(229.38 deg, 50.53%, 62.75%) |
86 | cmyk(46, 38, 0, 18) |
87 | 4 |
88 | 105 |
89 |
90 |
91 |  |
92 | Watery Tomb Blue |
93 | Secondary (Cyan) |
94 | #04d1f9 |
95 | rgb(4, 209, 249) |
96 | hsl(189.8 deg, 96.84%, 49.61%) |
97 | cmyk(98, 16, 0, 2) |
98 | 14 |
99 | 81
100 | |
101 |
102 |  |
103 | Great Old One Green |
104 | Primary (Green) |
105 | #37f499 |
106 | rgb(55, 244, 153) |
107 | hsl(151.11 deg, 89.57%, 58.63%) |
108 | cmyk(40, 36, 0, 78) |
109 | 10 |
110 | 120
111 | |
112 |
113 |  |
114 | Dreaming Orange |
115 | Orange |
116 | #f7c67f |
117 | rgb(247, 198, 127) |
118 | hsl(35.5 deg, 88.24%, 73.33%) |
119 | cmyk(0, 20, 49, 3) |
120 | 11 |
121 | 222 |
122 |
123 |
124 |  |
125 | Pustule Pink |
126 | Pink |
127 | #f265b5 |
128 | rgb(242, 101, 181) |
129 | hsl(325.96 deg, 84.43%, 67.25%) |
130 | cmyk(0, 58, 25, 5) |
131 | 13 |
132 | 205 |
133 |
134 |
135 |  |
136 | Lovecraft Purple |
137 | Purple (Accent) |
138 | #a48cf2 |
139 | rgb(164,140,242) |
140 | hsl(254.12 deg, 79.69%, 74.9%) |
141 | cmyk(32,42,0,5) |
142 | 5 |
143 | 63 |
144 |
145 |
146 |  |
147 | R'lyeh' Red |
148 | Red (Error) |
149 | #f16c75 |
150 | rgb(241, 108, 117) |
151 | hsl(355.94 deg, 82.61%, 68.43%) |
152 | cmyk(0,55,51,5) |
153 | 9 |
154 | 203 |
155 |
156 |
157 |  |
158 | Gold of Yuggoth |
159 | Yellow |
160 | #f1fc79 |
161 | rgb(241, 252, 121) |
162 | hsl(65.04 deg, 95.62%, 73.14%) |
163 | cmyk(4, 0, 52, 1) |
164 | 11 |
165 | 227 |
166 |
167 |
168 |
169 | ### 🧵 Ports
170 |
171 |
172 | 🗒️ IDEs
173 |
174 |
175 |
176 | Application |
177 | Theme Repository |
178 |
179 |
180 | Visual Studio Code |
181 | vscode |
182 | A highly popular Electron based IDE by Microsoft |
183 |
184 |
185 | NeoVim |
186 | eldritch.nvim |
187 | NeoVim is a hyperextensible Vim-based text editor |
188 |
189 |
190 |
191 |
192 |
193 | 🖥️ Terminals
194 |
195 |
196 |
197 | Application |
198 | Theme Repository |
199 | Description |
200 |
201 |
202 | Windows Terminal |
203 | windows-terminal |
204 | The Windows Terminal is a modern, fast, efficient, powerful, and productive terminal application for users of command-line tools and shells
205 | |
206 |
207 |
208 | Wezterm |
209 | wezterm |
210 | WezTerm is a powerful cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust
211 | |
212 |
213 |
214 | Kitty |
215 | kitty |
216 | The fast, feature-rich, GPU based terminal emulator |
217 |
218 |
219 | Ghostty |
220 | ghostty |
221 | Ghostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration. |
222 |
223 |
224 | Warp |
225 | warp |
226 | Warp is the terminal reimagined with AI and collaborative tools for better productivity |
227 |
228 |
229 | iTerm2 |
230 | iTerm2 |
231 | iTerm2 is a replacement for Terminal and the successor to iTerm. It works on Macs with macOS 10.14 or newer. iTerm2 brings the terminal into the modern age with features you never knew you always wanted. |
232 |
233 |
234 | Alacritty |
235 | Alacritty |
236 | Alacritty - A fast, cross-platform, OpenGL terminal emulator. |
237 |
238 |
239 | Termux |
240 | eldritch-termux |
241 | Termux is a terminal emulator and GNU/Linux environment application for Android OS. |
242 |
243 |
244 |
245 |
246 |
247 | 🌐 Browsers
248 |
249 |
250 |
251 | Application |
252 | Theme Repository |
253 | Description |
254 |
255 |
256 | Vivaldi |
257 | vivaldi |
258 | A Chromium based browser focused on security and high levels of customization. |
259 |
260 |
261 | Firefox |
262 | firefox |
263 | No shady privacy policies or back doors for advertisers. Just a lightning fast browser that doesn’t sell you out. |
264 |
265 |
266 | Zen |
267 | zen |
268 | Firefox based browser with a focus on privacy and customization. |
269 |
270 |
271 | 🙊 UserJS scripts & Browser Extensions
272 |
273 |
274 | Site |
275 | Theme Repository |
276 | Description |
277 |
278 |
279 | DuckDuckGo |
280 | duckduckgo |
281 | A search engine focused on privacy |
282 |
283 |
284 | Tridactyl |
285 | tridactyl |
286 | Replace Firefox's default control mechanism with one modelled on the one true editor, Vim. |
287 |
288 |
289 |
290 |
291 |
292 | 🗒️ Note Taking
293 |
294 |
295 |
296 | Application |
297 | Theme Repository |
298 | Description |
299 |
300 |
301 | Obsidian |
302 | obsidian |
303 | Obsidian is the private and flexible writing app that adapts to the way you think. |
304 |
305 |
306 |
307 |
308 |
309 | 🐚 Shell & CLI Applications
310 |
311 |
312 |
313 | Application |
314 | Theme Repository |
315 | Description |
316 |
317 |
318 | Fish Shell |
319 | fish |
320 | The user-friendly command line shell. |
321 |
322 | Pure Prompt |
323 | pure-prompt |
324 | Pure ZSH prompt |
325 |
326 |
327 | Spaceship Prompt |
328 | spaceship |
329 | Minimalistic, powerful and extremely customizable Zsh prompt |
330 |
331 |
332 | FZF |
333 | fzf |
334 | Fuzzy Finder |
335 |
336 |
337 | Bat |
338 | bat |
339 | A cat clone with syntax highlighting and git integration |
340 |
341 |
342 | LSD |
343 | lsd |
344 | A rewrite of GNU ls with lots of added features like colors, icons, tree-view, more formatting options etc.
345 | |
346 |
347 |
348 | btop |
349 | btop |
350 | Resource monitor that shows usage and stats for processor, memory, disks, network and processes |
351 |
352 |
353 | neofetch |
354 | neofetch |
355 | Neofetch displays information about your operating system, software and hardware in an aesthetic and visually
356 | pleasing way.This repo has been archived. Recommend using fastfetch |
357 |
358 |
359 | fastfetch |
360 | fastfetch |
361 | Fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way. It is written mainly in C, with performance and customizability in mind. |
362 |
363 |
364 |
365 |
366 |
367 | 🥾 Boot Managers / Loaders
368 |
369 |
370 |
371 | Application |
372 | Theme Repository |
373 |
374 |
375 | rEFInd |
376 | refind |
377 | rEFInd is a popular boot manager for UEFI and EFI based machines. It is a fork of the no longer maintained, rEFIt boot manager. |
378 |
379 |
380 |
381 |
382 |
383 | 💬 Communication
384 |
385 |
386 |
387 | Application |
388 | Theme Repository |
389 | Description |
390 |
391 |
392 | Slack |
393 | slack |
394 | Slack is a messaging app for business that connects people to the information they need. |
395 |
396 |
397 | BetterDiscord |
398 | betterdiscord |
399 | BetterDiscord extends the functionality of DiscordApp by enhancing it with new features. |
400 |
401 |
402 | Thunderbird |
403 | thunderbird |
404 | Meet Thunderbird, the email and productivity app that maximizes your freedoms. |
405 |
406 |
407 |
408 |
409 |
410 | 🎧 Music
411 |
412 |
413 |
414 | Application |
415 | Theme Repository |
416 | Description |
417 |
418 |
419 | Spicetify |
420 | spicetify |
421 | Powerful CLI tool to take control of the Spotify client. |
422 |
423 |
424 | Kagi |
425 | kagi |
426 | Kagi is a paid service because we want to show you high quality, unbiased search results that are in your best interest. |
427 |
428 |
429 |
430 |
431 |
432 | 🤷 Misc
433 |
434 |
435 |
436 | Application |
437 | Theme Repository |
438 | Description |
439 |
440 |
441 | GitHub Readme Stats |
442 | github-readme-stats |
443 | GitHub stat badges for your profile README. |
444 |
445 |
446 | Hyprpanel |
447 | DWarez/eldritch-hyprpanel |
448 | Hyprpanel theme |
449 |
450 |
451 | Walker |
452 | walker |
453 | Walker is a highly extendable application launcher that doesn't hold back on features and usability. Fast. Unclutters your brain. Improves your workflow. |
454 |
455 |
456 |
457 |
458 | ### Wallpapers
459 |
460 | - Wallpapers can be found under the [wallpaper](https://github.com/eldritch-theme/eldritch/tree/master/wallpaper) directory.
461 | - If you're using [Wallpaper Engine](https://www.wallpaperengine.io/en) we have a theme for that too [here](https://steamcommunity.com/sharedfiles/filedetails/?id=3209391257)!
462 | - Only supports 3440x1440 but if you'd like a different resolution let me know and I can work on it.
463 |
464 | ### Contributing
465 |
466 | 1. Clone [template repo](https://github.com/eldritch-theme/eldritch-repo-template).
467 |
468 | ```
469 | git clone https://github.com/eldritch-theme/eldritch-repo-template your-port-name
470 | cd your-port-name && rm -rf .git
471 | ```
472 |
473 | 2. Add anything you need, replacing things in README.md as needed.
474 | 3. Be sure to checkout the [SPEC.md](https://github.com/eldritch-theme/eldritch/blob/master/SPEC.md) for more info on color usage.
475 | 4. You can choose to either host the repo on your own account or you can request to be a contributor to the [eldritch-theme](https://github.com/eldritch-theme) and I will approve you so you can maintain the repo along with other under the organization account.
476 | 5. Create a pull request to update README.md in this repo to link to the newly created repo.
477 |
--------------------------------------------------------------------------------
/SPEC.md:
--------------------------------------------------------------------------------
1 | ### Eldritch Syntax Highlighting Specification
2 |
3 | #### 1. Prelude
4 | ##### 1.1 Color Palette
5 | ##### 1.1.1 Standard
6 | - Background:
7 | - #212337
8 | - Current Line:
9 | - #323449
10 | - Foreground:
11 | - #ebfafa
12 | - Comment:
13 | - #7081d0
14 | - Cyan:
15 | - #04d1f9
16 | - Green:
17 | - #37f499
18 | - Orange:
19 | - #f7c67f
20 | - Pink:
21 | - #f265b5
22 | - Purple:
23 | - #a48cf2
24 | - Red:
25 | - #f16c75
26 | - Yellow:
27 | - #f1fc79
28 |
29 | ##### 1.1.2 ANSI
30 | - AnsiBlack
31 | - #21222C
32 | - AnsiRed
33 | - #f16c75
34 | - AnsiGreen
35 | - #37f499
36 | - AnsiYellow
37 | - #f1fc79
38 | - AnsiBlue
39 | - #a48cf2
40 | - AnsiMagenta
41 | - #f265b5
42 | - AnsiCyan
43 | - #04d1f9
44 | - AnsiWhite
45 | - #ebfafa
46 | - AnsiBrightBlack
47 | - #323449
48 | - AnsiBrightRed
49 | - #f9515d
50 | - AnsiBrightGreen
51 | - #69F8B3
52 | - AnsiBrightYellow
53 | - #e9f941
54 | - AnsiBrightBlue
55 | - #9071f4
56 | - AnsiBrightMagenta
57 | - #FD92CE
58 | - AnsiBrightCyan
59 | - #66e4fd
60 | - AnsiBrightWhite
61 | - #FFFFFF
62 |
63 | #### 2. Supplementary Colors
64 | - bg_dark
65 | - #171928
66 | - bg_highlight
67 | - #292e42
68 | - terminal_black
69 | - #414868
70 | - fg_dark
71 | - #ABB4DA
72 | - fg_gutter
73 | - #3b4261
74 | - dark3
75 | - #6473B7
76 | - comment
77 | - #7081d0
78 | - dark5
79 | - #5866A2
80 | - visual
81 | - #76639e
82 | - dark_cyan
83 | - #10A1BD
84 | - magenta2
85 | - #bf4f8e
86 | - magenta3
87 | - #722f55
88 | - dark_yellow
89 | - #c0c95f
90 | - dark_green
91 | - #33C57F
92 | - bright_red
93 | - #f0313e
94 |
95 | #### 3. Syntax Highlighting
96 | - ["@error"] = { fg = colors.bright_red },
97 | - ["@punctuation.delimiter"] = { fg = colors.fg },
98 | - ["@punctuation.bracket"] = { fg = colors.fg },
99 | - ["@markup.list"] = { fg = colors.cyan },
100 | - ["@constant"] = { fg = colors.bright_cyan },
101 | - ["@constant.builtin"] = { fg = colors.bright_cyan },
102 | - ["@markup.link.label.symbol"] = { fg = colors.bright_cyan },
103 | -
104 | - ["@constant.macro"] = { fg = colors.cyan },
105 | - ["@string.regexp"] = { fg = colors.yellow },
106 | - ["@string"] = { fg = colors.yellow },
107 | - ["@string.escape"] = { fg = colors.cyan },
108 | - ["@string.special.symbol"] = { fg = colors.green },
109 | - ["@character"] = { fg = colors.pink },
110 | - ["@number"] = { fg = colors.green },
111 | - ["@boolean"] = { fg = colors.green },
112 | - ["@number.float"] = { fg = colors.pink },
113 | - ["@annotation"] = { fg = colors.yellow },
114 | - ["@attribute"] = { fg = colors.cyan },
115 | - ["@module"] = { fg = colors.orange },
116 | -
117 | - ["@function.builtin"] = { fg = colors.cyan },
118 | - ["@function"] = { fg = colors.purple },
119 | - ["@function.macro"] = { fg = colors.purple },
120 | - ["@variable.parameter"] = { fg = colors.orange },
121 | - ["@variable.parameter.reference"] = { fg = colors.orange },
122 | - ["@function.method"] = { fg = colors.purple },
123 | - ["@variable.member"] = { fg = colors.orange },
124 | - ["@property"] = { fg = colors.bright_green },
125 | - ["@constructor"] = { fg = colors.cyan },
126 | -
127 | - ["@keyword.conditional"] = { fg = colors.purple },
128 | - ["@keyword.repeat"] = { fg = colors.purple },
129 | - ["@label"] = { fg = colors.cyan },
130 | -
131 | - ["@keyword"] = { fg = colors.green },
132 | - ["@keyword.function"] = { fg = colors.cyan },
133 | - ["@keyword.function.ruby"] = { fg = colors.purple },
134 | - ["@keyword.operator"] = { fg = colors.purple },
135 | - ["@operator"] = { fg = colors.purple },
136 | - ["@keyword.exception"] = { fg = colors.green },
137 | - ["@type"] = { fg = colors.bright_purple },
138 | - ["@type.builtin"] = { fg = colors.cyan, italic = true },
139 | - ["@type.qualifier"] = { fg = colors.purple },
140 | - ["@type.def"] = { fg = colors.yellow },
141 | - ["@structure"] = { fg = colors.green },
142 | - ["@keyword.include"] = { fg = colors.purple },
143 | -
144 | - ["@variable"] = { fg = colors.red },
145 | - ["@variable.builtin"] = { fg = colors.green },
146 | -
147 | - ["@markup"] = { fg = colors.orange },
148 | - ["@markup.strong"] = { fg = colors.orange, bold = true }, -- bold
149 | - ["@markup.emphasis"] = { fg = colors.yellow, italic = true }, -- italic
150 | - ["@markup.underline"] = { fg = colors.orange },
151 | - ["@markup.heading"] = { fg = colors.purple, bold = true }, -- title
152 | - ["@markup.raw"] = { fg = colors.yellow }, -- inline code
153 | - ["@markup.link.url"] = { fg = colors.yellow, italic = true }, -- urls
154 | - ["@markup.link"] = { fg = colors.orange, bold = true },
155 | -
156 | - ["@tag"] = { fg = colors.cyan },
157 | - ["@tag.attribute"] = { fg = colors.pink },
158 | - ["@tag.delimiter"] = { fg = colors.cyan },
159 | -
160 | ##### Semantic
161 | - ["@class"] = { fg = colors.cyan },
162 | - ["@struct"] = { fg = colors.cyan },
163 | - ["@enum"] = { fg = colors.cyan },
164 | - ["@enumMember"] = { fg = colors.green },
165 | - ["@event"] = { fg = colors.cyan },
166 | - ["@interface"] = { fg = colors.cyan },
167 | - ["@modifier"] = { fg = colors.cyan },
168 | - ["@regexp"] = { fg = colors.yellow },
169 | - ["@typeParameter"] = { fg = colors.cyan },
170 | - ["@decorator"] = { fg = colors.cyan },
171 | -
172 | ##### LSP Semantic
173 | - ["@lsp.type.boolean"] = { link = "@boolean" },
174 | - ["@lsp.type.builtinType"] = { link = "@type.builtin" },
175 | - ["@lsp.type.comment"] = { link = "@comment" },
176 | - ["@lsp.type.decorator"] = { link = "@attribute" },
177 | - ["@lsp.type.deriveHelper"] = { link = "@attribute" },
178 | - ["@lsp.type.enum"] = { link = "@type" },
179 | - ["@lsp.type.enumMember"] = { link = "@constant" },
180 | - ["@lsp.type.escapeSequence"] = { link = "@string.escape" },
181 | - ["@lsp.type.formatSpecifier"] = { link = "@markup.list" },
182 | - ["@lsp.type.generic"] = { link = "@variable" },
183 | - ["@lsp.type.keyword"] = { link = "@keyword" },
184 | - ["@lsp.type.namespace"] = { link = "@module" },
185 | - ["@lsp.type.number"] = { link = "@number" },
186 | - ["@lsp.type.operator"] = { link = "@operator" },
187 | - ["@lsp.type.parameter"] = { link = "@variable.parameter" },
188 | - ["@lsp.type.property"] = { link = "@property" },
189 | - ["@lsp.type.selfKeyword"] = { link = "@variable.builtin" },
190 | - ["@lsp.type.selfTypeKeyword"] = { link = "@variable.builtin" },
191 | - ["@lsp.type.string"] = { link = "@string" },
192 | - ["@lsp.type.typeAlias"] = { link = "@type.def" },
193 | - ["@lsp.type.variable"] = {}, -- use treesitter styles for regular variables
194 | - ["@lsp.typemod.class.defaultLibrary"] = { link = "@type.builtin" },
195 | - ["@lsp.typemod.enum.defaultLibrary"] = { link = "@type.builtin" },
196 | - ["@lsp.typemod.enumMember.defaultLibrary"] = { link = "@constant.builtin" },
197 | - ["@lsp.typemod.function.defaultLibrary"] = { link = "@function.builtin" },
198 | - ["@lsp.typemod.keyword.injected"] = { link = "@keyword" },
199 | - ["@lsp.typemod.macro.defaultLibrary"] = { link = "@function.builtin" },
200 | - ["@lsp.typemod.method.defaultLibrary"] = { link = "@function.builtin" },
201 | - ["@lsp.typemod.operator.injected"] = { link = "@operator" },
202 | - ["@lsp.typemod.string.injected"] = { link = "@string" },
203 | - ["@lsp.typemod.struct.defaultLibrary"] = { link = "@type.builtin" },
204 | - ["@lsp.typemod.variable.callable"] = { link = "@function" },
205 | - ["@lsp.typemod.variable.defaultLibrary"] = { link = "@variable.builtin" },
206 | - ["@lsp.typemod.variable.injected"] = { link = "@variable" },
207 | - ["@lsp.typemod.variable.static"] = { link = "@constant" },
208 | - ["@lsp.type.namespace.python"] = { link = "@variable" },
209 |
210 | ##### HTML
211 | - htmlArg = { fg = colors.pink },
212 | - htmlBold = { fg = colors.yellow, bold = true },
213 | - htmlEndTag = { fg = colors.cyan },
214 | - htmlH1 = { fg = colors.purple },
215 | - htmlH2 = { fg = colors.purple },
216 | - htmlH3 = { fg = colors.purple },
217 | - htmlH4 = { fg = colors.purple },
218 | - htmlH5 = { fg = colors.purple },
219 | - htmlH6 = { fg = colors.purple },
220 | - htmlItalic = { fg = colors.green, italic = true },
221 | - htmlLink = { fg = colors.green, underline = true },
222 | - htmlSpecialChar = { fg = colors.yellow },
223 | - htmlSpecialTagName = { fg = colors.cyan },
224 | - htmlTag = { fg = colors.cyan },
225 | - htmlTagN = { fg = colors.cyan },
226 | - htmlTagName = { fg = colors.cyan },
227 | - htmlTitle = { fg = colors.white },
228 | -
229 | ##### Markdown
230 | - markdownBlockquote = { fg = colors.yellow, italic = true },
231 | - markdownBold = { fg = colors.orange, bold = true },
232 | - markdownCode = { fg = colors.pink },
233 | - markdownCodeBlock = { fg = colors.orange },
234 | - markdownCodeDelimiter = { fg = colors.red },
235 | - markdownH1 = { fg = colors.purple, bold = true },
236 | - markdownH2 = { fg = colors.purple, bold = true },
237 | - markdownH3 = { fg = colors.purple, bold = true },
238 | - markdownH4 = { fg = colors.purple, bold = true },
239 | - markdownH5 = { fg = colors.purple, bold = true },
240 | - markdownH6 = { fg = colors.purple, bold = true },
241 | - markdownHeadingDelimiter = { fg = colors.red },
242 | - markdownHeadingRule = { fg = colors.comment },
243 | - markdownId = { fg = colors.green },
244 | - markdownIdDeclaration = { fg = colors.cyan },
245 | - markdownIdDelimiter = { fg = colors.green },
246 | - markdownItalic = { fg = colors.yellow, italic = true },
247 | - markdownLinkDelimiter = { fg = colors.green },
248 | - markdownLinkText = { fg = colors.purple },
249 | - markdownListMarker = { fg = colors.cyan },
250 | - markdownOrderedListMarker = { fg = colors.red },
251 | - markdownRule = { fg = colors.comment },
252 |
253 | ##### Diff
254 | - diffAdded = { fg = colors.pink },
255 | - diffRemoved = { fg = colors.red },
256 | - diffFileId = { fg = colors.yellow, bold = true, reverse = true },
257 | - diffFile = { fg = colors.nontext },
258 | - diffNewFile = { fg = colors.pink },
259 | - diffOldFile = { fg = colors.red },
--------------------------------------------------------------------------------
/assets/colors.css:
--------------------------------------------------------------------------------
1 | @define-color background #212338;
2 | @define-color currentline #323449;
3 | @define-color foreground #ebfafa;
4 | @define-color comment #7081d0;
5 | @define-color cyan #04d1f9;
6 | @define-color green #37f499;
7 | @define-color orange #f7c67f;
8 | @define-color pink #f265b5;
9 | @define-color purple #a48cf2;
10 | @define-color red #f16c75;
11 | @define-color yellow #f1fc79;
12 | @define-color g_dark #171928;
13 | @define-color bg_highlight #292e42;
14 | @define-color terminal_black #414868;
15 | @define-color fg_dark #ABB4DA;
16 | @define-color fg_gutter #3b4261;
17 | @define-color dark3 #6473B7;
18 | @define-color comment #7081d0;
19 | @define-color dark5 #5866A2;
20 | @define-color visual #76639e;
21 | @define-color dark_cyan #10A1BD;
22 | @define-color magenta2 #bf4f8e;
23 | @define-color magenta3 #722f55;
24 | @define-color dark_yellow #c0c95f;
25 | @define-color dark_green #33C57F;
26 | @define-color bright_red #f0313e;
27 |
--------------------------------------------------------------------------------
/assets/logo/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/logo/logo.png
--------------------------------------------------------------------------------
/assets/logo/logo.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/logo/logo.xcf
--------------------------------------------------------------------------------
/assets/misc/transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/misc/transparent.png
--------------------------------------------------------------------------------
/assets/palette/circles/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/background.png
--------------------------------------------------------------------------------
/assets/palette/circles/background.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/background.psd
--------------------------------------------------------------------------------
/assets/palette/circles/comment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/comment.png
--------------------------------------------------------------------------------
/assets/palette/circles/comment.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/comment.psd
--------------------------------------------------------------------------------
/assets/palette/circles/currentline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/currentline.png
--------------------------------------------------------------------------------
/assets/palette/circles/currentline.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/currentline.psd
--------------------------------------------------------------------------------
/assets/palette/circles/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/cyan.png
--------------------------------------------------------------------------------
/assets/palette/circles/cyan.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/cyan.psd
--------------------------------------------------------------------------------
/assets/palette/circles/foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/foreground.png
--------------------------------------------------------------------------------
/assets/palette/circles/foreground.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/foreground.psd
--------------------------------------------------------------------------------
/assets/palette/circles/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/green.png
--------------------------------------------------------------------------------
/assets/palette/circles/green.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/green.psd
--------------------------------------------------------------------------------
/assets/palette/circles/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/orange.png
--------------------------------------------------------------------------------
/assets/palette/circles/orange.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/orange.psd
--------------------------------------------------------------------------------
/assets/palette/circles/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/pink.png
--------------------------------------------------------------------------------
/assets/palette/circles/pink.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/pink.psd
--------------------------------------------------------------------------------
/assets/palette/circles/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/purple.png
--------------------------------------------------------------------------------
/assets/palette/circles/purple.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/purple.psd
--------------------------------------------------------------------------------
/assets/palette/circles/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/red.png
--------------------------------------------------------------------------------
/assets/palette/circles/red.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/red.psd
--------------------------------------------------------------------------------
/assets/palette/circles/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/yellow.png
--------------------------------------------------------------------------------
/assets/palette/circles/yellow.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/circles/yellow.psd
--------------------------------------------------------------------------------
/assets/palette/photoshop-swatches.aco:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/assets/palette/photoshop-swatches.aco
--------------------------------------------------------------------------------
/wallpaper/1280x720.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1280x720.png
--------------------------------------------------------------------------------
/wallpaper/1280x720.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1280x720.xcf
--------------------------------------------------------------------------------
/wallpaper/1440x3120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1440x3120.png
--------------------------------------------------------------------------------
/wallpaper/1440x3120.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1440x3120.xcf
--------------------------------------------------------------------------------
/wallpaper/1920x1080.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1920x1080.png
--------------------------------------------------------------------------------
/wallpaper/1920x1080.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1920x1080.xcf
--------------------------------------------------------------------------------
/wallpaper/1920x1200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1920x1200.png
--------------------------------------------------------------------------------
/wallpaper/1920x1200.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/1920x1200.xcf
--------------------------------------------------------------------------------
/wallpaper/2560x1440.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/2560x1440.png
--------------------------------------------------------------------------------
/wallpaper/2560x1440.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/2560x1440.xcf
--------------------------------------------------------------------------------
/wallpaper/2560x1600.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/2560x1600.png
--------------------------------------------------------------------------------
/wallpaper/2560x1600.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/2560x1600.xcf
--------------------------------------------------------------------------------
/wallpaper/3440x1440.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/3440x1440.png
--------------------------------------------------------------------------------
/wallpaper/3440x1440.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/3440x1440.xcf
--------------------------------------------------------------------------------
/wallpaper/3840x2160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/3840x2160.png
--------------------------------------------------------------------------------
/wallpaper/3840x2160.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eldritch-theme/eldritch/a7a41948c61c7f88f92ff2ee91967aa90feaf6f9/wallpaper/3840x2160.xcf
--------------------------------------------------------------------------------