UI Element Color Picker - Get Proper Enum of UI Interface color.
Press any image button to get the plugin.
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"])