@@ -104,6 +104,14 @@ function module.syncGuiElementBackgroundColor(guiElement)
104104 setColors ()
105105end
106106
107+ function module .syncGuiElementTitlebarColor (guiElement )
108+ local function setColors ()
109+ guiElement .BackgroundColor3 = settings ().Studio .Theme :GetColor (Enum .StudioStyleGuideColor .Titlebar )
110+ end
111+ settings ().Studio .ThemeChanged :Connect (setColors )
112+ setColors ()
113+ end
114+
107115function module .syncGuiElementScrollBarBackgroundColor (guiElement )
108116 local function setColors ()
109117 guiElement .BackgroundColor3 = settings ().Studio .Theme :GetColor (Enum .StudioStyleGuideColor .ScrollBarBackground )
@@ -140,6 +148,23 @@ function module.syncGuiInputFieldBorderColor(guiElement)
140148 setColors ()
141149end
142150
151+ function module .syncGuiTabBarBackgroundColor (guiElement )
152+ local function setColors ()
153+ guiElement .BackgroundColor3 = settings ().Studio .Theme :GetColor (Enum .StudioStyleGuideColor .RibbonTab )
154+ end
155+ settings ().Studio .ThemeChanged :Connect (setColors )
156+ setColors ()
157+ end
158+
159+ function module .syncGuiTabBackgroundColor (guiElement )
160+ local function setColors ()
161+ guiElement .BackgroundColor3 = settings ().Studio .Theme :GetColor (Enum .StudioStyleGuideColor .RibbonTab )
162+ end
163+ settings ().Studio .ThemeChanged :Connect (setColors )
164+ setColors ()
165+ end
166+
167+
143168function module .syncGuiInputFieldBackgroundColor (guiElement )
144169 local function setColors ()
145170 guiElement .ImageColor3 = settings ().Studio .Theme :GetColor (Enum .StudioStyleGuideColor .InputFieldBackground )
@@ -305,7 +330,6 @@ function module.MakeFrameWithSubSectionLabel(name, text, url)
305330 row .BackgroundTransparency = 1
306331
307332 local label = module .MakeDefaultPropertyLabel (text , false , url )
308- label .BackgroundTransparency = 1
309333 label .Parent = row
310334
311335 return row
0 commit comments