From 509bae9e9643ce9a53c38c5a3ac939cc4684e798 Mon Sep 17 00:00:00 2001 From: 7kayoh <40730127+7kayoh@users.noreply.github.com> Date: Sat, 10 Jul 2021 14:37:13 +0800 Subject: [PATCH] Fix themes --- src/modules/builders/stylepainter.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/builders/stylepainter.lua b/src/modules/builders/stylepainter.lua index 761169d..6b1c0be 100644 --- a/src/modules/builders/stylepainter.lua +++ b/src/modules/builders/stylepainter.lua @@ -12,6 +12,7 @@ return function(PluginService, assets, modules, widget) local function applyColors() local themeOption = settings().Studio.Theme local themeStylesheet = stylesheet[themeOption.Name] + widget.UI.BackgroundColor3 = themeStylesheet.Background widget.UI.Search.Background.BackgroundColor3 = themeStylesheet.Accent widget.UI.Search.Background.Cover.BackgroundColor3 = themeStylesheet.Elevated widget.UI.Search.Gradient.BackgroundColor3 = themeStylesheet.Background @@ -24,7 +25,7 @@ return function(PluginService, assets, modules, widget) applyColorsToIcon(themeStylesheet, assets.Icon) for _, object in ipairs(widget.UI.List:GetChildren()) do if object:IsA("Frame") then - applyColorsToIcon(object) + applyColorsToIcon(themeStylesheet, object) end end end