[
  {
    "path": ".github/issue_template.md",
    "content": "## 🌱 New Theme?\n\nAs much as the team is responsible for the core theme and wants to support all available applications, we can only do some of it ourselves.\n\nThat's why the community is essential for this project to keep evolving. 🌱\n\nOur website has some guidelines, tips and specifications for those who want to apply the theme in any application.\n\n- [Contribute to Dracula](https://draculatheme.com/contribute)\n\n## 🌲 Existing Theme?\n\nFind the appropriate repository on the [Dracula organization](https://github.com/dracula).\n\nThis is just the umbrella place where we store all themes.\n\nAnd remember - consider fixing the issue yourself. That's the best way to contribute. 😉\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "## 🦄 New Theme?\n\nPlease submit an issue with a screenshot of the theme and a link to your repository.\n\nOnce the theme is accepted, we will move the repository under the Dracula organization and give you the rights to maintain it! 😁\n"
  },
  {
    "path": ".github/workflows/stale.yml",
    "content": "---\nname: \"Close stale Issues and PRs\"\non:\n  schedule:\n    - cron: \"30 1 * * *\"\n\npermissions:\n  issues: write\n  pull-requests: write\n\njobs:\n  stale:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/stale@v7\n        with:\n          start-date: \"2023-07-01T00:00:00Z\"\n          close-issue-message: \"This **Issue** has been automatically closed because it has had no new activity for a month.\"\n          close-pr-message: \"This **Pull-Request** has been automatically closed because it has had no new activity for a month.\"\n          stale-issue-message: \"This **Issue** has not been updated for a while and will be closed soon.\"\n          stale-pr-message: \"This **Pull-Request** has not been updated for a while and will be closed soon.\"\n          days-before-stale: 60\n          days-before-close: 10\n          exempt-all-milestones: true\n          exempt-issue-labels: security\n          exempt-pr-labels: security\n          stale-issue-label: stale\n          stale-pr-label: stale\n"
  },
  {
    "path": ".github/workflows/update-submodules.yml",
    "content": "---\nname: \"Update Submodules\"\non:\n  schedule:\n    - cron: \"0 0 1 * *\" # First day of every month at midnight UTC\n  workflow_dispatch: # Manual trigger option\n\npermissions:\n  contents: write\n\njobs:\n  update:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          submodules: false\n          token: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Initialize and update submodules\n        run: |\n          # Sync submodule URLs from .gitmodules\n          git submodule sync --recursive || true\n          # Try to initialize and update submodules normally\n          # If a submodule commit doesn't exist, we'll handle it below\n          git submodule update --init --recursive 2>&1 | tee /tmp/submodule-update.log || true\n          # For any submodules that failed due to missing commits, checkout default branch\n          if grep -q \"not our ref\\|did not contain\" /tmp/submodule-update.log; then\n            echo \"Some submodules failed, attempting to fix...\"\n            git submodule foreach --recursive '\n              if ! git rev-parse --verify HEAD >/dev/null 2>&1; then\n                echo \"Fixing $name...\"\n                git fetch origin || true\n                git checkout origin/HEAD 2>/dev/null || git checkout origin/main 2>/dev/null || git checkout origin/master 2>/dev/null || true\n              fi\n            ' || true\n          fi\n          # Update all submodules to latest remote versions\n          git submodule update --recursive --remote || true\n\n      - name: Check for changes\n        id: check-changes\n        run: |\n          if [ -n \"$(git status --porcelain)\" ]; then\n            echo \"has_changes=true\" >> $GITHUB_OUTPUT\n          else\n            echo \"has_changes=false\" >> $GITHUB_OUTPUT\n          fi\n\n      - name: Commit and push changes\n        if: steps.check-changes.outputs.has_changes == 'true'\n        run: |\n          git config user.name \"github-actions[bot]\"\n          git config user.email \"github-actions[bot]@users.noreply.github.com\"\n          git add -A\n          git commit -m \"chore: update submodules to latest versions\"\n          git push\n"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"ableton-live\"]\n\tpath = themes/ableton-live\n\turl = https://github.com/dracula/ableton-live.git\n[submodule \"adobe\"]\n\tpath = themes/adobe\n\turl = https://github.com/dracula/adobe.git\n[submodule \"alacritty\"]\n\tpath = themes/alacritty\n\turl = https://github.com/dracula/alacritty.git\n[submodule \"alfred\"]\n\tpath = themes/alfred\n\turl = https://github.com/dracula/alfred.git\n[submodule \"arduino-ide\"]\n\tpath = themes/arduino-ide\n\turl = https://github.com/dracula/arduino-ide.git\n[submodule \"aseprite\"]\n\tpath = themes/aseprite\n\turl = https://github.com/dracula/aseprite.git\n[submodule \"atom\"]\n\tpath = themes/atom\n\turl = https://github.com/dracula/atom.git\n[submodule \"b4x\"]\n\tpath = themes/b4x\n\turl = https://github.com/dracula/b4x.git\n[submodule \"base16\"]\n\tpath = themes/base16\n\turl = https://github.com/dracula/base16.git\n[submodule \"bbedit\"]\n\tpath = themes/bbedit\n\turl = https://github.com/dracula/bbedit.git\n[submodule \"blender\"]\n\tpath = themes/blender\n\turl = https://github.com/dracula/blender.git\n[submodule \"brackets\"]\n\tpath = themes/brackets\n\turl = https://github.com/dracula/brackets.git\n[submodule \"bspwm\"]\n\tpath = themes/bspwm\n\turl = https://github.com/dracula/bspwm.git\n[submodule \"chrome-devtools\"]\n\tpath = themes/chrome-devtools\n\turl = https://github.com/dracula/chrome-devtools.git\n[submodule \"cmder\"]\n\tpath = themes/cmder\n\turl = https://github.com/dracula/cmder.git\n[submodule \"coda\"]\n\tpath = themes/coda\n\turl = https://github.com/dracula/coda.git\n[submodule \"conemu\"]\n\tpath = themes/conemu\n\turl = https://github.com/dracula/conemu.git\n[submodule \"coteditor\"]\n\tpath = themes/coteditor\n\turl = https://github.com/dracula/coteditor.git\n[submodule \"couscous\"]\n\tpath = themes/couscous\n\turl = https://github.com/dracula/couscous.git\n[submodule \"discourse\"]\n\tpath = themes/discourse\n\turl = https://github.com/dracula/discourse.git\n[submodule \"doom-emacs\"]\n\tpath = themes/doom-emacs\n\turl = https://github.com/dracula/doom-emacs.git\n[submodule \"duckduckgo\"]\n\tpath = themes/duckduckgo\n\turl = https://github.com/dracula/duckduckgo.git\n[submodule \"eclipse\"]\n\tpath = themes/eclipse\n\turl = https://github.com/dracula/eclipse.git\n[submodule \"editplus\"]\n\tpath = themes/editplus\n\turl = https://github.com/dracula/editplus.git\n[submodule \"emacs\"]\n\tpath = themes/emacs\n\turl = https://github.com/dracula/emacs.git\n[submodule \"fb-messenger\"]\n\tpath = themes/fb-messenger\n\turl = https://github.com/dracula/fb-messenger.git\n[submodule \"figma\"]\n\tpath = themes/figma\n\turl = https://github.com/dracula/figma.git\n[submodule \"fish\"]\n\tpath = themes/fish\n\turl = https://github.com/dracula/fish.git\n[submodule \"gamemaker-studio\"]\n\tpath = themes/gamemaker-studio\n\turl = https://github.com/dracula/gamemaker-studio.git\n[submodule \"geany\"]\n\tpath = themes/geany\n\turl = https://github.com/dracula/geany.git\n[submodule \"gedit\"]\n\tpath = themes/gedit\n\turl = https://github.com/dracula/gedit.git\n[submodule \"gh-pages\"]\n\tpath = themes/gh-pages\n\turl = https://github.com/dracula/gh-pages.git\n[submodule \"gitk\"]\n\tpath = themes/gitk\n\turl = https://github.com/dracula/gitk.git\n[submodule \"gmk\"]\n\tpath = themes/gmk\n\turl = https://github.com/dracula/gmk.git\n[submodule \"gnome-terminal\"]\n\tpath = themes/gnome-terminal\n\turl = https://github.com/dracula/gnome-terminal.git\n[submodule \"godot\"]\n\tpath = themes/godot\n\turl = https://github.com/dracula/godot.git\n[submodule \"gtk\"]\n\tpath = themes/gtk\n\turl = https://github.com/dracula/gtk.git\n[submodule \"highlightjs\"]\n\tpath = themes/highlightjs\n\turl = https://github.com/dracula/highlightjs.git\n[submodule \"hyper\"]\n\tpath = themes/hyper\n\turl = https://github.com/dracula/hyper.git\n[submodule \"i3\"]\n\tpath = themes/i3\n\turl = https://github.com/dracula/i3.git\n[submodule \"insomnia\"]\n\tpath = themes/insomnia\n\turl = https://github.com/dracula/insomnia.git\n[submodule \"iterm\"]\n\tpath = themes/iterm\n\turl = https://github.com/dracula/iterm.git\n[submodule \"javadoc\"]\n\tpath = themes/javadoc\n\turl = https://github.com/dracula/javadoc.git\n[submodule \"jetbrains\"]\n\tpath = themes/jetbrains\n\turl = https://github.com/dracula/jetbrains.git\n[submodule \"jgrasp\"]\n\tpath = themes/jgrasp\n\turl = https://github.com/dracula/jgrasp.git\n[submodule \"kakoune\"]\n\tpath = themes/kakoune\n\turl = https://github.com/dracula/kakoune.git\n[submodule \"kate\"]\n\tpath = themes/kate\n\turl = https://github.com/dracula/kate.git\n[submodule \"kitty\"]\n\tpath = themes/kitty\n\turl = https://github.com/dracula/kitty.git\n[submodule \"konsole\"]\n\tpath = themes/konsole\n\turl = https://github.com/dracula/konsole.git\n[submodule \"light-table\"]\n\tpath = themes/light-table\n\turl = https://github.com/dracula/light-table.git\n[submodule \"lightpaper\"]\n\tpath = themes/lightpaper\n\turl = https://github.com/dracula/lightpaper.git\n[submodule \"limechat\"]\n\tpath = themes/limechat\n\turl = https://github.com/dracula/limechat.git\n[submodule \"macdown\"]\n\tpath = themes/macdown\n\turl = https://github.com/dracula/macdown.git\n[submodule \"mailspring\"]\n\tpath = themes/mailspring\n\turl = https://github.com/dracula/mailspring.git\n[submodule \"marp\"]\n\tpath = themes/marp\n\turl = https://github.com/dracula/marp.git\n[submodule \"matlab\"]\n\tpath = themes/matlab\n\turl = https://github.com/dracula/matlab.git\n[submodule \"mattermost\"]\n\tpath = themes/mattermost\n\turl = https://github.com/dracula/mattermost.git\n[submodule \"mindnode\"]\n\tpath = themes/mindnode\n\turl = https://github.com/dracula/mindnode.git\n[submodule \"mintty\"]\n\tpath = themes/mintty\n\turl = https://github.com/dracula/mintty.git\n[submodule \"mobaxterm\"]\n\tpath = themes/mobaxterm\n\turl = https://github.com/dracula/mobaxterm.git\n[submodule \"monodevelop\"]\n\tpath = themes/monodevelop\n\turl = https://github.com/dracula/monodevelop.git\n[submodule \"musicbee\"]\n\tpath = themes/musicbee\n\turl = https://github.com/dracula/musicbee.git\n[submodule \"mutt\"]\n\tpath = themes/mutt\n\turl = https://github.com/dracula/mutt.git\n[submodule \"notepad-plus-plus\"]\n\tpath = themes/notepad-plus-plus\n\turl = https://github.com/dracula/notepad-plus-plus.git\n[submodule \"nylas-n1\"]\n\tpath = themes/nylas-n1\n\turl = https://github.com/dracula/nylas-n1.git\n[submodule \"powershell\"]\n\tpath = themes/powershell\n\turl = https://github.com/dracula/powershell.git\n[submodule \"prism\"]\n\tpath = themes/prism\n\turl = https://github.com/dracula/prism.git\n[submodule \"pygments\"]\n\tpath = themes/pygments\n\turl = https://github.com/dracula/pygments.git\n[submodule \"pythonista\"]\n\tpath = themes/pythonista\n\turl = https://github.com/dracula/pythonista.git\n[submodule \"qtcreator\"]\n\tpath = themes/qtcreator\n\turl = https://github.com/dracula/qtcreator.git\n[submodule \"quassel\"]\n\tpath = themes/quassel\n\turl = https://github.com/dracula/quassel.git\n[submodule \"quiver\"]\n\tpath = themes/quiver\n\turl = https://github.com/dracula/quiver.git\n[submodule \"sketch\"]\n\tpath = themes/sketch\n\turl = https://github.com/dracula/sketch.git\n[submodule \"sequel-pro\"]\n\tpath = themes/sequel-pro\n\turl = https://github.com/dracula/sequel-pro.git\n[submodule \"slack\"]\n\tpath = themes/slack\n\turl = https://github.com/dracula/slack.git\n[submodule \"spacemacs\"]\n\tpath = themes/spacemacs\n\turl = https://github.com/dracula/spacemacs.git\n[submodule \"steam\"]\n\tpath = themes/steam\n\turl = https://github.com/dracula/steam.git\n[submodule \"sublime\"]\n\tpath = themes/sublime\n\turl = https://github.com/dracula/sublime.git\n[submodule \"tabletop-simulator\"]\n\tpath = themes/tabletop-simulator\n\turl = https://github.com/dracula/tabletop-simulator.git\n[submodule \"telegram\"]\n\tpath = themes/telegram\n\turl = https://github.com/dracula/telegram.git\n[submodule \"telegram-android\"]\n\tpath = themes/telegram-android\n\turl = https://github.com/dracula/telegram-android.git\n[submodule \"terminal-app\"]\n\tpath = themes/terminal-app\n\turl = https://github.com/dracula/terminal.app\n[submodule \"termite\"]\n\tpath = themes/termite\n\turl = https://github.com/dracula/termite.git\n[submodule \"termux\"]\n\tpath = themes/termux\n\turl = https://github.com/dracula/termux.git\n[submodule \"textmate\"]\n\tpath = themes/textmate\n\turl = https://github.com/dracula/textmate.git\n[submodule \"textual\"]\n\tpath = themes/textual\n\turl = https://github.com/dracula/textual.git\n[submodule \"thonny\"]\n\tpath = themes/thonny\n\turl = https://github.com/dracula/thonny.git\n[submodule \"tilix\"]\n\tpath = themes/tilix\n\turl = https://github.com/dracula/tilix.git\n[submodule \"tmux\"]\n\tpath = themes/tmux\n\turl = https://github.com/dracula/tmux.git\n[submodule \"total-commander\"]\n\tpath = themes/total-commander\n\turl = https://github.com/dracula/total-commander.git\n[submodule \"tower\"]\n\tpath = themes/tower\n\turl = https://github.com/dracula/tower.git\n[submodule \"typora\"]\n\tpath = themes/typora\n\turl = https://github.com/dracula/typora.git\n[submodule \"ulysses\"]\n\tpath = themes/ulysses\n\turl = https://github.com/dracula/ulysses.git\n[submodule \"vim\"]\n\tpath = themes/vim\n\turl = https://github.com/dracula/vim.git\n[submodule \"vimium\"]\n\tpath = themes/vimium\n\turl = https://github.com/dracula/vimium.git\n[submodule \"visual-studio\"]\n\tpath = themes/visual-studio\n\turl = https://github.com/dracula/visual-studio.git\n[submodule \"visual-studio-code\"]\n\tpath = themes/visual-studio-code\n\turl = https://github.com/dracula/visual-studio-code.git\n[submodule \"vivaldi\"]\n\tpath = themes/vivaldi\n\turl = https://github.com/dracula/vivaldi.git\n[submodule \"windows-terminal\"]\n\tpath = themes/windows-terminal\n\turl = https://github.com/dracula/windows-terminal.git\n[submodule \"wing\"]\n\tpath = themes/wing\n\turl = https://github.com/dracula/wing.git\n[submodule \"wordpress\"]\n\tpath = themes/wordpress\n\turl = https://github.com/dracula/wordpress.git\n[submodule \"wox\"]\n\tpath = themes/wox\n\turl = https://github.com/dracula/wox.git\n[submodule \"xchat\"]\n\tpath = themes/xchat\n\turl = https://github.com/dracula/xchat.git\n[submodule \"xcode\"]\n\tpath = themes/xcode\n\turl = https://github.com/dracula/xcode.git\n[submodule \"xresources\"]\n\tpath = themes/xresources\n\turl = https://github.com/dracula/xresources.git\n[submodule \"zsh\"]\n\tpath = themes/zsh\n\turl = https://github.com/dracula/zsh.git\n[submodule \"pywal\"]\n\tpath = themes/pywal\n\turl = https://github.com/dracula/pywal.git\n[submodule \"idle\"]\n\tpath = themes/idle\n\turl = https://github.com/dracula/idle.git\n[submodule \"zathura\"]\n\tpath = themes/zathura\n\turl = https://github.com/dracula/zathura.git\n[submodule \"tiddlywiki\"]\n\tpath = themes/tiddlywiki\n\turl = https://github.com/dracula/tiddlywiki.git\n[submodule \"plank\"]\n\tpath = themes/plank\n\turl = https://github.com/dracula/plank.git\n[submodule \"betterdiscord\"]\n\tpath = themes/betterdiscord\n\turl = https://github.com/dracula/betterdiscord.git\n[submodule \"thelounge\"]\n\tpath = themes/thelounge\n\turl = https://github.com/dracula/thelounge.git\n[submodule \"colorls\"]\n\tpath = themes/colorls\n\turl = https://github.com/dracula/colorls.git\n[submodule \"roam-research\"]\n\tpath = themes/roam-research\n\turl = https://github.com/dracula/roam-research.git\n[submodule \"obsidian\"]\n\tpath = themes/obsidian\n\turl = https://github.com/dracula/obsidian.git\n[submodule \"adminer\"]\n\tpath = themes/adminer\n\turl = https://github.com/dracula/adminer.git\n[submodule \"micro\"]\n\tpath = themes/micro\n\turl = https://github.com/dracula/micro.git\n[submodule \"renoise\"]\n\tpath = themes/renoise\n\turl = https://github.com/dracula/renoise.git\n[submodule \"fman\"]\n\tpath = themes/fman\n\turl = https://github.com/dracula/fman.git\n[submodule \"copyq\"]\n\tpath = themes/copyq\n\turl = https://github.com/dracula/copyq.git\n[submodule \"cryptowatch\"]\n\tpath = themes/cryptowatch\n\turl = https://github.com/dracula/cryptowatch.git\n[submodule \"midnight-commander\"]\n\tpath = themes/midnight-commander\n\turl = https://github.com/dracula/midnight-commander.git\n[submodule \"keypirinha\"]\n\tpath = themes/keypirinha\n\turl = https://github.com/dracula/keypirinha.git\n[submodule \"mousepad\"]\n\tpath = themes/mousepad\n\turl = https://github.com/dracula/mousepad.git\n[submodule \"linear\"]\n\tpath = themes/linear\n\turl = https://github.com/dracula/linear.git\n[submodule \"albert\"]\n\tpath = themes/albert\n\turl = https://github.com/dracula/albert.git\n[submodule \"arduino-pro-ide\"]\n\tpath = themes/arduino-pro-ide\n\turl = https://github.com/dracula/arduino-pro-ide.git\n[submodule \"kicad\"]\n\tpath = themes/kicad\n\turl = https://github.com/dracula/kicad.git\n[submodule \"standard-notes\"]\n\tpath = themes/standard-notes\n\turl = https://github.com/dracula/standard-notes.git\n[submodule \"thunderbird\"]\n\tpath = themes/thunderbird\n\turl = https://github.com/dracula/thunderbird.git\n[submodule \"liteide\"]\n\tpath = themes/liteide\n\turl = https://github.com/dracula/liteide.git\n[submodule \"bashtop\"]\n\tpath = themes/bashtop\n\turl = https://github.com/dracula/bashtop.git\n[submodule \"logseq\"]\n\tpath = themes/logseq\n\turl = https://github.com/dracula/logseq.git\n[submodule \"qt5\"]\n\tpath = themes/qt5\n\turl = https://github.com/dracula/qt5.git\n[submodule \"terminator\"]\n\tpath = themes/terminator\n\turl = https://github.com/dracula/terminator.git\n[submodule \"telegram-ios\"]\n\tpath = themes/telegram-ios\n\turl = https://github.com/dracula/telegram-ios.git\n[submodule \"ida\"]\n\tpath = themes/ida\n\turl = https://github.com/dracula/ida.git\n[submodule \"netbeans\"]\n\tpath = themes/netbeans\n\turl = https://github.com/dracula/netbeans.git\n[submodule \"xournalpp\"]\n\tpath = themes/xournalpp\n\turl = https://github.com/dracula/xournalpp.git\n[submodule \"ditto\"]\n\tpath = themes/ditto\n\turl = https://github.com/dracula/ditto.git\n[submodule \"matplotlib\"]\n\tpath = themes/matplotlib\n\turl = https://github.com/dracula/matplotlib.git\n[submodule \"nova\"]\n\tpath = themes/nova\n\turl = https://github.com/dracula/nova.git\n[submodule \"tty\"]\n\tpath = themes/tty\n\turl = https://github.com/dracula/tty.git\n[submodule \"libreoffice\"]\n\tpath = themes/libreoffice\n\turl = https://github.com/dracula/libreoffice.git\n[submodule \"vivado\"]\n\tpath = themes/vivado\n\turl = https://github.com/dracula/vivado.git\n[submodule \"everythingtoolbar\"]\n\tpath = themes/everythingtoolbar\n\turl = https://github.com/dracula/everythingtoolbar.git\n[submodule \"xfce4-terminal\"]\n\tpath = themes/xfce4-terminal\n\turl = https://github.com/dracula/xfce4-terminal.git\n[submodule \"spotify-tui\"]\n\tpath = themes/spotify-tui\n\turl = https://github.com/dracula/spotify-tui.git\n[submodule \"inkscape\"]\n\tpath = themes/inkscape\n\turl = https://github.com/dracula/inkscape.git\n[submodule \"dunst\"]\n\tpath = themes/dunst\n\turl = https://github.com/dracula/dunst.git\n[submodule \"ncspot\"]\n\tpath = themes/ncspot\n\turl = https://github.com/dracula/ncspot.git\n[submodule \"themes/ltspice\"]\n\tpath = themes/ltspice\n\turl = https://github.com/dracula/ltspice.git\n[submodule \"themes/bemenu\"]\n\tpath = themes/bemenu\n\turl = https://github.com/dracula/bemenu.git\n[submodule \"themes/abricotine\"]\n\tpath = themes/abricotine\n\turl = https://github.com/dracula/abricotine.git\n[submodule \"themes/latex\"]\n\tpath = themes/latex\n\turl = https://github.com/dracula/latex.git\n[submodule \"themes/unigram\"]\n\tpath = themes/unigram\n\turl = https://github.com/dracula/unigram.git\n[submodule \"themes/grub\"]\n\tpath = themes/grub\n\turl = https://github.com/dracula/grub.git\n[submodule \"themes/pandoc\"]\n\tpath = themes/pandoc\n\turl = https://github.com/dracula/pandoc.git\n[submodule \"themes/abap\"]\n\tpath = themes/abap\n\turl = https://github.com/dracula/abap.git\n[submodule \"themes/sumatra-pdf\"]\n\tpath = themes/sumatra-pdf\n\turl = https://github.com/dracula/sumatra-pdf.git\n[submodule \"themes/visual-spigot\"]\n\tpath = themes/visual-spigot\n\turl = https://github.com/dracula/visual-spigot.git\n[submodule \"themes/freecad\"]\n\tpath = themes/freecad\n\turl = https://github.com/dracula/freecad.git\n[submodule \"themes/ghostwriter\"]\n\tpath = themes/ghostwriter\n\turl = https://github.com/dracula/ghostwriter.git\n[submodule \"themes/beamer\"]\n\tpath = themes/beamer\n\turl = https://github.com/dracula/beamer.git\n[submodule \"themes/kdiff3\"]\n\tpath = themes/kdiff3\n\turl = https://github.com/dracula/kdiff3.git\n[submodule \"themes/tailwind\"]\n\tpath = themes/tailwind\n\turl = https://github.com/dracula/tailwind.git\n[submodule \"themes/metaeditor\"]\n\tpath = themes/metaeditor\n\turl = https://github.com/dracula/metaeditor.git\n[submodule \"themes/files\"]\n\tpath = themes/files\n\turl = https://github.com/dracula/files.git\n[submodule \"themes/discordbotmaker\"]\n\tpath = themes/discordbotmaker\n\turl = https://github.com/dracula/discordbotmaker.git\n[submodule \"themes/qbittorrent\"]\n\tpath = themes/qbittorrent\n\turl = https://github.com/dracula/qbittorrent.git\n[submodule \"themes/streamlit\"]\n\tpath = themes/streamlit\n\turl = https://github.com/dracula/streamlit.git\n[submodule \"themes/imageglass\"]\n\tpath = themes/imageglass\n\turl = https://github.com/dracula/imageglass.git\n[submodule \"themes/mako\"]\n\tpath = themes/mako\n\turl = https://github.com/dracula/mako.git\n[submodule \"themes/fzf\"]\n\tpath = themes/fzf\n\turl = https://github.com/dracula/fzf.git\n[submodule \"themes/swiftui\"]\n\tpath = themes/swiftui\n\turl = https://github.com/dracula/swiftui.git\n[submodule \"themes/solidworks\"]\n\tpath = themes/solidworks\n\turl = https://github.com/dracula/solidworks.git\n[submodule \"themes/zsh-syntax-highlighting\"]\n\tpath = themes/zsh-syntax-highlighting\n\turl = https://github.com/dracula/zsh-syntax-highlighting.git\n[submodule \"themes/flarum\"]\n\tpath = themes/flarum\n\turl = https://github.com/dracula/flarum.git\n[submodule \"themes/beyond-compare-4\"]\n\tpath = themes/beyond-compare-4\n\turl = https://github.com/dracula/beyond-compare-4.git\n[submodule \"themes/texstudio\"]\n\tpath = themes/texstudio\n\turl = https://github.com/dracula/texstudio.git\n[submodule \"themes/dwarf-fortress\"]\n\tpath = themes/dwarf-fortress\n\turl = https://github.com/dracula/dwarf-fortress.git\n[submodule \"themes/lxterminal\"]\n\tpath = themes/lxterminal\n\turl = https://github.com/dracula/lxterminal.git\n[submodule \"themes/ripcord\"]\n\tpath = themes/ripcord\n\turl = https://github.com/dracula/ripcord.git\n[submodule \"themes/nyxt\"]\n\tpath = themes/nyxt\n\turl = https://github.com/dracula/nyxt.git\n[submodule \"themes/node-console\"]\n\tpath = themes/node-console\n\turl = https://github.com/dracula/node-console.git\n[submodule \"themes/krita\"]\n\tpath = themes/krita\n\turl = https://github.com/dracula/krita.git\n[submodule \"themes/funkwhale\"]\n\tpath = themes/funkwhale\n\turl = https://github.com/dracula/funkwhale.git\n[submodule \"themes/sidenotes\"]\n\tpath = themes/sidenotes\n\turl = https://github.com/dracula/sidenotes.git\n[submodule \"themes/ueli\"]\n\tpath = themes/ueli\n\turl = https://github.com/dracula/ueli.git\n[submodule \"themes/btcpay-server\"]\n\tpath = themes/btcpay-server\n\turl = https://github.com/dracula/btcpay-server.git\n[submodule \"themes/caprine-messenger\"]\n\tpath = themes/caprine-messenger\n\turl = https://github.com/dracula/caprine-messenger.git\n[submodule \"themes/em-client\"]\n\tpath = themes/em-client\n\turl = https://github.com/dracula/em-client.git\n[submodule \"themes/fig\"]\n\tpath = themes/fig\n\turl = https://github.com/dracula/fig.git\n[submodule \"themes/amfora\"]\n\tpath = themes/amfora\n\turl = https://github.com/dracula/amfora.git\n[submodule \"themes/passky\"]\n\tpath = themes/passky\n\turl = https://github.com/dracula/passky.git\n[submodule \"themes/rstudio\"]\n\tpath = themes/rstudio\n\turl = https://github.com/dracula/rstudio.git\n[submodule \"themes/pantheon-terminal\"]\n\tpath = themes/pantheon-terminal\n\turl = https://github.com/dracula/pantheon-terminal.git\n[submodule \"themes/rofi\"]\n\tpath = themes/rofi\n\turl = https://github.com/dracula/rofi.git\n[submodule \"themes/tym\"]\n\tpath = themes/tym\n\turl = https://github.com/dracula/tym.git\n[submodule \"themes/gamepad-viewer\"]\n\tpath = themes/gamepad-viewer\n\turl = https://github.com/dracula/gamepad-viewer.git\n[submodule \"themes/mixplorer\"]\n\tpath = themes/mixplorer\n\turl = https://github.com/dracula/mixplorer.git\n[submodule \"themes/dev-cpp\"]\n\tpath = themes/dev-cpp\n\turl = https://github.com/dracula/dev-cpp.git\n[submodule \"themes/revolt\"]\n\tpath = themes/revolt\n\turl = https://github.com/dracula/revolt.git\n[submodule \"themes/ranger\"]\n\tpath = themes/ranger\n\turl = https://github.com/dracula/ranger.git\n[submodule \"themes/texshop\"]\n\tpath = themes/texshop\n\turl = https://github.com/dracula/texshop.git\n[submodule \"themes/aliucord\"]\n\tpath = themes/aliucord\n\turl = https://github.com/dracula/aliucord.git\n[submodule \"themes/metatrader5\"]\n\tpath = themes/metatrader5\n\turl = https://github.com/dracula/metatrader5.git\n[submodule \"themes/sequel-ace\"]\n\tpath = themes/sequel-ace\n\turl = https://github.com/dracula/sequel-ace.git\n[submodule \"themes/nova-launcher\"]\n\tpath = themes/nova-launcher\n\turl = https://github.com/dracula/nova-launcher.git\n[submodule \"themes/textastic\"]\n\tpath = themes/textastic\n\turl = https://github.com/dracula/textastic.git\n[submodule \"themes/revolution-irc\"]\n\tpath = themes/revolution-irc\n\turl = https://github.com/dracula/revolution-irc.git\n[submodule \"themes/powerlevel10k\"]\n\tpath = themes/powerlevel10k\n\turl = https://github.com/dracula/powerlevel10k.git\n[submodule \"themes/unreal-engine\"]\n\tpath = themes/unreal-engine\n\turl = https://github.com/dracula/unreal-engine.git\n[submodule \"themes/ggplot2\"]\n\tpath = themes/ggplot2\n\turl = https://github.com/dracula/ggplot2.git\n[submodule \"themes/windterm\"]\n\tpath = themes/windterm\n\turl = https://github.com/dracula/windterm.git\n[submodule \"themes/musikcube\"]\n\tpath = themes/musikcube\n\turl = https://github.com/dracula/musikcube.git\n[submodule \"themes/florisboard\"]\n\tpath = themes/florisboard\n\turl = https://github.com/dracula/florisboard.git\n[submodule \"themes/delphi\"]\n\tpath = themes/delphi\n\turl = https://github.com/dracula/delphi.git\n[submodule \"themes/gitkraken\"]\n\tpath = themes/gitkraken\n\turl = https://github.com/dracula/gitkraken.git\n[submodule \"themes/apollo\"]\n\tpath = themes/apollo\n\turl = https://github.com/dracula/apollo.git\n[submodule \"themes/mysql-workbench\"]\n\tpath = themes/mysql-workbench\n\turl = https://github.com/dracula/mysql-workbench.git\n[submodule \"themes/bear\"]\n\tpath = themes/bear\n\turl = https://github.com/dracula/bear.git\n[submodule \"themes/chrome\"]\n\tpath = themes/chrome\n\turl = https://github.com/dracula/chrome.git\n[submodule \"themes/firefox\"]\n\tpath = themes/firefox\n\turl = https://github.com/dracula/firefox.git\n[submodule \"themes/fluent-terminal\"]\n\tpath = themes/fluent-terminal\n\turl = https://github.com/dracula/fluent-terminal.git\n[submodule \"themes/jupyterlab\"]\n\tpath = themes/jupyterlab\n\turl = https://github.com/dracula/jupyterlab.git\n[submodule \"themes/oracle-sql-developer\"]\n\tpath = themes/oracle-sql-developer\n\turl = https://github.com/dracula/oracle-sql-developer.git\n[submodule \"themes/qutebrowser\"]\n\tpath = themes/qutebrowser\n\turl = https://github.com/dracula/qutebrowser.git\n[submodule \"themes/ulauncher\"]\n\tpath = themes/ulauncher\n\turl = https://github.com/dracula/ulauncher.git\n[submodule \"themes/wallpaper\"]\n\tpath = themes/wallpaper\n\turl = https://github.com/dracula/wallpaper.git\n[submodule \"themes/wofi\"]\n\tpath = themes/wofi\n\turl = https://github.com/dracula/wofi.git\n[submodule \"themes/wolfram-notebooks\"]\n\tpath = themes/wolfram-notebooks\n\turl = https://github.com/dracula/wolfram-notebooks.git\n[submodule \"themes/bobthefish\"]\n\tpath = themes/bobthefish\n\turl = https://github.com/dracula/bobthefish.git\n[submodule \"themes/warp\"]\n\tpath = themes/warp\n\turl = https://github.com/dracula/warp.git\n[submodule \"themes/gajim\"]\n\tpath = themes/gajim\n\turl = https://github.com/dracula/gajim.git\n[submodule \"themes/github\"]\n\tpath = themes/github\n\turl = https://github.com/dracula/github.git\n[submodule \"themes/foot\"]\n\tpath = themes/foot\n\turl = https://github.com/dracula/foot.git\n[submodule \"themes/spyder-ide\"]\n\tpath = themes/spyder-ide\n\turl = https://github.com/dracula/spyder-ide.git\n[submodule \"themes/monkeytype\"]\n\tpath = themes/monkeytype\n\turl = https://github.com/dracula/monkeytype.git\n[submodule \"themes/joplin\"]\n\tpath = themes/joplin\n\turl = https://github.com/dracula/joplin.git\n[submodule \"themes/codeblocks\"]\n\tpath = themes/codeblocks\n\turl = https://github.com/dracula/codeblocks.git\n[submodule \"themes/starship\"]\n\tpath = themes/starship\n\turl = https://github.com/dracula/starship.git\n[submodule \"themes/serenityos\"]\n\tpath = themes/serenityos\n\turl = https://github.com/dracula/serenityos.git\n[submodule \"themes/gitlab\"]\n\tpath = themes/gitlab\n\turl = https://github.com/dracula/gitlab.git\n[submodule \"themes/tig\"]\n\tpath = themes/tig\n\turl = https://github.com/dracula/tig.git\n[submodule \"themes/openbox\"]\n\tpath = themes/openbox\n\turl = https://github.com/dracula/openbox.git\n[submodule \"themes/wezterm\"]\n\tpath = themes/wezterm\n\turl = https://github.com/dracula/wezterm.git\n[submodule \"themes/postbox\"]\n\tpath = themes/postbox\n\turl = https://github.com/dracula/postbox.git\n[submodule \"themes/coderunner\"]\n\tpath = themes/coderunner\n\turl = https://github.com/dracula/coderunner.git\n[submodule \"themes/cider\"]\n\tpath = themes/cider\n\turl = https://github.com/dracula/cider.git\n[submodule \"themes/git\"]\n\tpath = themes/git\n\turl = https://github.com/dracula/git.git\n[submodule \"themes/jdownloader2\"]\n\tpath = themes/jdownloader2\n\turl = https://github.com/dracula/jdownloader2.git\n[submodule \"themes/stackoverflow\"]\n\tpath = themes/stackoverflow\n\turl = https://github.com/dracula/stackoverflow.git\n[submodule \"themes/flowlab\"]\n\tpath = themes/flowlab\n\turl = https://github.com/dracula/flowlab.git\n[submodule \"themes/archive-of-our-own\"]\n\tpath = themes/archive-of-our-own\n\turl = https://github.com/dracula/archive-of-our-own.git\n[submodule \"themes/zellij\"]\n\tpath = themes/zellij\n\turl = https://github.com/dracula/zellij.git\n[submodule \"themes/visual-basic-6\"]\n\tpath = themes/visual-basic-6\n\turl = https://github.com/dracula/visual-basic-6.git\n[submodule \"themes/noir\"]\n\tpath = themes/noir\n\turl = https://github.com/dracula/noir.git\n[submodule \"themes/oh-my-posh\"]\n\tpath = themes/oh-my-posh\n\turl = https://github.com/dracula/oh-my-posh.git\n[submodule \"themes/dircolors\"]\n\tpath = themes/dircolors\n\turl = https://github.com/dracula/dircolors.git\n[submodule \"themes/itfy\"]\n\tpath = themes/itfy\n\turl = https://github.com/dracula/itfy.git\n[submodule \"themes/vortex-mod-manager\"]\n\tpath = themes/vortex-mod-manager\n\turl = https://github.com/dracula/vortex-mod-manager.git\n[submodule \"themes/clone-hero\"]\n\tpath = themes/clone-hero\n\turl = https://github.com/dracula/clone-hero.git\n[submodule \"themes/ngenuity\"]\n\tpath = themes/ngenuity\n\turl = https://github.com/dracula/ngenuity.git\n[submodule \"themes/codepen\"]\n\tpath = themes/codepen\n\turl = https://github.com/dracula/codepen.git\n[submodule \"themes/macos-color-picker\"]\n\tpath = themes/macos-color-picker\n\turl = https://github.com/dracula/macos-color-picker.git\n[submodule \"themes/psychopy\"]\n\tpath = themes/psychopy\n\turl = https://github.com/dracula/psychopy.git\n[submodule \"themes/gimp\"]\n\tpath = themes/gimp\n\turl = https://github.com/dracula/gimp.git\n[submodule \"themes/drafts\"]\n\tpath = themes/drafts\n\turl = https://github.com/dracula/drafts.git\n[submodule \"themes/tint2\"]\n\tpath = themes/tint2\n\turl = https://github.com/dracula/tint2.git\n[submodule \"themes/snippetslab\"]\n\tpath = themes/snippetslab\n\turl = https://github.com/dracula/snippetslab.git\n[submodule \"themes/homer\"]\n\tpath = themes/homer\n\turl = https://github.com/dracula/homer.git\n[submodule \"themes/sandpack\"]\n\tpath = themes/sandpack\n\turl = https://github.com/dracula/sandpack.git\n[submodule \"themes/nextcloud\"]\n\tpath = themes/nextcloud\n\turl = https://github.com/dracula/nextcloud.git\n[submodule \"themes/hacker-news\"]\n\tpath = themes/hacker-news\n\turl = https://github.com/dracula/hacker-news.git\n[submodule \"themes/youtube\"]\n\tpath = themes/youtube\n\turl = https://github.com/dracula/youtube.git\n[submodule \"themes/blink-shell\"]\n\tpath = themes/blink-shell\n\turl = https://github.com/dracula/blink-shell.git\n[submodule \"themes/auto-ao3-app\"]\n\tpath = themes/auto-ao3-app\n\turl = https://github.com/dracula/auto-ao3-app.git\n[submodule \"themes/youtube-music-desktop\"]\n\tpath = themes/youtube-music-desktop\n\turl = https://github.com/dracula/youtube-music-desktop.git\n[submodule \"themes/polymc\"]\n\tpath = themes/polymc\n\turl = https://github.com/dracula/polymc.git\n[submodule \"themes/yunohost\"]\n\tpath = themes/yunohost\n\turl = https://github.com/dracula/yunohost.git\n[submodule \"themes/atom-ui\"]\n\tpath = themes/atom-ui\n\turl = https://github.com/dracula/atom-ui.git\n[submodule \"themes/sioyek\"]\n\tpath = themes/sioyek\n\turl = https://github.com/dracula/sioyek.git\n[submodule \"themes/cava\"]\n\tpath = themes/cava\n\turl = https://github.com/dracula/cava.git\n[submodule \"themes/minecraft\"]\n\tpath = themes/minecraft\n\turl = https://github.com/dracula/minecraft.git\n[submodule \"themes/wp\"]\n\tpath = themes/wp\n\turl = https://github.com/dracula/wp.git\n[submodule \"themes/vital\"]\n\tpath = themes/vital\n\turl = https://github.com/dracula/vital.git\n[submodule \"themes/i3lock-color\"]\n\tpath = themes/i3lock-color\n\turl = https://github.com/dracula/i3lock-color.git\n[submodule \"themes/color-slurp\"]\n\tpath = themes/color-slurp\n\turl = https://github.com/dracula/color-slurp.git\n[submodule \"themes/kanbanflow\"]\n\tpath = themes/kanbanflow\n\turl = https://github.com/dracula/kanbanflow.git\n[submodule \"themes/scrivener\"]\n\tpath = themes/scrivener\n\turl = https://github.com/dracula/scrivener.git\n[submodule \"themes/leftwm\"]\n\tpath = themes/leftwm\n\turl = https://github.com/dracula/leftwm.git\n[submodule \"themes/dmenu\"]\n\tpath = themes/dmenu\n\turl = https://github.com/dracula/dmenu.git\n[submodule \"themes/dwm\"]\n\tpath = themes/dwm\n\turl = https://github.com/dracula/dwm.git\n[submodule \"themes/dyalog\"]\n\tpath = themes/dyalog\n\turl = https://github.com/dracula/dyalog.git\n[submodule \"themes/spicetify\"]\n\tpath = themes/spicetify\n\turl = https://github.com/dracula/spicetify.git\n[submodule \"themes/novel-writer\"]\n\tpath = themes/novel-writer\n\turl = https://github.com/dracula/novel-writer.git\n[submodule \"themes/campfire\"]\n\tpath = themes/campfire\n\turl = https://github.com/dracula/campfire.git\n[submodule \"themes/omglol\"]\n\tpath = themes/omglol\n\turl = https://github.com/dracula/omglol.git\n[submodule \"themes/fl-studio-21\"]\n\tpath = themes/fl-studio-21\n\turl = https://github.com/dracula/fl-studio-21.git\n[submodule \"themes/runjs\"]\n\tpath = themes/runjs\n\turl = https://github.com/dracula/runjs.git\n[submodule \"themes/suckless-tabbed\"]\n\tpath = themes/suckless-tabbed\n\turl = https://github.com/dracula/suckless-tabbed.git\n[submodule \"themes/peacock-extension\"]\n\tpath = themes/peacock-extension\n\turl = https://github.com/dracula/peacock-extension.git\n[submodule \"themes/tridactyl\"]\n\tpath = themes/tridactyl\n\turl = https://github.com/dracula/tridactyl.git\n[submodule \"themes/plsql-developer\"]\n\tpath = themes/plsql-developer\n\turl = https://github.com/dracula/plsql-developer.git\n[submodule \"themes/new-tabs\"]\n\tpath = themes/new-tabs\n\turl = https://github.com/dracula/new-tabs.git\n[submodule \"themes/infinity-for-reddit\"]\n\tpath = themes/infinity-for-reddit\n\turl = https://github.com/dracula/infinity-for-reddit.git\n[submodule \"themes/fedilab\"]\n\tpath = themes/fedilab\n\turl = https://github.com/dracula/fedilab.git\n[submodule \"themes/harpy-for-twitter\"]\n\tpath = themes/harpy-for-twitter\n\turl = https://github.com/dracula/harpy-for-twitter.git\n[submodule \"themes/nitter\"]\n\tpath = themes/nitter\n\turl = https://github.com/dracula/nitter.git\n[submodule \"themes/libreddit\"]\n\tpath = themes/libreddit\n\turl = https://github.com/dracula/libreddit.git\n[submodule \"themes/todoist\"]\n\tpath = themes/todoist\n\turl = https://github.com/dracula/todoist.git\n[submodule \"themes/misskey\"]\n\tpath = themes/misskey\n\turl = https://github.com/dracula/misskey.git\n[submodule \"themes/cli-visualizer\"]\n\tpath = themes/cli-visualizer\n\turl = https://github.com/dracula/cli-visualizer.git\n[submodule \"themes/replugged\"]\n\tpath = themes/replugged\n\turl = https://github.com/dracula/replugged.git\n[submodule \"themes/uptime-kuma\"]\n\tpath = themes/uptime-kuma\n\turl = https://github.com/dracula/uptime-kuma.git\n[submodule \"themes/yakuake\"]\n\tpath = themes/yakuake\n\turl = https://github.com/dracula/yakuake.git\n[submodule \"themes/aerc\"]\n\tpath = themes/aerc\n\turl = https://github.com/dracula/aerc.git\n[submodule \"themes/newsboat\"]\n\tpath = themes/newsboat\n\turl = https://github.com/dracula/newsboat.git\n[submodule \"themes/jabref\"]\n\tpath = themes/jabref\n\turl = https://github.com/dracula/jabref.git\n[submodule \"themes/makehuman\"]\n\tpath = themes/makehuman\n\turl = https://github.com/dracula/makehuman.git\n[submodule \"themes/plymouth\"]\n\tpath = themes/plymouth\n\turl = https://github.com/dracula/plymouth.git\n[submodule \"themes/fuzzel\"]\n\tpath = themes/fuzzel\n\turl = https://github.com/dracula/fuzzel.git\n[submodule \"themes/hyprland\"]\n\tpath = themes/hyprland\n\turl = https://github.com/dracula/hyprland.git\n[submodule \"themes/st\"]\n\tpath = themes/st\n\turl = https://github.com/dracula/st.git\n[submodule \"themes/swaylock\"]\n\tpath = themes/swaylock\n\turl = https://github.com/dracula/swaylock.git\n[submodule \"themes/waybar\"]\n\tpath = themes/waybar\n\turl = https://github.com/dracula/waybar.git\n[submodule \"themes/kristall\"]\n\tpath = themes/kristall\n\turl = https://github.com/dracula/kristall.git\n[submodule \"themes/freetube\"]\n\tpath = themes/freetube\n\turl = https://github.com/dracula/freetube.git\n[submodule \"themes/bandcamp\"]\n\tpath = themes/bandcamp\n\turl = https://github.com/dracula/bandcamp.git\n[submodule \"themes/mkdocs\"]\n\tpath = themes/mkdocs\n\turl = https://github.com/dracula/mkdocs.git\n[submodule \"themes/vis\"]\n\tpath = themes/vis\n\turl = https://github.com/dracula/vis.git\n[submodule \"themes/jupyter-notebook\"]\n\tpath = themes/jupyter-notebook\n\turl = https://github.com/dracula/jupyter-notebook.git\n[submodule \"themes/audacity\"]\n\tpath = themes/audacity\n\turl = https://github.com/dracula/audacity.git\n[submodule \"themes/lsd\"]\n\tpath = themes/lsd\n\turl = https://github.com/dracula/lsd.git\n[submodule \"themes/exa\"]\n\tpath = themes/exa\n\turl = https://github.com/dracula/exa.git\n[submodule \"themes/man-pages\"]\n\tpath = themes/man-pages\n\turl = https://github.com/dracula/man-pages.git\n[submodule \"themes/qterminal\"]\n\tpath = themes/qterminal\n\turl = https://github.com/dracula/qterminal.git\n[submodule \"themes/newterm2\"]\n\tpath = themes/newterm2\n\turl = https://github.com/dracula/newterm2.git\n[submodule \"themes/ish\"]\n\tpath = themes/ish\n\turl = https://github.com/dracula/ish.git\n[submodule \"themes/speedcrunch\"]\n\tpath = themes/speedcrunch\n\turl = https://github.com/dracula/speedcrunch.git\n[submodule \"themes/blockbench\"]\n\tpath = themes/blockbench\n\turl = https://github.com/dracula/blockbench.git\n[submodule \"themes/kurozora\"]\n\tpath = themes/kurozora\n\turl = https://github.com/dracula/kurozora.git\n[submodule \"themes/onecommander\"]\n\tpath = themes/onecommander\n\turl = https://github.com/dracula/onecommander.git\n[submodule \"themes/protonmail\"]\n\tpath = themes/protonmail\n\turl = https://github.com/dracula/protonmail.git\n[submodule \"themes/serum\"]\n\tpath = themes/serum\n\turl = https://github.com/dracula/serum.git\n[submodule \"themes/rime\"]\n\tpath = themes/rime\n\turl = https://github.com/dracula/rime.git\n[submodule \"themes/wob\"]\n\tpath = themes/wob\n\turl = https://github.com/dracula/wob.git\n[submodule \"themes/winamp\"]\n\tpath = themes/winamp\n\turl = https://github.com/dracula/winamp.git\n[submodule \"themes/mantine\"]\n\tpath = themes/mantine\n\turl = https://github.com/dracula/mantine.git\n[submodule \"themes/gh-dash\"]\n\tpath = themes/gh-dash\n\turl = https://github.com/dracula/gh-dash.git\n[submodule \"themes/sniffnet\"]\n\tpath = themes/sniffnet\n\turl = https://github.com/dracula/sniffnet.git\n[submodule \"themes/anne-pro-2\"]\n\tpath = themes/anne-pro-2\n\turl = https://github.com/dracula/anne-pro-2.git\n[submodule \"themes/notesnook\"]\n\tpath = themes/notesnook\n\turl = https://github.com/dracula/notesnook.git\n[submodule \"themes/lcd-smartie\"]\n\tpath = themes/lcd-smartie\n\turl = https://github.com/dracula/lcd-smartie.git\n[submodule \"themes/tumblr\"]\n\tpath = themes/tumblr\n\turl = https://github.com/dracula/tumblr.git\n[submodule \"themes/labplot\"]\n\tpath = themes/labplot\n\turl = https://github.com/dracula/labplot.git\n[submodule \"themes/rio-terminal\"]\n\tpath = themes/rio-terminal\n\turl = https://github.com/dracula/rio-terminal.git\n[submodule \"themes/polybar\"]\n\tpath = themes/polybar\n\turl = https://github.com/dracula/polybar.git\n[submodule \"themes/thumb-key\"]\n\tpath = themes/thumb-key\n\turl = https://github.com/dracula/thumb-key.git\n[submodule \"themes/google-calendar\"]\n\tpath = themes/google-calendar\n\turl = https://github.com/dracula/google-calendar.git\n[submodule \"themes/smartgit\"]\n\tpath = themes/smartgit\n\turl = https://github.com/dracula/smartgit.git\n[submodule \"themes/fontforge\"]\n\tpath = themes/fontforge\n\turl = https://github.com/dracula/fontforge.git\n[submodule \"themes/chatterino\"]\n\tpath = themes/chatterino\n\turl = https://github.com/dracula/chatterino.git\n[submodule \"themes/gkrellm\"]\n\tpath = themes/gkrellm\n\turl = https://github.com/dracula/gkrellm.git\n[submodule \"themes/adventofcode\"]\n\tpath = themes/adventofcode\n\turl = https://github.com/dracula/adventofcode.git\n[submodule \"themes/papirus-folders\"]\n\tpath = themes/papirus-folders\n\turl = https://github.com/dracula/papirus-folders.git\n[submodule \"themes/tut\"]\n\tpath = themes/tut\n\turl = https://github.com/dracula/tut.git\n[submodule \"themes/homepage\"]\n\tpath = themes/homepage\n\turl = https://github.com/dracula/homepage.git\n[submodule \"themes/lichess\"]\n\tpath = themes/lichess\n\turl = https://github.com/dracula/lichess.git\n[submodule \"themes/stirling-pdf\"]\n\tpath = themes/stirling-pdf\n\turl = https://github.com/dracula/stirling-pdf.git\n[submodule \"themes/heroic-games-launcher\"]\n\tpath = themes/heroic-games-launcher\n\turl = https://github.com/dracula/heroic-games-launcher.git\n[submodule \"themes/duolingo\"]\n\tpath = themes/duolingo\n\turl = https://github.com/dracula/duolingo.git\n[submodule \"themes/prompt\"]\n\tpath = themes/prompt\n\turl = https://github.com/dracula/prompt.git\n[submodule \"themes/zed\"]\n\tpath = themes/zed\n\turl = https://github.com/dracula/zed.git\n[submodule \"themes/bookwyrm\"]\n\tpath = themes/bookwyrm\n\turl = https://github.com/dracula/bookwyrm.git\n[submodule \"themes/powershell-ise\"]\n\tpath = themes/powershell-ise\n\turl = https://github.com/dracula/powershell-ise.git\n[submodule \"themes/subsonic\"]\n\tpath = themes/subsonic\n\turl = https://github.com/dracula/subsonic.git\n[submodule \"themes/backstage\"]\n\tpath = themes/backstage\n\turl = https://github.com/dracula/backstage.git\n[submodule \"themes/nnn\"]\n\tpath = themes/nnn\n\turl = https://github.com/dracula/nnn.git\n[submodule \"themes/acs\"]\n\tpath = themes/acs\n\turl = https://github.com/dracula/acs.git\n[submodule \"themes/gtksourceview\"]\n\tpath = themes/gtksourceview\n\turl = https://github.com/dracula/gtksourceview.git\n[submodule \"themes/cadzinho\"]\n\tpath = themes/cadzinho\n\turl = https://github.com/dracula/cadzinho.git\n[submodule \"themes/p10k-oh-my-posh\"]\n\tpath = themes/p10k-oh-my-posh\n\turl = https://github.com/dracula/p10k-oh-my-posh.git\n[submodule \"themes/openscad\"]\n\tpath = themes/openscad\n\turl = https://github.com/dracula/openscad.git\n[submodule \"themes/adiirc\"]\n\tpath = themes/adiirc\n\turl = https://github.com/dracula/adiirc.git\n[submodule \"themes/calibre\"]\n\tpath = themes/calibre\n\turl = https://github.com/dracula/calibre.git\n[submodule \"themes/tofi\"]\n\tpath = themes/tofi\n\turl = https://github.com/dracula/tofi.git\n[submodule \"themes/cosmic-terminal\"]\n\tpath = themes/cosmic-terminal\n\turl = https://github.com/dracula/cosmic-terminal.git\n[submodule \"themes/eza\"]\n\tpath = themes/eza\n\turl = https://github.com/dracula/eza.git\n[submodule \"themes/fluxbox\"]\n\tpath = themes/fluxbox\n\turl = https://github.com/dracula/fluxbox.git\n[submodule \"themes/tlrc\"]\n\tpath = themes/tlrc\n\turl = https://github.com/dracula/tlrc.git\n[submodule \"themes/go-access\"]\n\tpath = themes/go-access\n\turl = https://github.com/dracula/go-access.git\n[submodule \"themes/django-admin\"]\n\tpath = themes/django-admin\n\turl = https://github.com/dracula/django-admin.git\n[submodule \"themes/yazi\"]\n\tpath = themes/yazi\n\turl = https://github.com/dracula/yazi.git\n[submodule \"themes/x64dbg\"]\n\tpath = themes/x64dbg\n\turl = https://github.com/dracula/x64dbg.git\n[submodule \"themes/cutter\"]\n\tpath = themes/cutter\n\turl = https://github.com/dracula/cutter.git\n[submodule \"themes/inav\"]\n\tpath = themes/inav\n\turl = https://github.com/dracula/inav.git\n[submodule \"themes/binary-ninja\"]\n\tpath = themes/binary-ninja\n\turl = https://github.com/dracula/binary-ninja.git\n[submodule \"themes/lazygit\"]\n\tpath = themes/lazygit\n\turl = https://github.com/dracula/lazygit.git\n[submodule \"themes/codeforces\"]\n\tpath = themes/codeforces\n\turl = https://github.com/dracula/codeforces.git\n[submodule \"themes/google-search\"]\n\tpath = themes/google-search\n\turl = https://github.com/dracula/google-search.git\n[submodule \"themes/evidence\"]\n\tpath = themes/evidence\n\turl = https://github.com/dracula/evidence.git\n[submodule \"themes/ghostty\"]\n\tpath = themes/ghostty\n\turl = https://github.com/dracula/ghostty.git\n[submodule \"themes/keybr\"]\n\tpath = themes/keybr\n\turl = https://github.com/dracula/keybr.git\n[submodule \"themes/anytype\"]\n\tpath = themes/anytype\n\turl = https://github.com/dracula/anytype.git\n[submodule \"themes/tableplus\"]\n\tpath = themes/tableplus\n\turl = https://github.com/dracula/tableplus.git\n[submodule \"themes/snappy-driver-installer\"]\n\tpath = themes/snappy-driver-installer\n\turl = https://github.com/dracula/snappy-driver-installer.git\n[submodule \"themes/nilesoft-shell\"]\n\tpath = themes/nilesoft-shell\n\turl = https://github.com/dracula/nilesoft-shell.git\n[submodule \"themes/cursor\"]\n\tpath = themes/cursor\n\turl = https://github.com/dracula/cursor.git\n[submodule \"themes/raycast\"]\n\tpath = themes/raycast\n\turl = https://github.com/dracula/raycast.git\n[submodule \"themes/chatgpt\"]\n\tpath = themes/chatgpt\n\turl = https://github.com/dracula/chatgpt.git\n[submodule \"themes/ripgrep\"]\n\tpath = themes/ripgrep\n\turl = https://github.com/dracula/ripgrep.git\n[submodule \"themes/grep\"]\n\tpath = themes/grep\n\turl = https://github.com/dracula/grep.git\n[submodule \"themes/docker\"]\n\tpath = themes/docker\n\turl = https://github.com/dracula/docker.git\n[submodule \"themes/texworks\"]\n\tpath = themes/texworks\n\turl = https://github.com/dracula/texworks.git\n[submodule \"themes/apt\"]\n\tpath = themes/apt\n\turl = https://github.com/dracula/apt.git\n[submodule \"themes/bettercanvas\"]\n\tpath = themes/bettercanvas\n\turl = https://github.com/dracula/bettercanvas.git\n[submodule \"themes/jellyfin\"]\n\tpath = themes/jellyfin\n\turl = https://github.com/dracula/jellyfin.git\n[submodule \"themes/gitroll\"]\n\tpath = themes/gitroll\n\turl = https://github.com/dracula/gitroll.git\n[submodule \"themes/omarchy\"]\n\tpath = themes/omarchy\n\turl = https://github.com/dracula/omarchy.git\n[submodule \"themes/leetcode\"]\n\tpath = themes/leetcode\n\turl = https://github.com/dracula/leetcode.git\n[submodule \"themes/directory-opus\"]\n\tpath = themes/directory-opus\n\turl = https://github.com/dracula/directory-opus.git\n[submodule \"themes/m8\"]\n\tpath = themes/m8\n\turl = https://github.com/dracula/m8.git\n[submodule \"themes/facebook\"]\n\tpath = themes/facebook\n\turl = https://github.com/dracula/facebook.git\n[submodule \"themes/facebook-messenger\"]\n\tpath = themes/facebook-messenger\n\turl = https://github.com/dracula/facebook-messenger.git\n[submodule \"themes/vesktop-discord\"]\n\tpath = themes/vesktop-discord\n\turl = https://github.com/dracula/vesktop-discord.git\n[submodule \"themes/castero\"]\n\tpath = themes/castero\n\turl = https://github.com/dracula/castero.git\n[submodule \"themes/gemini\"]\n\tpath = themes/gemini\n\turl = https://github.com/dracula/gemini.git\n[submodule \"themes/xdbg\"]\n\tpath = themes/xdbg\n\turl = https://github.com/dracula/xdbg.git\n[submodule \"themes/readwise-reader\"]\n\tpath = themes/readwise-reader\n\turl = https://github.com/dracula/readwise-reader.git\n[submodule \"themes/opencode\"]\n\tpath = themes/opencode\n\turl = https://github.com/dracula/opencode.git\n[submodule \"themes/starship-powerline-preset\"]\n\tpath = themes/starship-powerline-preset\n\turl = https://github.com/dracula/starship-powerline-preset.git\n[submodule \"themes/marta\"]\n\tpath = themes/marta\n\turl = https://github.com/dracula/marta.git\n[submodule \"themes/home-assistant\"]\n\tpath = themes/home-assistant\n\turl = https://github.com/dracula/home-assistant.git\n[submodule \"themes/beeper\"]\n\tpath = themes/beeper\n\turl = https://github.com/dracula/beeper.git\n[submodule \"themes/trudido\"]\n\tpath = themes/trudido\n\turl = https://github.com/dracula/trudido.git\n[submodule \"themes/freshrss\"]\n\tpath = themes/freshrss\n\turl = https://github.com/dracula/freshrss.git\n[submodule \"themes/rackula\"]\n\tpath = themes/rackula\n\turl = https://github.com/dracula/rackula.git\n[submodule \"themes/presenterm\"]\n\tpath = themes/presenterm\n\turl = https://github.com/dracula/presenterm.git\n[submodule \"themes/postman\"]\n\tpath = themes/postman\n\turl = https://github.com/dracula/postman.git\n[submodule \"themes/pi-coding-agent\"]\n\tpath = themes/pi-coding-agent\n\turl = https://github.com/dracula/pi-coding-agent.git\n[submodule \"themes/librenms\"]\n\tpath = themes/librenms\n\turl = https://github.com/dracula/librenms.git\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2023 Dracula Theme\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Dracula Theme\n\n![Dracula](https://draculatheme.com/images/dracula.gif)\n\n> The most famous theme ever created, available for [Visual Studio Code](https://draculatheme.com/visual-studio-code), [iTerm](https://draculatheme.com/iterm), [Vim](https://draculatheme.com/vim), [Sublime Text](https://draculatheme.com/sublime), [JetBrains](https://draculatheme.com/jetbrains), [Terminal.app](https://draculatheme.com/terminal-app), [Windows Terminal](https://draculatheme.com/windows-terminal), [Hyper](https://draculatheme.com/hyper), [Alfred](https://draculatheme.com/alfred), [Slack](https://draculatheme.com/slack), [Xcode](https://draculatheme.com/xcode), [Emacs](https://draculatheme.com/emacs), [Zsh](https://draculatheme.com/zsh), and [400+ more applications](https://draculatheme.com).\n\n## Install\n\nFind installation instructions for your application at [draculatheme.com](https://draculatheme.com). Search for your app or browse the [full list of themes](https://draculatheme.com).\n\n## Color Palette (OSS)\n\n### Dracula\n\n| Palette      | Hex       | RGB           | HSL             | ![Color Picker Boxes](https://draculatheme.com/images/color-boxes/eyedropper.png)           |\n| ------------ | --------- | ------------- | --------------- | ------------------------------------------------------------------------------------------- |\n| Background   | `#282a36` | `40 42 54`    | `231° 15% 18%`  | ![Background Color](https://draculatheme.com/images/color-boxes/dracula-background.png)     |\n| Current Line | `#44475a` | `68 71 90`    | `232° 14% 31%`  | ![Current Line Color](https://draculatheme.com/images/color-boxes/dracula-current-line.png) |\n| Selection    | `#44475a` | `68 71 90`    | `232° 14% 31%`  | ![Selection Color](https://draculatheme.com/images/color-boxes/dracula-selection.png)       |\n| Foreground   | `#f8f8f2` | `248 248 242` | `60° 30% 96%`   | ![Foreground Color](https://draculatheme.com/images/color-boxes/dracula-foreground.png)     |\n| Comment      | `#6272a4` | `98 114 164`  | `225° 27% 51%`  | ![Comment Color](https://draculatheme.com/images/color-boxes/dracula-comment.png)           |\n| Cyan         | `#8be9fd` | `139 233 253` | `191° 97% 77%`  | ![Cyan Color](https://draculatheme.com/images/color-boxes/dracula-cyan.png)                 |\n| Green        | `#50fa7b` | `80 250 123`  | `135° 94% 65%`  | ![Green Color](https://draculatheme.com/images/color-boxes/dracula-green.png)               |\n| Orange       | `#ffb86c` | `255 184 108` | `31° 100% 71%`  | ![Orange Color](https://draculatheme.com/images/color-boxes/dracula-orange.png)             |\n| Pink         | `#ff79c6` | `255 121 198` | `326° 100% 74%` | ![Pink Color](https://draculatheme.com/images/color-boxes/dracula-pink.png)                 |\n| Purple       | `#bd93f9` | `189 147 249` | `265° 89% 78%`  | ![Purple Color](https://draculatheme.com/images/color-boxes/dracula-purple.png)             |\n| Red          | `#ff5555` | `255 85 85`   | `0° 100% 67%`   | ![Red Color](https://draculatheme.com/images/color-boxes/dracula-red.png)                   |\n| Yellow       | `#f1fa8c` | `241 250 140` | `65° 92% 76%`   | ![Yellow Color](https://draculatheme.com/images/color-boxes/dracula-yellow.png)             |\n\n### Alucard\n\n| Palette      | Hex       | RGB           | HSL            | ![Color Picker Boxes](https://draculatheme.com/images/color-boxes/eyedropper.png)           |\n| ------------ | --------- | ------------- | -------------- | ------------------------------------------------------------------------------------------- |\n| Background   | `#fffbeb` | `255 251 235` | `48° 100% 96%` | ![Background Color](https://draculatheme.com/images/color-boxes/alucard-background.png)     |\n| Current Line | `#6c664b` | `108 102 75`  | `49° 18% 36%`  | ![Current Line Color](https://draculatheme.com/images/color-boxes/alucard-current-line.png) |\n| Selection    | `#cfcfde` | `207 207 222` | `240° 18% 84%` | ![Selection Color](https://draculatheme.com/images/color-boxes/alucard-selection.png)       |\n| Foreground   | `#1f1f1f` | `31 31 31`    | `0° 0% 12%`    | ![Foreground Color](https://draculatheme.com/images/color-boxes/alucard-foreground.png)     |\n| Comment      | `#6c664b` | `108 102 75`  | `49° 18% 36%`  | ![Comment Color](https://draculatheme.com/images/color-boxes/alucard-comment.png)           |\n| Cyan         | `#036a96` | `3 106 150`   | `198° 96% 30%` | ![Cyan Color](https://draculatheme.com/images/color-boxes/alucard-cyan.png)                 |\n| Green        | `#14710a` | `20 113 10`   | `114° 84% 24%` | ![Green Color](https://draculatheme.com/images/color-boxes/alucard-green.png)               |\n| Orange       | `#a34d14` | `163 77 20`   | `24° 78% 36%`  | ![Orange Color](https://draculatheme.com/images/color-boxes/alucard-orange.png)             |\n| Pink         | `#a3144d` | `163 20 77`   | `336° 78% 36%` | ![Pink Color](https://draculatheme.com/images/color-boxes/alucard-pink.png)                 |\n| Purple       | `#644ac9` | `100 74 201`  | `252° 54% 54%` | ![Purple Color](https://draculatheme.com/images/color-boxes/alucard-purple.png)             |\n| Red          | `#cb3a2a` | `203 58 42`   | `6° 66% 48%`   | ![Red Color](https://draculatheme.com/images/color-boxes/alucard-red.png)                   |\n| Yellow       | `#846e15` | `132 110 21`  | `48° 73% 30%`  | ![Yellow Color](https://draculatheme.com/images/color-boxes/alucard-yellow.png)             |\n\nFor more details about how to apply these different colors to represent different code symbols, please see the [Dracula Specification](https://draculatheme.com/spec).\n\n## Contribute\n\nDracula Theme is an open-source project driven by and for the community. Most of the 400+ supported applications are community contributions.\n\nWe want to support all available applications, but we don't have the capacity to do it all ourselves. That's why your contributions are essential.\n\n### How to submit a new theme\n\n1. **Create a repository** using this [template](https://github.com/dracula/template).\n\n   - Clone it or click \"Use this template\" on GitHub.\n\n2. **Build your theme** using the [Color Palette](#color-palette) above.\n\n   - Follow the template structure and add your theme files.\n\n3. **Submit an issue** with a link to your repository.\n   - Once accepted, we'll move it to the Dracula organization and give you maintainer access.\n\nFor detailed guidelines and specifications, visit our [Contribute page](https://draculatheme.com/contribute).\n\n## FAQ\n\n**\"Are you going to support editor X?\"**\n\nWe'd love to! Since you're already using that editor, you're probably more familiar with it than we are. Give it a try and [submit your theme](https://draculatheme.com/contribute)!\n\n## Accessibility [![W3C](https://img.shields.io/badge/WCAG_2.1_|_AA-B695F3?logo=w3c&logoColor=fff&style=flat-square)](https://www.w3.org/TR/WCAG21/#contrast-minimum)\n\nThe colors maintain a `4.5:1` contrast ratio, complying with [WCAG 2.1 | Level AA](https://www.w3.org/TR/WCAG21/#contrast-minimum).\n\n## Team\n\nDracula was created by [Zeno Rocha](https://github.com/zenorocha/) and is maintained with the help of many contributors. [Lucas de França](https://github.com/luxonauta) joined as co-maintainer in April 2022. Each theme has its maintainer listed in its repository's README.\n\n| [![Zeno Rocha](https://github.com/zenorocha.png?size=100)](https://github.com/zenorocha) | [![Lucas de França](https://github.com/luxonauta.png?size=100)](https://github.com/luxonauta) |\n| ---------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |\n| [Zeno Rocha](https://github.com/zenorocha)                                               | [Lucas de França](https://github.com/luxonauta)                                               |\n\n## Organization\n\nAs Dracula grew to support 400+ applications, we moved from a single repository to a GitHub organization. Each theme now has its own repository, which makes it easier to:\n\n- Support different package managers\n- List maintainers for each theme\n- Find installation instructions\n- Release updates independently\n\nBrowse all themes in the [Dracula organization](https://github.com/dracula).\n\n## Community\n\n- [Contribute](https://draculatheme.com/contribute) - Learn how to create and submit themes\n- [Twitter](https://twitter.com/draculatheme) - Get updates and announcements\n- [GitHub Discussions](https://github.com/dracula/dracula-theme/discussions) - Ask questions and discuss\n- [Discord](https://draculatheme.com/discord-invite) - Chat with the community\n\n## Dracula PRO\n\nDracula PRO is a premium color scheme and UI theme designed for programming. It includes additional variants and features for terminal emulators, code editors, and syntax highlighters.\n\n[![Dracula PRO](./.github/dracula-pro.png)](https://draculatheme.com/pro)\n\n## Credits\n\nSpecial thanks to the creators who inspired the beginning of Dracula:\n\n- [@chenluois](http://mouapp.com/) for the color palette inspiration\n- [@aziz](http://tmtheme-editor.herokuapp.com/) for the theme editor tools\n- [@robbyrussell](https://github.com/robbyrussell) for the shell theme foundation\n\n## Changelog\n\nThe changelog is available on the release page in each theme's repository.\n\n## License\n\n[MIT License](./LICENSE) © Dracula Theme\n"
  }
]