Mirror of godotengine/godot-syntax-themes
Find a file
Robert Thomas 41fd0f1c09
Add JetBrains Dark syntax theme (#29)
* Add JetBrains Dark syntax theme
* Revise colouring to match GDScript JetBrains plugin in PyCharm
2025-06-01 17:11:50 +02:00
.editorconfig Add an EditorConfig file 2018-11-12 11:33:44 +01:00
.pre-commit-config.yaml Add pre-commit hooks 2018-10-16 12:10:34 +02:00
Apprentice.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Atom-Dark.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Ayu-Mirage.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Catppuccin-Frappé.tet Add Catppuccin themes (#18) 2023-11-04 09:49:05 +01:00
Catppuccin-Latte.tet Add Catppuccin themes (#18) 2023-11-04 09:49:05 +01:00
Catppuccin-Macchiato.tet Add Catppuccin themes (#18) 2023-11-04 09:49:05 +01:00
Catppuccin-Mocha.tet Add Catppuccin themes (#18) 2023-11-04 09:49:05 +01:00
Darcula.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
DevCode.tet Add DevCode dark theme (#26) 2024-10-24 03:31:48 +02:00
Dracula.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Everforest-Dark-Hard.tet Add Everforest Dark Hard theme (#28) 2025-02-06 15:03:24 +01:00
Gruvbox-Dark.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Horizon.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
JetBrains-Dark.tet Add JetBrains Dark syntax theme (#29) 2025-06-01 17:11:50 +02:00
Kanagawa-Dragon.tet Add Kanagawa themes (#22) 2024-10-18 22:41:39 +02:00
Kanagawa-Wave.tet Add Kanagawa themes (#22) 2024-10-18 22:41:39 +02:00
LICENSE.md Initial commit 2016-05-23 20:29:12 +02:00
Metro.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Monokai.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Nord.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
One-Dark.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
One-Monokai.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Quiet-Light.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
README.md Add JetBrains Dark syntax theme (#29) 2025-06-01 17:11:50 +02:00
Solarized-Dark.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Solarized-Light.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
Squid.tet Add Squid theme (#24) 2024-10-18 22:41:01 +02:00
THEMES.md Add preview images for all themes 2018-10-06 01:19:02 +02:00
Tokyo-Night-Moon.tet Add Tokyo Night themes (#21) 2023-11-27 13:24:09 +01:00
Tokyo-Night-Night.tet Add Tokyo Night themes (#21) 2023-11-27 13:24:09 +01:00
Tokyo-Night-Storm.tet Add Tokyo Night themes (#21) 2023-11-27 13:24:09 +01:00
VS-Code-Dark.tet Update color code syntax for Godot 4.0 2022-02-03 17:36:51 +01:00
VS-Code-Light.tet Fix highlighted word color being hard to see on VS Code Light 2022-02-26 19:36:18 +01:00
Xcode-Dark.tet Add Xcode Dark and Xcode Light themes 2023-11-04 09:53:41 +01:00
Xcode-Light.tet Add Xcode Dark and Xcode Light themes 2023-11-04 09:53:41 +01:00

Godot syntax themes for Godot 4.x

Screenshot

The Darcula theme in action.

This repository contains many syntax themes for Godot, for use in the built-in script editor.

This branch contains themes only compatible with Godot 4.x. These themes will not display correctly in Godot 3.x. Browse the 3.x branch to find themes compatible with Godot 3.x.

Want even more themes? Check out base16-godot for automatically generated themes.

Available themes

See THEMES.md for preview images.

Dark Light
Apprentice Catppuccin Latte
Atom Dark Quiet Light
Ayu Mirage Solarized Light
Catppuccin Frappé Visual Studio Code Light
Catppuccin Macchiato Xcode Light
Catppuccin Mocha
Darcula
DevCode
Dracula
Gruvbox Dark
Horizon
JetBrains Dark
Kanagawa Dragon
Kanagawa Wave
Metro
Monokai
Nord
One Dark
One Monokai
Solarized Dark
Squid
Visual Studio Code Dark
Xcode Dark

Installation

Place the .tet files in your Godot text editor theme directory:

  • On Linux: ~/.config/godot/text_editor_themes/
  • On macOS: ~/Library/Application Support/Godot/text_editor_themes/
  • On Windows: %APPDATA%\Godot\text_editor_themes\

Note: If you installed Godot using Steam, your Godot text editor theme folder should be placed in steamapps/common/Godot Engine/editor_data/text_editor_themes/ in your Steam installation folder.

To change the theme, open a project in the editor, click on Editor in the top menu, then go to the Editor Settings then Text Editor. You should now be able to choose the desired theme.

Tip: You can clone this Git repository directly into the text editor themes path (if the destination folder does not exist) using the following command:

# On Linux:
git clone https://github.com/godotengine/godot-syntax-themes.git ~/.config/godot/text_editor_themes

# On macOS:
git clone https://github.com/godotengine/godot-syntax-themes.git "~/Library/Application Support/Godot/text_editor_themes"

# On Windows:
git clone https://github.com/godotengine/godot-syntax-themes.git "%APPDATA%\Godot\text_editor_themes"

License

Copyright © 2016-present Hugo Locurcio and contributors

Files in this repository are licensed under CC0 1.0 Universal, see LICENSE.md for more information.