Themes
Themes¶
HD Admin ships with 23 themes, from Dark and Light through to Cyberpunk, Horror and Tycoon. Every game and player can pick their own from the Settings page. To add your own, drop a ModuleScript inside the loader's Config > Themes folder. There's no registration step. It appears in the theme picker automatically.
A theme only overrides what it declares and falls back to the base theme (Dark) for everything else:
-- A ModuleScript inside HD Admin/Config/Themes
return {
Settings = {
LayoutOrder = 250, -- position in the theme picker
ShowInYouSettings = true, -- set false to hide it from the picker
LockPrimaryColor = true, -- players can't recolour this theme
LockFont = true, -- also available: LockContentScale
},
Color = {
Primary = Color3.fromRGB(255, 230, 0),
Base = Color3.fromRGB(8, 8, 14),
},
Font = {
Body = "rbxasset://fonts/families/Oswald.json",
Heading = "rbxasset://fonts/families/Oswald.json",
},
}