UI Element Color Picker

UI Element Color Picker - Get Proper Enum of UI Interface color.

Press any image button to get the plugin.

MarketplaceUI SourceCodeUI
image

What does this plugin do?

This plugin allows you to find a color that is bound to your configuration settings, letting you make plugins that match your studio theme more easily!
Example:

local _settings:any = settings()
local _studio = _settings.Studio::Studio
local Studio:Studio = _studio::Studio
local _theme:any = Studio.Theme
local StudioTheme = _theme::StudioTheme
local connection = Studio.ThemeChanged:Connect(function()
	local _theme:any = Studio.Theme
	StudioTheme = _theme::StudioTheme
end)
plugin.Unloading:Once(function()
	connection:Disconnect()
end)

workspace.Baseplate = StudioTheme:GetColor(Enum.StudioStyleGuideColor["Mid"])
1 Like

Update #1

  • Fixed issue with “unknown path” and the plugin is now in strict mode.
  • Button color is now updating upon theme change.