mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 13:15:50 +00:00
14 lines
445 B
Lua
14 lines
445 B
Lua
local strict = require(script.Parent.strict)
|
|
|
|
return strict("Theme", {
|
|
ButtonFont = Enum.Font.GothamSemibold,
|
|
InputFont = Enum.Font.Code,
|
|
TitleFont = Enum.Font.GothamBold,
|
|
MainFont = Enum.Font.Gotham,
|
|
|
|
AccentColor = Color3.fromRGB(225, 56, 53),
|
|
AccentLightColor = Color3.fromRGB(255, 146, 145),
|
|
PrimaryColor = Color3.fromRGB(64, 64, 64),
|
|
SecondaryColor = Color3.fromRGB(235, 235, 235),
|
|
LightTextColor = Color3.fromRGB(160, 160, 160),
|
|
}) |