Last updated: Aug 1, 2026•2 min read
Themes & Style
Customize the appearance of the GUI using pre-configured themes.
Supported Themes#
Quartz V4 features two built-in themes out of the box:
- Dark (Default): Slate background (
Color3.fromRGB(13, 13, 15)) with gold accents (Color3.fromRGB(212, 175, 55)). - Light: Warm white background (
Color3.fromRGB(250, 249, 246)) with bronze accents (Color3.fromRGB(180, 140, 80)).
Applying Theme Dynamically#
Apply theme styling recursively across all active widgets:
LUA Script
Complete Code Example#
Here is a complete copy-pasteable script to switch between themes dynamically using a button:
LUA Script