THEMING.md
September 26, 2023 ยท View on GitHub
Overview
To change the theme simply open Settings and choose desired preset
In order to load custom theme read the notes below.
Custom themes
Godots is fully compatible with Godot4 themes. To get them work, simply put desired properties to [theme] section in godots.cfg file that is located in Godots userdata folder (user://godots.cfg)
Tip: user:// folder can be simply opened with Setting Folder button in Settings
Sample (user://godots.cfg)
[theme]
interface/editor/main_font_size=14
interface/editor/custom_display_scale=1.25
interface/theme/preset="Default"
interface/theme/icon_and_font_color=0
interface/theme/base_color=Color(0.21, 0.24, 0.29, 1)
interface/theme/accent_color=Color(0.44, 0.73, 0.98, 1)
interface/theme/contrast=0.3
interface/theme/corner_radius=4
interface/theme/additional_spacing=0.5
Note: every property from [resource] section of editor_settings-4.tres (Godot editor cfg file) can be copy pasted to the [theme] section above.