Themes

Here You can found how themes work and how to make custom ones

The Themes Are Now Included in the Library Variable.

There are 6 themes included by default. The Dark Red theme, the Dark Blue which is the v1.0 theme, the dark green the light yellow, the light blue the nexus theme and the Dark. You can access them and change them by Adding the Theme property

For Example:

local main = Library:new{
	Theme = "Dark"
	--rest property code
}

The themes are

"Dark"
"DarkRed"
"DarkGreen"
"LightBlue"
"LightYellow"
"DarkBlue"

And

"Nexus"

To make a custom theme copy this code and modify it according to your taste

Custom = {
		isDark = true,
		BackgroundColor = Color3.fromRGB(15, 24, 32),

		ButtonColor = Color3.fromRGB(22, 36, 49),
		ButtonInputStrokeColor = Color3.fromRGB(97, 97, 97),
		--dropdown
		DropDownColor = Color3.fromRGB(22, 36, 49),
		DropDownOptionsColor = Color3.fromRGB(46, 77, 104),
		DropDownOptionsInputStrokeColor = Color3.fromRGB(97, 97, 97),
		DropDownInputStrokeColor = Color3.fromRGB(97, 97, 97),
		--label
		LabelColor = Color3.fromRGB(22, 36, 49),
		LabelInputStrokeColor = Color3.fromRGB(10, 91, 97),
		--slider
		SliderColor = Color3.fromRGB(22, 36, 49),
		SliderBackColor = Color3.fromRGB(14, 21, 33),
		SliderFillColor = Color3.fromRGB(39, 59, 91),
		SliderStrokeAll = Color3.fromRGB(97, 97, 97),
		--toggle
		ToggleColor = Color3.fromRGB(22, 36, 49),
		ToggleCheckColorInactive = Color3.fromRGB(15, 24, 33),
		ToggleCheckColor = Color3.fromRGB(42, 128, 136),
		--not naming this shit
		TopBar = Color3.fromRGB(),
		TopBarInputStrokeColor = Color3.fromRGB(10, 16, 22),

		TabButtonActive = Color3.fromRGB(255, 255, 255),
		TabButtonInactive = Color3.fromRGB(150, 182, 182),
		DockColor = Color3.fromRGB(15, 24, 32),
		TextColor = Color3.fromRGB(255,255,255),
		--Pops Ups
		PopUpColor = Color3.fromRGB(22, 36, 48),
		PopUpButtonColor = Color3.fromRGB(36, 60, 98),
		PopUpStroke = Color3.fromRGB(86, 86, 86),
		InputStrokeColor = Color3.fromRGB(97, 97, 97),

		TextInputColor = Color3.fromRGB(22, 36, 49),
		TabColor = Color3.fromRGB(134, 134, 134),
		NotificationColor = Color3.fromRGB(22, 36, 48),
		NotificationInputStrokeColor = Color3.fromRGB(199, 138, 16),
		NotificationSeperatorColor = Color3.fromRGB(42, 56, 68),
		
		SeperatorColor = Color3.fromRGB(22, 36, 49),
		SeperatorStrokeColor= Color3.fromRGB(75, 75, 75)
	},

now to add them just do

Theme = YourTheme 

but not

THeme = "YourTheme"

Last updated