Use Studio theming (#838)

Updates our Theme provider to use Studio colors. A few components look
ever so slightly different now, but more in line with Studio.
This commit is contained in:
boatbomber
2024-01-22 11:22:21 -08:00
committed by GitHub
parent 73828af715
commit 1cc720ad34
7 changed files with 158 additions and 245 deletions

View File

@@ -109,9 +109,7 @@ function Dropdown:render()
}, {
DropArrow = e("ImageLabel", {
Image = if self.props.locked then Assets.Images.Dropdown.Locked else Assets.Images.Dropdown.Arrow,
ImageColor3 = self.openBinding:map(function(a)
return theme.Closed.IconColor:Lerp(theme.Open.IconColor, a)
end),
ImageColor3 = theme.IconColor,
ImageTransparency = self.props.transparency,
Size = UDim2.new(0, 18, 0, 18),