§Godot Engine v4
§Install using Git
If you are a git user, you can install the theme and keep up to date by cloning the repo:
git clone https://github.com/dracula/godot.git
§Install manually
Download using the GitHub .zip
download option and unzip them.
§Activating theme
- Navigate to
Editor -> Editor Settings -> Interface -> Theme
; - Set the
Base Color
to#282a36
; - Set the
Accent Color
to#6272a4
; - Set the
contrast
to0.21
; - Leave the
Icon Saturation
at1.0
; - Set the Text Editor theme:
- Windows: move the
dracula.tet
to%APPDATA%\Godot\text_editor_themes\
; - Linux: move the
dracula.tet
to$HOME/.config/godot/text_editor_themes
; - MacOS: move the
dracula.tet
to~/Library/Application Support/Godot/text_editor_themes/
; - Steam: move the
dracula.tet
tosteamapps/common/Godot Engine/editor_data/text_editor_themes/
.
- Windows: move the
- Go to
Editor -> Editor Settings -> General -> Text Editor -> Theme
; - Select
Dracula
from theColor Theme
dropdown; - Boom, it's working! ✨
§Godot Engine v3
The Dracula Theme for the Godot Engine v3 is no longer maintained; we recommend the latest version, available above.
§Install using Git
If you are a git user, you can install the theme and keep up to date by cloning the repo:
git clone https://github.com/dracula/godot.git
§Install manually
Download using the GitHub .zip
download option and unzip them.
§Activating theme
§Linux
- Start Godot for the first time and close it;
- Go to the
theme folder
and copy thePATH
; - 👉🏻
cat 'OBTAINED_PATH/v3-theme.tres' >> 'GODOT_PATH/editor_settings-3.tres'
GODOT_PATH being$HOME/.config/godot
if installed from Godot Or$HOME/.steam/steam/steamapps/common/Godot Engine/editor_data
if installed with Steam.
§Windows
- Start Godot for the first time and close it;
- Go to the
theme folder
and copy thePATH
; - 👉🏻
Get-Content 'OBTAINED_PATH\v3-theme.tres' | Add-Content 'GODOT_PATH\editor_settings-3.tres'
GODOT_PATH being$env:APPDATA\Godot
if installed from Godot OrC:\Program Files (x86)\Steam\steamapps\common\Godot Engine\editor_data
if installed with Steam