Theme adjustments

This commit is contained in:
Lucien Greathouse
2019-07-02 16:29:59 -07:00
parent fbf29e336f
commit d07571ea7e
2 changed files with 4 additions and 4 deletions

View File

@@ -57,8 +57,8 @@ function FormTextInput:render()
TextSize = TEXT_SIZE,
Text = value,
PlaceholderText = shownPlaceholder,
PlaceholderColor3 = Theme.AccentLightColor,
TextColor3 = Theme.AccentColor,
PlaceholderColor3 = Theme.LightTextColor,
TextColor3 = Theme.PrimaryColor,
[Roact.Change.Text] = function(rbx)
onValueChange(rbx.Text)

View File

@@ -6,9 +6,9 @@ local Theme = {
AccentColor = Color3.fromRGB(225, 56, 53),
AccentLightColor = Color3.fromRGB(255, 146, 145),
PrimaryColor = Color3.fromRGB(48, 48, 48),
PrimaryColor = Color3.fromRGB(64, 64, 64),
SecondaryColor = Color3.fromRGB(235, 235, 235),
LightTextColor = Color3.fromRGB(140, 140, 140),
LightTextColor = Color3.fromRGB(160, 160, 160),
}
setmetatable(Theme, {