Repository: dracula/dracula-theme
Branch: main
Commit: d15a01d2eaf2
Files: 7
Total size: 57.4 KB
Directory structure:
gitextract_bqz0zsil/
├── .github/
│ ├── issue_template.md
│ ├── pull_request_template.md
│ └── workflows/
│ ├── stale.yml
│ └── update-submodules.yml
├── .gitmodules
├── LICENSE
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/issue_template.md
================================================
## 🌱 New Theme?
As 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.
That's why the community is essential for this project to keep evolving. 🌱
Our website has some guidelines, tips and specifications for those who want to apply the theme in any application.
- [Contribute to Dracula](https://draculatheme.com/contribute)
## 🌲 Existing Theme?
Find the appropriate repository on the [Dracula organization](https://github.com/dracula).
This is just the umbrella place where we store all themes.
And remember - consider fixing the issue yourself. That's the best way to contribute. 😉
================================================
FILE: .github/pull_request_template.md
================================================
## 🦄 New Theme?
Please submit an issue with a screenshot of the theme and a link to your repository.
Once the theme is accepted, we will move the repository under the Dracula organization and give you the rights to maintain it! 😁
================================================
FILE: .github/workflows/stale.yml
================================================
---
name: "Close stale Issues and PRs"
on:
schedule:
- cron: "30 1 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
start-date: "2023-07-01T00:00:00Z"
close-issue-message: "This **Issue** has been automatically closed because it has had no new activity for a month."
close-pr-message: "This **Pull-Request** has been automatically closed because it has had no new activity for a month."
stale-issue-message: "This **Issue** has not been updated for a while and will be closed soon."
stale-pr-message: "This **Pull-Request** has not been updated for a while and will be closed soon."
days-before-stale: 60
days-before-close: 10
exempt-all-milestones: true
exempt-issue-labels: security
exempt-pr-labels: security
stale-issue-label: stale
stale-pr-label: stale
================================================
FILE: .github/workflows/update-submodules.yml
================================================
---
name: "Update Submodules"
on:
schedule:
- cron: "0 0 1 * *" # First day of every month at midnight UTC
workflow_dispatch: # Manual trigger option
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: false
token: ${{ secrets.GITHUB_TOKEN }}
- name: Initialize and update submodules
run: |
# Sync submodule URLs from .gitmodules
git submodule sync --recursive || true
# Try to initialize and update submodules normally
# If a submodule commit doesn't exist, we'll handle it below
git submodule update --init --recursive 2>&1 | tee /tmp/submodule-update.log || true
# For any submodules that failed due to missing commits, checkout default branch
if grep -q "not our ref\|did not contain" /tmp/submodule-update.log; then
echo "Some submodules failed, attempting to fix..."
git submodule foreach --recursive '
if ! git rev-parse --verify HEAD >/dev/null 2>&1; then
echo "Fixing $name..."
git fetch origin || true
git checkout origin/HEAD 2>/dev/null || git checkout origin/main 2>/dev/null || git checkout origin/master 2>/dev/null || true
fi
' || true
fi
# Update all submodules to latest remote versions
git submodule update --recursive --remote || true
- name: Check for changes
id: check-changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "has_changes=true" >> $GITHUB_OUTPUT
else
echo "has_changes=false" >> $GITHUB_OUTPUT
fi
- name: Commit and push changes
if: steps.check-changes.outputs.has_changes == 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "chore: update submodules to latest versions"
git push
================================================
FILE: .gitmodules
================================================
[submodule "ableton-live"]
path = themes/ableton-live
url = https://github.com/dracula/ableton-live.git
[submodule "adobe"]
path = themes/adobe
url = https://github.com/dracula/adobe.git
[submodule "alacritty"]
path = themes/alacritty
url = https://github.com/dracula/alacritty.git
[submodule "alfred"]
path = themes/alfred
url = https://github.com/dracula/alfred.git
[submodule "arduino-ide"]
path = themes/arduino-ide
url = https://github.com/dracula/arduino-ide.git
[submodule "aseprite"]
path = themes/aseprite
url = https://github.com/dracula/aseprite.git
[submodule "atom"]
path = themes/atom
url = https://github.com/dracula/atom.git
[submodule "b4x"]
path = themes/b4x
url = https://github.com/dracula/b4x.git
[submodule "base16"]
path = themes/base16
url = https://github.com/dracula/base16.git
[submodule "bbedit"]
path = themes/bbedit
url = https://github.com/dracula/bbedit.git
[submodule "blender"]
path = themes/blender
url = https://github.com/dracula/blender.git
[submodule "brackets"]
path = themes/brackets
url = https://github.com/dracula/brackets.git
[submodule "bspwm"]
path = themes/bspwm
url = https://github.com/dracula/bspwm.git
[submodule "chrome-devtools"]
path = themes/chrome-devtools
url = https://github.com/dracula/chrome-devtools.git
[submodule "cmder"]
path = themes/cmder
url = https://github.com/dracula/cmder.git
[submodule "coda"]
path = themes/coda
url = https://github.com/dracula/coda.git
[submodule "conemu"]
path = themes/conemu
url = https://github.com/dracula/conemu.git
[submodule "coteditor"]
path = themes/coteditor
url = https://github.com/dracula/coteditor.git
[submodule "couscous"]
path = themes/couscous
url = https://github.com/dracula/couscous.git
[submodule "discourse"]
path = themes/discourse
url = https://github.com/dracula/discourse.git
[submodule "doom-emacs"]
path = themes/doom-emacs
url = https://github.com/dracula/doom-emacs.git
[submodule "duckduckgo"]
path = themes/duckduckgo
url = https://github.com/dracula/duckduckgo.git
[submodule "eclipse"]
path = themes/eclipse
url = https://github.com/dracula/eclipse.git
[submodule "editplus"]
path = themes/editplus
url = https://github.com/dracula/editplus.git
[submodule "emacs"]
path = themes/emacs
url = https://github.com/dracula/emacs.git
[submodule "fb-messenger"]
path = themes/fb-messenger
url = https://github.com/dracula/fb-messenger.git
[submodule "figma"]
path = themes/figma
url = https://github.com/dracula/figma.git
[submodule "fish"]
path = themes/fish
url = https://github.com/dracula/fish.git
[submodule "gamemaker-studio"]
path = themes/gamemaker-studio
url = https://github.com/dracula/gamemaker-studio.git
[submodule "geany"]
path = themes/geany
url = https://github.com/dracula/geany.git
[submodule "gedit"]
path = themes/gedit
url = https://github.com/dracula/gedit.git
[submodule "gh-pages"]
path = themes/gh-pages
url = https://github.com/dracula/gh-pages.git
[submodule "gitk"]
path = themes/gitk
url = https://github.com/dracula/gitk.git
[submodule "gmk"]
path = themes/gmk
url = https://github.com/dracula/gmk.git
[submodule "gnome-terminal"]
path = themes/gnome-terminal
url = https://github.com/dracula/gnome-terminal.git
[submodule "godot"]
path = themes/godot
url = https://github.com/dracula/godot.git
[submodule "gtk"]
path = themes/gtk
url = https://github.com/dracula/gtk.git
[submodule "highlightjs"]
path = themes/highlightjs
url = https://github.com/dracula/highlightjs.git
[submodule "hyper"]
path = themes/hyper
url = https://github.com/dracula/hyper.git
[submodule "i3"]
path = themes/i3
url = https://github.com/dracula/i3.git
[submodule "insomnia"]
path = themes/insomnia
url = https://github.com/dracula/insomnia.git
[submodule "iterm"]
path = themes/iterm
url = https://github.com/dracula/iterm.git
[submodule "javadoc"]
path = themes/javadoc
url = https://github.com/dracula/javadoc.git
[submodule "jetbrains"]
path = themes/jetbrains
url = https://github.com/dracula/jetbrains.git
[submodule "jgrasp"]
path = themes/jgrasp
url = https://github.com/dracula/jgrasp.git
[submodule "kakoune"]
path = themes/kakoune
url = https://github.com/dracula/kakoune.git
[submodule "kate"]
path = themes/kate
url = https://github.com/dracula/kate.git
[submodule "kitty"]
path = themes/kitty
url = https://github.com/dracula/kitty.git
[submodule "konsole"]
path = themes/konsole
url = https://github.com/dracula/konsole.git
[submodule "light-table"]
path = themes/light-table
url = https://github.com/dracula/light-table.git
[submodule "lightpaper"]
path = themes/lightpaper
url = https://github.com/dracula/lightpaper.git
[submodule "limechat"]
path = themes/limechat
url = https://github.com/dracula/limechat.git
[submodule "macdown"]
path = themes/macdown
url = https://github.com/dracula/macdown.git
[submodule "mailspring"]
path = themes/mailspring
url = https://github.com/dracula/mailspring.git
[submodule "marp"]
path = themes/marp
url = https://github.com/dracula/marp.git
[submodule "matlab"]
path = themes/matlab
url = https://github.com/dracula/matlab.git
[submodule "mattermost"]
path = themes/mattermost
url = https://github.com/dracula/mattermost.git
[submodule "mindnode"]
path = themes/mindnode
url = https://github.com/dracula/mindnode.git
[submodule "mintty"]
path = themes/mintty
url = https://github.com/dracula/mintty.git
[submodule "mobaxterm"]
path = themes/mobaxterm
url = https://github.com/dracula/mobaxterm.git
[submodule "monodevelop"]
path = themes/monodevelop
url = https://github.com/dracula/monodevelop.git
[submodule "musicbee"]
path = themes/musicbee
url = https://github.com/dracula/musicbee.git
[submodule "mutt"]
path = themes/mutt
url = https://github.com/dracula/mutt.git
[submodule "notepad-plus-plus"]
path = themes/notepad-plus-plus
url = https://github.com/dracula/notepad-plus-plus.git
[submodule "nylas-n1"]
path = themes/nylas-n1
url = https://github.com/dracula/nylas-n1.git
[submodule "powershell"]
path = themes/powershell
url = https://github.com/dracula/powershell.git
[submodule "prism"]
path = themes/prism
url = https://github.com/dracula/prism.git
[submodule "pygments"]
path = themes/pygments
url = https://github.com/dracula/pygments.git
[submodule "pythonista"]
path = themes/pythonista
url = https://github.com/dracula/pythonista.git
[submodule "qtcreator"]
path = themes/qtcreator
url = https://github.com/dracula/qtcreator.git
[submodule "quassel"]
path = themes/quassel
url = https://github.com/dracula/quassel.git
[submodule "quiver"]
path = themes/quiver
url = https://github.com/dracula/quiver.git
[submodule "sketch"]
path = themes/sketch
url = https://github.com/dracula/sketch.git
[submodule "sequel-pro"]
path = themes/sequel-pro
url = https://github.com/dracula/sequel-pro.git
[submodule "slack"]
path = themes/slack
url = https://github.com/dracula/slack.git
[submodule "spacemacs"]
path = themes/spacemacs
url = https://github.com/dracula/spacemacs.git
[submodule "steam"]
path = themes/steam
url = https://github.com/dracula/steam.git
[submodule "sublime"]
path = themes/sublime
url = https://github.com/dracula/sublime.git
[submodule "tabletop-simulator"]
path = themes/tabletop-simulator
url = https://github.com/dracula/tabletop-simulator.git
[submodule "telegram"]
path = themes/telegram
url = https://github.com/dracula/telegram.git
[submodule "telegram-android"]
path = themes/telegram-android
url = https://github.com/dracula/telegram-android.git
[submodule "terminal-app"]
path = themes/terminal-app
url = https://github.com/dracula/terminal.app
[submodule "termite"]
path = themes/termite
url = https://github.com/dracula/termite.git
[submodule "termux"]
path = themes/termux
url = https://github.com/dracula/termux.git
[submodule "textmate"]
path = themes/textmate
url = https://github.com/dracula/textmate.git
[submodule "textual"]
path = themes/textual
url = https://github.com/dracula/textual.git
[submodule "thonny"]
path = themes/thonny
url = https://github.com/dracula/thonny.git
[submodule "tilix"]
path = themes/tilix
url = https://github.com/dracula/tilix.git
[submodule "tmux"]
path = themes/tmux
url = https://github.com/dracula/tmux.git
[submodule "total-commander"]
path = themes/total-commander
url = https://github.com/dracula/total-commander.git
[submodule "tower"]
path = themes/tower
url = https://github.com/dracula/tower.git
[submodule "typora"]
path = themes/typora
url = https://github.com/dracula/typora.git
[submodule "ulysses"]
path = themes/ulysses
url = https://github.com/dracula/ulysses.git
[submodule "vim"]
path = themes/vim
url = https://github.com/dracula/vim.git
[submodule "vimium"]
path = themes/vimium
url = https://github.com/dracula/vimium.git
[submodule "visual-studio"]
path = themes/visual-studio
url = https://github.com/dracula/visual-studio.git
[submodule "visual-studio-code"]
path = themes/visual-studio-code
url = https://github.com/dracula/visual-studio-code.git
[submodule "vivaldi"]
path = themes/vivaldi
url = https://github.com/dracula/vivaldi.git
[submodule "windows-terminal"]
path = themes/windows-terminal
url = https://github.com/dracula/windows-terminal.git
[submodule "wing"]
path = themes/wing
url = https://github.com/dracula/wing.git
[submodule "wordpress"]
path = themes/wordpress
url = https://github.com/dracula/wordpress.git
[submodule "wox"]
path = themes/wox
url = https://github.com/dracula/wox.git
[submodule "xchat"]
path = themes/xchat
url = https://github.com/dracula/xchat.git
[submodule "xcode"]
path = themes/xcode
url = https://github.com/dracula/xcode.git
[submodule "xresources"]
path = themes/xresources
url = https://github.com/dracula/xresources.git
[submodule "zsh"]
path = themes/zsh
url = https://github.com/dracula/zsh.git
[submodule "pywal"]
path = themes/pywal
url = https://github.com/dracula/pywal.git
[submodule "idle"]
path = themes/idle
url = https://github.com/dracula/idle.git
[submodule "zathura"]
path = themes/zathura
url = https://github.com/dracula/zathura.git
[submodule "tiddlywiki"]
path = themes/tiddlywiki
url = https://github.com/dracula/tiddlywiki.git
[submodule "plank"]
path = themes/plank
url = https://github.com/dracula/plank.git
[submodule "betterdiscord"]
path = themes/betterdiscord
url = https://github.com/dracula/betterdiscord.git
[submodule "thelounge"]
path = themes/thelounge
url = https://github.com/dracula/thelounge.git
[submodule "colorls"]
path = themes/colorls
url = https://github.com/dracula/colorls.git
[submodule "roam-research"]
path = themes/roam-research
url = https://github.com/dracula/roam-research.git
[submodule "obsidian"]
path = themes/obsidian
url = https://github.com/dracula/obsidian.git
[submodule "adminer"]
path = themes/adminer
url = https://github.com/dracula/adminer.git
[submodule "micro"]
path = themes/micro
url = https://github.com/dracula/micro.git
[submodule "renoise"]
path = themes/renoise
url = https://github.com/dracula/renoise.git
[submodule "fman"]
path = themes/fman
url = https://github.com/dracula/fman.git
[submodule "copyq"]
path = themes/copyq
url = https://github.com/dracula/copyq.git
[submodule "cryptowatch"]
path = themes/cryptowatch
url = https://github.com/dracula/cryptowatch.git
[submodule "midnight-commander"]
path = themes/midnight-commander
url = https://github.com/dracula/midnight-commander.git
[submodule "keypirinha"]
path = themes/keypirinha
url = https://github.com/dracula/keypirinha.git
[submodule "mousepad"]
path = themes/mousepad
url = https://github.com/dracula/mousepad.git
[submodule "linear"]
path = themes/linear
url = https://github.com/dracula/linear.git
[submodule "albert"]
path = themes/albert
url = https://github.com/dracula/albert.git
[submodule "arduino-pro-ide"]
path = themes/arduino-pro-ide
url = https://github.com/dracula/arduino-pro-ide.git
[submodule "kicad"]
path = themes/kicad
url = https://github.com/dracula/kicad.git
[submodule "standard-notes"]
path = themes/standard-notes
url = https://github.com/dracula/standard-notes.git
[submodule "thunderbird"]
path = themes/thunderbird
url = https://github.com/dracula/thunderbird.git
[submodule "liteide"]
path = themes/liteide
url = https://github.com/dracula/liteide.git
[submodule "bashtop"]
path = themes/bashtop
url = https://github.com/dracula/bashtop.git
[submodule "logseq"]
path = themes/logseq
url = https://github.com/dracula/logseq.git
[submodule "qt5"]
path = themes/qt5
url = https://github.com/dracula/qt5.git
[submodule "terminator"]
path = themes/terminator
url = https://github.com/dracula/terminator.git
[submodule "telegram-ios"]
path = themes/telegram-ios
url = https://github.com/dracula/telegram-ios.git
[submodule "ida"]
path = themes/ida
url = https://github.com/dracula/ida.git
[submodule "netbeans"]
path = themes/netbeans
url = https://github.com/dracula/netbeans.git
[submodule "xournalpp"]
path = themes/xournalpp
url = https://github.com/dracula/xournalpp.git
[submodule "ditto"]
path = themes/ditto
url = https://github.com/dracula/ditto.git
[submodule "matplotlib"]
path = themes/matplotlib
url = https://github.com/dracula/matplotlib.git
[submodule "nova"]
path = themes/nova
url = https://github.com/dracula/nova.git
[submodule "tty"]
path = themes/tty
url = https://github.com/dracula/tty.git
[submodule "libreoffice"]
path = themes/libreoffice
url = https://github.com/dracula/libreoffice.git
[submodule "vivado"]
path = themes/vivado
url = https://github.com/dracula/vivado.git
[submodule "everythingtoolbar"]
path = themes/everythingtoolbar
url = https://github.com/dracula/everythingtoolbar.git
[submodule "xfce4-terminal"]
path = themes/xfce4-terminal
url = https://github.com/dracula/xfce4-terminal.git
[submodule "spotify-tui"]
path = themes/spotify-tui
url = https://github.com/dracula/spotify-tui.git
[submodule "inkscape"]
path = themes/inkscape
url = https://github.com/dracula/inkscape.git
[submodule "dunst"]
path = themes/dunst
url = https://github.com/dracula/dunst.git
[submodule "ncspot"]
path = themes/ncspot
url = https://github.com/dracula/ncspot.git
[submodule "themes/ltspice"]
path = themes/ltspice
url = https://github.com/dracula/ltspice.git
[submodule "themes/bemenu"]
path = themes/bemenu
url = https://github.com/dracula/bemenu.git
[submodule "themes/abricotine"]
path = themes/abricotine
url = https://github.com/dracula/abricotine.git
[submodule "themes/latex"]
path = themes/latex
url = https://github.com/dracula/latex.git
[submodule "themes/unigram"]
path = themes/unigram
url = https://github.com/dracula/unigram.git
[submodule "themes/grub"]
path = themes/grub
url = https://github.com/dracula/grub.git
[submodule "themes/pandoc"]
path = themes/pandoc
url = https://github.com/dracula/pandoc.git
[submodule "themes/abap"]
path = themes/abap
url = https://github.com/dracula/abap.git
[submodule "themes/sumatra-pdf"]
path = themes/sumatra-pdf
url = https://github.com/dracula/sumatra-pdf.git
[submodule "themes/visual-spigot"]
path = themes/visual-spigot
url = https://github.com/dracula/visual-spigot.git
[submodule "themes/freecad"]
path = themes/freecad
url = https://github.com/dracula/freecad.git
[submodule "themes/ghostwriter"]
path = themes/ghostwriter
url = https://github.com/dracula/ghostwriter.git
[submodule "themes/beamer"]
path = themes/beamer
url = https://github.com/dracula/beamer.git
[submodule "themes/kdiff3"]
path = themes/kdiff3
url = https://github.com/dracula/kdiff3.git
[submodule "themes/tailwind"]
path = themes/tailwind
url = https://github.com/dracula/tailwind.git
[submodule "themes/metaeditor"]
path = themes/metaeditor
url = https://github.com/dracula/metaeditor.git
[submodule "themes/files"]
path = themes/files
url = https://github.com/dracula/files.git
[submodule "themes/discordbotmaker"]
path = themes/discordbotmaker
url = https://github.com/dracula/discordbotmaker.git
[submodule "themes/qbittorrent"]
path = themes/qbittorrent
url = https://github.com/dracula/qbittorrent.git
[submodule "themes/streamlit"]
path = themes/streamlit
url = https://github.com/dracula/streamlit.git
[submodule "themes/imageglass"]
path = themes/imageglass
url = https://github.com/dracula/imageglass.git
[submodule "themes/mako"]
path = themes/mako
url = https://github.com/dracula/mako.git
[submodule "themes/fzf"]
path = themes/fzf
url = https://github.com/dracula/fzf.git
[submodule "themes/swiftui"]
path = themes/swiftui
url = https://github.com/dracula/swiftui.git
[submodule "themes/solidworks"]
path = themes/solidworks
url = https://github.com/dracula/solidworks.git
[submodule "themes/zsh-syntax-highlighting"]
path = themes/zsh-syntax-highlighting
url = https://github.com/dracula/zsh-syntax-highlighting.git
[submodule "themes/flarum"]
path = themes/flarum
url = https://github.com/dracula/flarum.git
[submodule "themes/beyond-compare-4"]
path = themes/beyond-compare-4
url = https://github.com/dracula/beyond-compare-4.git
[submodule "themes/texstudio"]
path = themes/texstudio
url = https://github.com/dracula/texstudio.git
[submodule "themes/dwarf-fortress"]
path = themes/dwarf-fortress
url = https://github.com/dracula/dwarf-fortress.git
[submodule "themes/lxterminal"]
path = themes/lxterminal
url = https://github.com/dracula/lxterminal.git
[submodule "themes/ripcord"]
path = themes/ripcord
url = https://github.com/dracula/ripcord.git
[submodule "themes/nyxt"]
path = themes/nyxt
url = https://github.com/dracula/nyxt.git
[submodule "themes/node-console"]
path = themes/node-console
url = https://github.com/dracula/node-console.git
[submodule "themes/krita"]
path = themes/krita
url = https://github.com/dracula/krita.git
[submodule "themes/funkwhale"]
path = themes/funkwhale
url = https://github.com/dracula/funkwhale.git
[submodule "themes/sidenotes"]
path = themes/sidenotes
url = https://github.com/dracula/sidenotes.git
[submodule "themes/ueli"]
path = themes/ueli
url = https://github.com/dracula/ueli.git
[submodule "themes/btcpay-server"]
path = themes/btcpay-server
url = https://github.com/dracula/btcpay-server.git
[submodule "themes/caprine-messenger"]
path = themes/caprine-messenger
url = https://github.com/dracula/caprine-messenger.git
[submodule "themes/em-client"]
path = themes/em-client
url = https://github.com/dracula/em-client.git
[submodule "themes/fig"]
path = themes/fig
url = https://github.com/dracula/fig.git
[submodule "themes/amfora"]
path = themes/amfora
url = https://github.com/dracula/amfora.git
[submodule "themes/passky"]
path = themes/passky
url = https://github.com/dracula/passky.git
[submodule "themes/rstudio"]
path = themes/rstudio
url = https://github.com/dracula/rstudio.git
[submodule "themes/pantheon-terminal"]
path = themes/pantheon-terminal
url = https://github.com/dracula/pantheon-terminal.git
[submodule "themes/rofi"]
path = themes/rofi
url = https://github.com/dracula/rofi.git
[submodule "themes/tym"]
path = themes/tym
url = https://github.com/dracula/tym.git
[submodule "themes/gamepad-viewer"]
path = themes/gamepad-viewer
url = https://github.com/dracula/gamepad-viewer.git
[submodule "themes/mixplorer"]
path = themes/mixplorer
url = https://github.com/dracula/mixplorer.git
[submodule "themes/dev-cpp"]
path = themes/dev-cpp
url = https://github.com/dracula/dev-cpp.git
[submodule "themes/revolt"]
path = themes/revolt
url = https://github.com/dracula/revolt.git
[submodule "themes/ranger"]
path = themes/ranger
url = https://github.com/dracula/ranger.git
[submodule "themes/texshop"]
path = themes/texshop
url = https://github.com/dracula/texshop.git
[submodule "themes/aliucord"]
path = themes/aliucord
url = https://github.com/dracula/aliucord.git
[submodule "themes/metatrader5"]
path = themes/metatrader5
url = https://github.com/dracula/metatrader5.git
[submodule "themes/sequel-ace"]
path = themes/sequel-ace
url = https://github.com/dracula/sequel-ace.git
[submodule "themes/nova-launcher"]
path = themes/nova-launcher
url = https://github.com/dracula/nova-launcher.git
[submodule "themes/textastic"]
path = themes/textastic
url = https://github.com/dracula/textastic.git
[submodule "themes/revolution-irc"]
path = themes/revolution-irc
url = https://github.com/dracula/revolution-irc.git
[submodule "themes/powerlevel10k"]
path = themes/powerlevel10k
url = https://github.com/dracula/powerlevel10k.git
[submodule "themes/unreal-engine"]
path = themes/unreal-engine
url = https://github.com/dracula/unreal-engine.git
[submodule "themes/ggplot2"]
path = themes/ggplot2
url = https://github.com/dracula/ggplot2.git
[submodule "themes/windterm"]
path = themes/windterm
url = https://github.com/dracula/windterm.git
[submodule "themes/musikcube"]
path = themes/musikcube
url = https://github.com/dracula/musikcube.git
[submodule "themes/florisboard"]
path = themes/florisboard
url = https://github.com/dracula/florisboard.git
[submodule "themes/delphi"]
path = themes/delphi
url = https://github.com/dracula/delphi.git
[submodule "themes/gitkraken"]
path = themes/gitkraken
url = https://github.com/dracula/gitkraken.git
[submodule "themes/apollo"]
path = themes/apollo
url = https://github.com/dracula/apollo.git
[submodule "themes/mysql-workbench"]
path = themes/mysql-workbench
url = https://github.com/dracula/mysql-workbench.git
[submodule "themes/bear"]
path = themes/bear
url = https://github.com/dracula/bear.git
[submodule "themes/chrome"]
path = themes/chrome
url = https://github.com/dracula/chrome.git
[submodule "themes/firefox"]
path = themes/firefox
url = https://github.com/dracula/firefox.git
[submodule "themes/fluent-terminal"]
path = themes/fluent-terminal
url = https://github.com/dracula/fluent-terminal.git
[submodule "themes/jupyterlab"]
path = themes/jupyterlab
url = https://github.com/dracula/jupyterlab.git
[submodule "themes/oracle-sql-developer"]
path = themes/oracle-sql-developer
url = https://github.com/dracula/oracle-sql-developer.git
[submodule "themes/qutebrowser"]
path = themes/qutebrowser
url = https://github.com/dracula/qutebrowser.git
[submodule "themes/ulauncher"]
path = themes/ulauncher
url = https://github.com/dracula/ulauncher.git
[submodule "themes/wallpaper"]
path = themes/wallpaper
url = https://github.com/dracula/wallpaper.git
[submodule "themes/wofi"]
path = themes/wofi
url = https://github.com/dracula/wofi.git
[submodule "themes/wolfram-notebooks"]
path = themes/wolfram-notebooks
url = https://github.com/dracula/wolfram-notebooks.git
[submodule "themes/bobthefish"]
path = themes/bobthefish
url = https://github.com/dracula/bobthefish.git
[submodule "themes/warp"]
path = themes/warp
url = https://github.com/dracula/warp.git
[submodule "themes/gajim"]
path = themes/gajim
url = https://github.com/dracula/gajim.git
[submodule "themes/github"]
path = themes/github
url = https://github.com/dracula/github.git
[submodule "themes/foot"]
path = themes/foot
url = https://github.com/dracula/foot.git
[submodule "themes/spyder-ide"]
path = themes/spyder-ide
url = https://github.com/dracula/spyder-ide.git
[submodule "themes/monkeytype"]
path = themes/monkeytype
url = https://github.com/dracula/monkeytype.git
[submodule "themes/joplin"]
path = themes/joplin
url = https://github.com/dracula/joplin.git
[submodule "themes/codeblocks"]
path = themes/codeblocks
url = https://github.com/dracula/codeblocks.git
[submodule "themes/starship"]
path = themes/starship
url = https://github.com/dracula/starship.git
[submodule "themes/serenityos"]
path = themes/serenityos
url = https://github.com/dracula/serenityos.git
[submodule "themes/gitlab"]
path = themes/gitlab
url = https://github.com/dracula/gitlab.git
[submodule "themes/tig"]
path = themes/tig
url = https://github.com/dracula/tig.git
[submodule "themes/openbox"]
path = themes/openbox
url = https://github.com/dracula/openbox.git
[submodule "themes/wezterm"]
path = themes/wezterm
url = https://github.com/dracula/wezterm.git
[submodule "themes/postbox"]
path = themes/postbox
url = https://github.com/dracula/postbox.git
[submodule "themes/coderunner"]
path = themes/coderunner
url = https://github.com/dracula/coderunner.git
[submodule "themes/cider"]
path = themes/cider
url = https://github.com/dracula/cider.git
[submodule "themes/git"]
path = themes/git
url = https://github.com/dracula/git.git
[submodule "themes/jdownloader2"]
path = themes/jdownloader2
url = https://github.com/dracula/jdownloader2.git
[submodule "themes/stackoverflow"]
path = themes/stackoverflow
url = https://github.com/dracula/stackoverflow.git
[submodule "themes/flowlab"]
path = themes/flowlab
url = https://github.com/dracula/flowlab.git
[submodule "themes/archive-of-our-own"]
path = themes/archive-of-our-own
url = https://github.com/dracula/archive-of-our-own.git
[submodule "themes/zellij"]
path = themes/zellij
url = https://github.com/dracula/zellij.git
[submodule "themes/visual-basic-6"]
path = themes/visual-basic-6
url = https://github.com/dracula/visual-basic-6.git
[submodule "themes/noir"]
path = themes/noir
url = https://github.com/dracula/noir.git
[submodule "themes/oh-my-posh"]
path = themes/oh-my-posh
url = https://github.com/dracula/oh-my-posh.git
[submodule "themes/dircolors"]
path = themes/dircolors
url = https://github.com/dracula/dircolors.git
[submodule "themes/itfy"]
path = themes/itfy
url = https://github.com/dracula/itfy.git
[submodule "themes/vortex-mod-manager"]
path = themes/vortex-mod-manager
url = https://github.com/dracula/vortex-mod-manager.git
[submodule "themes/clone-hero"]
path = themes/clone-hero
url = https://github.com/dracula/clone-hero.git
[submodule "themes/ngenuity"]
path = themes/ngenuity
url = https://github.com/dracula/ngenuity.git
[submodule "themes/codepen"]
path = themes/codepen
url = https://github.com/dracula/codepen.git
[submodule "themes/macos-color-picker"]
path = themes/macos-color-picker
url = https://github.com/dracula/macos-color-picker.git
[submodule "themes/psychopy"]
path = themes/psychopy
url = https://github.com/dracula/psychopy.git
[submodule "themes/gimp"]
path = themes/gimp
url = https://github.com/dracula/gimp.git
[submodule "themes/drafts"]
path = themes/drafts
url = https://github.com/dracula/drafts.git
[submodule "themes/tint2"]
path = themes/tint2
url = https://github.com/dracula/tint2.git
[submodule "themes/snippetslab"]
path = themes/snippetslab
url = https://github.com/dracula/snippetslab.git
[submodule "themes/homer"]
path = themes/homer
url = https://github.com/dracula/homer.git
[submodule "themes/sandpack"]
path = themes/sandpack
url = https://github.com/dracula/sandpack.git
[submodule "themes/nextcloud"]
path = themes/nextcloud
url = https://github.com/dracula/nextcloud.git
[submodule "themes/hacker-news"]
path = themes/hacker-news
url = https://github.com/dracula/hacker-news.git
[submodule "themes/youtube"]
path = themes/youtube
url = https://github.com/dracula/youtube.git
[submodule "themes/blink-shell"]
path = themes/blink-shell
url = https://github.com/dracula/blink-shell.git
[submodule "themes/auto-ao3-app"]
path = themes/auto-ao3-app
url = https://github.com/dracula/auto-ao3-app.git
[submodule "themes/youtube-music-desktop"]
path = themes/youtube-music-desktop
url = https://github.com/dracula/youtube-music-desktop.git
[submodule "themes/polymc"]
path = themes/polymc
url = https://github.com/dracula/polymc.git
[submodule "themes/yunohost"]
path = themes/yunohost
url = https://github.com/dracula/yunohost.git
[submodule "themes/atom-ui"]
path = themes/atom-ui
url = https://github.com/dracula/atom-ui.git
[submodule "themes/sioyek"]
path = themes/sioyek
url = https://github.com/dracula/sioyek.git
[submodule "themes/cava"]
path = themes/cava
url = https://github.com/dracula/cava.git
[submodule "themes/minecraft"]
path = themes/minecraft
url = https://github.com/dracula/minecraft.git
[submodule "themes/wp"]
path = themes/wp
url = https://github.com/dracula/wp.git
[submodule "themes/vital"]
path = themes/vital
url = https://github.com/dracula/vital.git
[submodule "themes/i3lock-color"]
path = themes/i3lock-color
url = https://github.com/dracula/i3lock-color.git
[submodule "themes/color-slurp"]
path = themes/color-slurp
url = https://github.com/dracula/color-slurp.git
[submodule "themes/kanbanflow"]
path = themes/kanbanflow
url = https://github.com/dracula/kanbanflow.git
[submodule "themes/scrivener"]
path = themes/scrivener
url = https://github.com/dracula/scrivener.git
[submodule "themes/leftwm"]
path = themes/leftwm
url = https://github.com/dracula/leftwm.git
[submodule "themes/dmenu"]
path = themes/dmenu
url = https://github.com/dracula/dmenu.git
[submodule "themes/dwm"]
path = themes/dwm
url = https://github.com/dracula/dwm.git
[submodule "themes/dyalog"]
path = themes/dyalog
url = https://github.com/dracula/dyalog.git
[submodule "themes/spicetify"]
path = themes/spicetify
url = https://github.com/dracula/spicetify.git
[submodule "themes/novel-writer"]
path = themes/novel-writer
url = https://github.com/dracula/novel-writer.git
[submodule "themes/campfire"]
path = themes/campfire
url = https://github.com/dracula/campfire.git
[submodule "themes/omglol"]
path = themes/omglol
url = https://github.com/dracula/omglol.git
[submodule "themes/fl-studio-21"]
path = themes/fl-studio-21
url = https://github.com/dracula/fl-studio-21.git
[submodule "themes/runjs"]
path = themes/runjs
url = https://github.com/dracula/runjs.git
[submodule "themes/suckless-tabbed"]
path = themes/suckless-tabbed
url = https://github.com/dracula/suckless-tabbed.git
[submodule "themes/peacock-extension"]
path = themes/peacock-extension
url = https://github.com/dracula/peacock-extension.git
[submodule "themes/tridactyl"]
path = themes/tridactyl
url = https://github.com/dracula/tridactyl.git
[submodule "themes/plsql-developer"]
path = themes/plsql-developer
url = https://github.com/dracula/plsql-developer.git
[submodule "themes/new-tabs"]
path = themes/new-tabs
url = https://github.com/dracula/new-tabs.git
[submodule "themes/infinity-for-reddit"]
path = themes/infinity-for-reddit
url = https://github.com/dracula/infinity-for-reddit.git
[submodule "themes/fedilab"]
path = themes/fedilab
url = https://github.com/dracula/fedilab.git
[submodule "themes/harpy-for-twitter"]
path = themes/harpy-for-twitter
url = https://github.com/dracula/harpy-for-twitter.git
[submodule "themes/nitter"]
path = themes/nitter
url = https://github.com/dracula/nitter.git
[submodule "themes/libreddit"]
path = themes/libreddit
url = https://github.com/dracula/libreddit.git
[submodule "themes/todoist"]
path = themes/todoist
url = https://github.com/dracula/todoist.git
[submodule "themes/misskey"]
path = themes/misskey
url = https://github.com/dracula/misskey.git
[submodule "themes/cli-visualizer"]
path = themes/cli-visualizer
url = https://github.com/dracula/cli-visualizer.git
[submodule "themes/replugged"]
path = themes/replugged
url = https://github.com/dracula/replugged.git
[submodule "themes/uptime-kuma"]
path = themes/uptime-kuma
url = https://github.com/dracula/uptime-kuma.git
[submodule "themes/yakuake"]
path = themes/yakuake
url = https://github.com/dracula/yakuake.git
[submodule "themes/aerc"]
path = themes/aerc
url = https://github.com/dracula/aerc.git
[submodule "themes/newsboat"]
path = themes/newsboat
url = https://github.com/dracula/newsboat.git
[submodule "themes/jabref"]
path = themes/jabref
url = https://github.com/dracula/jabref.git
[submodule "themes/makehuman"]
path = themes/makehuman
url = https://github.com/dracula/makehuman.git
[submodule "themes/plymouth"]
path = themes/plymouth
url = https://github.com/dracula/plymouth.git
[submodule "themes/fuzzel"]
path = themes/fuzzel
url = https://github.com/dracula/fuzzel.git
[submodule "themes/hyprland"]
path = themes/hyprland
url = https://github.com/dracula/hyprland.git
[submodule "themes/st"]
path = themes/st
url = https://github.com/dracula/st.git
[submodule "themes/swaylock"]
path = themes/swaylock
url = https://github.com/dracula/swaylock.git
[submodule "themes/waybar"]
path = themes/waybar
url = https://github.com/dracula/waybar.git
[submodule "themes/kristall"]
path = themes/kristall
url = https://github.com/dracula/kristall.git
[submodule "themes/freetube"]
path = themes/freetube
url = https://github.com/dracula/freetube.git
[submodule "themes/bandcamp"]
path = themes/bandcamp
url = https://github.com/dracula/bandcamp.git
[submodule "themes/mkdocs"]
path = themes/mkdocs
url = https://github.com/dracula/mkdocs.git
[submodule "themes/vis"]
path = themes/vis
url = https://github.com/dracula/vis.git
[submodule "themes/jupyter-notebook"]
path = themes/jupyter-notebook
url = https://github.com/dracula/jupyter-notebook.git
[submodule "themes/audacity"]
path = themes/audacity
url = https://github.com/dracula/audacity.git
[submodule "themes/lsd"]
path = themes/lsd
url = https://github.com/dracula/lsd.git
[submodule "themes/exa"]
path = themes/exa
url = https://github.com/dracula/exa.git
[submodule "themes/man-pages"]
path = themes/man-pages
url = https://github.com/dracula/man-pages.git
[submodule "themes/qterminal"]
path = themes/qterminal
url = https://github.com/dracula/qterminal.git
[submodule "themes/newterm2"]
path = themes/newterm2
url = https://github.com/dracula/newterm2.git
[submodule "themes/ish"]
path = themes/ish
url = https://github.com/dracula/ish.git
[submodule "themes/speedcrunch"]
path = themes/speedcrunch
url = https://github.com/dracula/speedcrunch.git
[submodule "themes/blockbench"]
path = themes/blockbench
url = https://github.com/dracula/blockbench.git
[submodule "themes/kurozora"]
path = themes/kurozora
url = https://github.com/dracula/kurozora.git
[submodule "themes/onecommander"]
path = themes/onecommander
url = https://github.com/dracula/onecommander.git
[submodule "themes/protonmail"]
path = themes/protonmail
url = https://github.com/dracula/protonmail.git
[submodule "themes/serum"]
path = themes/serum
url = https://github.com/dracula/serum.git
[submodule "themes/rime"]
path = themes/rime
url = https://github.com/dracula/rime.git
[submodule "themes/wob"]
path = themes/wob
url = https://github.com/dracula/wob.git
[submodule "themes/winamp"]
path = themes/winamp
url = https://github.com/dracula/winamp.git
[submodule "themes/mantine"]
path = themes/mantine
url = https://github.com/dracula/mantine.git
[submodule "themes/gh-dash"]
path = themes/gh-dash
url = https://github.com/dracula/gh-dash.git
[submodule "themes/sniffnet"]
path = themes/sniffnet
url = https://github.com/dracula/sniffnet.git
[submodule "themes/anne-pro-2"]
path = themes/anne-pro-2
url = https://github.com/dracula/anne-pro-2.git
[submodule "themes/notesnook"]
path = themes/notesnook
url = https://github.com/dracula/notesnook.git
[submodule "themes/lcd-smartie"]
path = themes/lcd-smartie
url = https://github.com/dracula/lcd-smartie.git
[submodule "themes/tumblr"]
path = themes/tumblr
url = https://github.com/dracula/tumblr.git
[submodule "themes/labplot"]
path = themes/labplot
url = https://github.com/dracula/labplot.git
[submodule "themes/rio-terminal"]
path = themes/rio-terminal
url = https://github.com/dracula/rio-terminal.git
[submodule "themes/polybar"]
path = themes/polybar
url = https://github.com/dracula/polybar.git
[submodule "themes/thumb-key"]
path = themes/thumb-key
url = https://github.com/dracula/thumb-key.git
[submodule "themes/google-calendar"]
path = themes/google-calendar
url = https://github.com/dracula/google-calendar.git
[submodule "themes/smartgit"]
path = themes/smartgit
url = https://github.com/dracula/smartgit.git
[submodule "themes/fontforge"]
path = themes/fontforge
url = https://github.com/dracula/fontforge.git
[submodule "themes/chatterino"]
path = themes/chatterino
url = https://github.com/dracula/chatterino.git
[submodule "themes/gkrellm"]
path = themes/gkrellm
url = https://github.com/dracula/gkrellm.git
[submodule "themes/adventofcode"]
path = themes/adventofcode
url = https://github.com/dracula/adventofcode.git
[submodule "themes/papirus-folders"]
path = themes/papirus-folders
url = https://github.com/dracula/papirus-folders.git
[submodule "themes/tut"]
path = themes/tut
url = https://github.com/dracula/tut.git
[submodule "themes/homepage"]
path = themes/homepage
url = https://github.com/dracula/homepage.git
[submodule "themes/lichess"]
path = themes/lichess
url = https://github.com/dracula/lichess.git
[submodule "themes/stirling-pdf"]
path = themes/stirling-pdf
url = https://github.com/dracula/stirling-pdf.git
[submodule "themes/heroic-games-launcher"]
path = themes/heroic-games-launcher
url = https://github.com/dracula/heroic-games-launcher.git
[submodule "themes/duolingo"]
path = themes/duolingo
url = https://github.com/dracula/duolingo.git
[submodule "themes/prompt"]
path = themes/prompt
url = https://github.com/dracula/prompt.git
[submodule "themes/zed"]
path = themes/zed
url = https://github.com/dracula/zed.git
[submodule "themes/bookwyrm"]
path = themes/bookwyrm
url = https://github.com/dracula/bookwyrm.git
[submodule "themes/powershell-ise"]
path = themes/powershell-ise
url = https://github.com/dracula/powershell-ise.git
[submodule "themes/subsonic"]
path = themes/subsonic
url = https://github.com/dracula/subsonic.git
[submodule "themes/backstage"]
path = themes/backstage
url = https://github.com/dracula/backstage.git
[submodule "themes/nnn"]
path = themes/nnn
url = https://github.com/dracula/nnn.git
[submodule "themes/acs"]
path = themes/acs
url = https://github.com/dracula/acs.git
[submodule "themes/gtksourceview"]
path = themes/gtksourceview
url = https://github.com/dracula/gtksourceview.git
[submodule "themes/cadzinho"]
path = themes/cadzinho
url = https://github.com/dracula/cadzinho.git
[submodule "themes/p10k-oh-my-posh"]
path = themes/p10k-oh-my-posh
url = https://github.com/dracula/p10k-oh-my-posh.git
[submodule "themes/openscad"]
path = themes/openscad
url = https://github.com/dracula/openscad.git
[submodule "themes/adiirc"]
path = themes/adiirc
url = https://github.com/dracula/adiirc.git
[submodule "themes/calibre"]
path = themes/calibre
url = https://github.com/dracula/calibre.git
[submodule "themes/tofi"]
path = themes/tofi
url = https://github.com/dracula/tofi.git
[submodule "themes/cosmic-terminal"]
path = themes/cosmic-terminal
url = https://github.com/dracula/cosmic-terminal.git
[submodule "themes/eza"]
path = themes/eza
url = https://github.com/dracula/eza.git
[submodule "themes/fluxbox"]
path = themes/fluxbox
url = https://github.com/dracula/fluxbox.git
[submodule "themes/tlrc"]
path = themes/tlrc
url = https://github.com/dracula/tlrc.git
[submodule "themes/go-access"]
path = themes/go-access
url = https://github.com/dracula/go-access.git
[submodule "themes/django-admin"]
path = themes/django-admin
url = https://github.com/dracula/django-admin.git
[submodule "themes/yazi"]
path = themes/yazi
url = https://github.com/dracula/yazi.git
[submodule "themes/x64dbg"]
path = themes/x64dbg
url = https://github.com/dracula/x64dbg.git
[submodule "themes/cutter"]
path = themes/cutter
url = https://github.com/dracula/cutter.git
[submodule "themes/inav"]
path = themes/inav
url = https://github.com/dracula/inav.git
[submodule "themes/binary-ninja"]
path = themes/binary-ninja
url = https://github.com/dracula/binary-ninja.git
[submodule "themes/lazygit"]
path = themes/lazygit
url = https://github.com/dracula/lazygit.git
[submodule "themes/codeforces"]
path = themes/codeforces
url = https://github.com/dracula/codeforces.git
[submodule "themes/google-search"]
path = themes/google-search
url = https://github.com/dracula/google-search.git
[submodule "themes/evidence"]
path = themes/evidence
url = https://github.com/dracula/evidence.git
[submodule "themes/ghostty"]
path = themes/ghostty
url = https://github.com/dracula/ghostty.git
[submodule "themes/keybr"]
path = themes/keybr
url = https://github.com/dracula/keybr.git
[submodule "themes/anytype"]
path = themes/anytype
url = https://github.com/dracula/anytype.git
[submodule "themes/tableplus"]
path = themes/tableplus
url = https://github.com/dracula/tableplus.git
[submodule "themes/snappy-driver-installer"]
path = themes/snappy-driver-installer
url = https://github.com/dracula/snappy-driver-installer.git
[submodule "themes/nilesoft-shell"]
path = themes/nilesoft-shell
url = https://github.com/dracula/nilesoft-shell.git
[submodule "themes/cursor"]
path = themes/cursor
url = https://github.com/dracula/cursor.git
[submodule "themes/raycast"]
path = themes/raycast
url = https://github.com/dracula/raycast.git
[submodule "themes/chatgpt"]
path = themes/chatgpt
url = https://github.com/dracula/chatgpt.git
[submodule "themes/ripgrep"]
path = themes/ripgrep
url = https://github.com/dracula/ripgrep.git
[submodule "themes/grep"]
path = themes/grep
url = https://github.com/dracula/grep.git
[submodule "themes/docker"]
path = themes/docker
url = https://github.com/dracula/docker.git
[submodule "themes/texworks"]
path = themes/texworks
url = https://github.com/dracula/texworks.git
[submodule "themes/apt"]
path = themes/apt
url = https://github.com/dracula/apt.git
[submodule "themes/bettercanvas"]
path = themes/bettercanvas
url = https://github.com/dracula/bettercanvas.git
[submodule "themes/jellyfin"]
path = themes/jellyfin
url = https://github.com/dracula/jellyfin.git
[submodule "themes/gitroll"]
path = themes/gitroll
url = https://github.com/dracula/gitroll.git
[submodule "themes/omarchy"]
path = themes/omarchy
url = https://github.com/dracula/omarchy.git
[submodule "themes/leetcode"]
path = themes/leetcode
url = https://github.com/dracula/leetcode.git
[submodule "themes/directory-opus"]
path = themes/directory-opus
url = https://github.com/dracula/directory-opus.git
[submodule "themes/m8"]
path = themes/m8
url = https://github.com/dracula/m8.git
[submodule "themes/facebook"]
path = themes/facebook
url = https://github.com/dracula/facebook.git
[submodule "themes/facebook-messenger"]
path = themes/facebook-messenger
url = https://github.com/dracula/facebook-messenger.git
[submodule "themes/vesktop-discord"]
path = themes/vesktop-discord
url = https://github.com/dracula/vesktop-discord.git
[submodule "themes/castero"]
path = themes/castero
url = https://github.com/dracula/castero.git
[submodule "themes/gemini"]
path = themes/gemini
url = https://github.com/dracula/gemini.git
[submodule "themes/xdbg"]
path = themes/xdbg
url = https://github.com/dracula/xdbg.git
[submodule "themes/readwise-reader"]
path = themes/readwise-reader
url = https://github.com/dracula/readwise-reader.git
[submodule "themes/opencode"]
path = themes/opencode
url = https://github.com/dracula/opencode.git
[submodule "themes/starship-powerline-preset"]
path = themes/starship-powerline-preset
url = https://github.com/dracula/starship-powerline-preset.git
[submodule "themes/marta"]
path = themes/marta
url = https://github.com/dracula/marta.git
[submodule "themes/home-assistant"]
path = themes/home-assistant
url = https://github.com/dracula/home-assistant.git
[submodule "themes/beeper"]
path = themes/beeper
url = https://github.com/dracula/beeper.git
[submodule "themes/trudido"]
path = themes/trudido
url = https://github.com/dracula/trudido.git
[submodule "themes/freshrss"]
path = themes/freshrss
url = https://github.com/dracula/freshrss.git
[submodule "themes/rackula"]
path = themes/rackula
url = https://github.com/dracula/rackula.git
[submodule "themes/presenterm"]
path = themes/presenterm
url = https://github.com/dracula/presenterm.git
[submodule "themes/postman"]
path = themes/postman
url = https://github.com/dracula/postman.git
[submodule "themes/pi-coding-agent"]
path = themes/pi-coding-agent
url = https://github.com/dracula/pi-coding-agent.git
[submodule "themes/librenms"]
path = themes/librenms
url = https://github.com/dracula/librenms.git
================================================
FILE: LICENSE
================================================
The MIT License (MIT)
Copyright (c) 2023 Dracula Theme
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# Dracula Theme

> 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).
## Install
Find 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).
## Color Palette (OSS)
### Dracula
| Palette | Hex | RGB | HSL |  |
| ------------ | --------- | ------------- | --------------- | ------------------------------------------------------------------------------------------- |
| Background | `#282a36` | `40 42 54` | `231° 15% 18%` |  |
| Current Line | `#44475a` | `68 71 90` | `232° 14% 31%` |  |
| Selection | `#44475a` | `68 71 90` | `232° 14% 31%` |  |
| Foreground | `#f8f8f2` | `248 248 242` | `60° 30% 96%` |  |
| Comment | `#6272a4` | `98 114 164` | `225° 27% 51%` |  |
| Cyan | `#8be9fd` | `139 233 253` | `191° 97% 77%` |  |
| Green | `#50fa7b` | `80 250 123` | `135° 94% 65%` |  |
| Orange | `#ffb86c` | `255 184 108` | `31° 100% 71%` |  |
| Pink | `#ff79c6` | `255 121 198` | `326° 100% 74%` |  |
| Purple | `#bd93f9` | `189 147 249` | `265° 89% 78%` |  |
| Red | `#ff5555` | `255 85 85` | `0° 100% 67%` |  |
| Yellow | `#f1fa8c` | `241 250 140` | `65° 92% 76%` |  |
### Alucard
| Palette | Hex | RGB | HSL |  |
| ------------ | --------- | ------------- | -------------- | ------------------------------------------------------------------------------------------- |
| Background | `#fffbeb` | `255 251 235` | `48° 100% 96%` |  |
| Current Line | `#6c664b` | `108 102 75` | `49° 18% 36%` |  |
| Selection | `#cfcfde` | `207 207 222` | `240° 18% 84%` |  |
| Foreground | `#1f1f1f` | `31 31 31` | `0° 0% 12%` |  |
| Comment | `#6c664b` | `108 102 75` | `49° 18% 36%` |  |
| Cyan | `#036a96` | `3 106 150` | `198° 96% 30%` |  |
| Green | `#14710a` | `20 113 10` | `114° 84% 24%` |  |
| Orange | `#a34d14` | `163 77 20` | `24° 78% 36%` |  |
| Pink | `#a3144d` | `163 20 77` | `336° 78% 36%` |  |
| Purple | `#644ac9` | `100 74 201` | `252° 54% 54%` |  |
| Red | `#cb3a2a` | `203 58 42` | `6° 66% 48%` |  |
| Yellow | `#846e15` | `132 110 21` | `48° 73% 30%` |  |
For more details about how to apply these different colors to represent different code symbols, please see the [Dracula Specification](https://draculatheme.com/spec).
## Contribute
Dracula Theme is an open-source project driven by and for the community. Most of the 400+ supported applications are community contributions.
We 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.
### How to submit a new theme
1. **Create a repository** using this [template](https://github.com/dracula/template).
- Clone it or click "Use this template" on GitHub.
2. **Build your theme** using the [Color Palette](#color-palette) above.
- Follow the template structure and add your theme files.
3. **Submit an issue** with a link to your repository.
- Once accepted, we'll move it to the Dracula organization and give you maintainer access.
For detailed guidelines and specifications, visit our [Contribute page](https://draculatheme.com/contribute).
## FAQ
**"Are you going to support editor X?"**
We'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)!
## Accessibility [](https://www.w3.org/TR/WCAG21/#contrast-minimum)
The colors maintain a `4.5:1` contrast ratio, complying with [WCAG 2.1 | Level AA](https://www.w3.org/TR/WCAG21/#contrast-minimum).
## Team
Dracula 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.
| [](https://github.com/zenorocha) | [](https://github.com/luxonauta) |
| ---------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
| [Zeno Rocha](https://github.com/zenorocha) | [Lucas de França](https://github.com/luxonauta) |
## Organization
As 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:
- Support different package managers
- List maintainers for each theme
- Find installation instructions
- Release updates independently
Browse all themes in the [Dracula organization](https://github.com/dracula).
## Community
- [Contribute](https://draculatheme.com/contribute) - Learn how to create and submit themes
- [Twitter](https://twitter.com/draculatheme) - Get updates and announcements
- [GitHub Discussions](https://github.com/dracula/dracula-theme/discussions) - Ask questions and discuss
- [Discord](https://draculatheme.com/discord-invite) - Chat with the community
## Dracula PRO
Dracula 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.
[](https://draculatheme.com/pro)
## Credits
Special thanks to the creators who inspired the beginning of Dracula:
- [@chenluois](http://mouapp.com/) for the color palette inspiration
- [@aziz](http://tmtheme-editor.herokuapp.com/) for the theme editor tools
- [@robbyrussell](https://github.com/robbyrussell) for the shell theme foundation
## Changelog
The changelog is available on the release page in each theme's repository.
## License
[MIT License](./LICENSE) © Dracula Theme
gitextract_bqz0zsil/ ├── .github/ │ ├── issue_template.md │ ├── pull_request_template.md │ └── workflows/ │ ├── stale.yml │ └── update-submodules.yml ├── .gitmodules ├── LICENSE └── README.md
Condensed preview — 7 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (63K chars).
[
{
"path": ".github/issue_template.md",
"chars": 676,
"preview": "## 🌱 New Theme?\n\nAs much as the team is responsible for the core theme and wants to support all available applications, "
},
{
"path": ".github/pull_request_template.md",
"chars": 232,
"preview": "## 🦄 New Theme?\n\nPlease submit an issue with a screenshot of the theme and a link to your repository.\n\nOnce the theme is"
},
{
"path": ".github/workflows/stale.yml",
"chars": 995,
"preview": "---\nname: \"Close stale Issues and PRs\"\non:\n schedule:\n - cron: \"30 1 * * *\"\n\npermissions:\n issues: write\n pull-req"
},
{
"path": ".github/workflows/update-submodules.yml",
"chars": 2162,
"preview": "---\nname: \"Update Submodules\"\non:\n schedule:\n - cron: \"0 0 1 * *\" # First day of every month at midnight UTC\n workf"
},
{
"path": ".gitmodules",
"chars": 44277,
"preview": "[submodule \"ableton-live\"]\n\tpath = themes/ableton-live\n\turl = https://github.com/dracula/ableton-live.git\n[submodule \"ad"
},
{
"path": "LICENSE",
"chars": 1080,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2023 Dracula Theme\n\nPermission is hereby granted, free of charge, to any person obt"
},
{
"path": "README.md",
"chars": 9351,
"preview": "# Dracula Theme\n\n\n\n> The most famous theme ever created, availabl"
}
]
About this extraction
This page contains the full source code of the dracula/dracula-theme GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 7 files (57.4 KB), approximately 16.2k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.