From fbf29e336fd6fe8a70793ba9da3928589bf597b8 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 2 Jul 2019 16:27:19 -0700 Subject: [PATCH] Adjust theme colors with new brand, not very pretty yet --- plugin/src/Components/ConnectPanel.lua | 4 ++-- plugin/src/Theme.lua | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugin/src/Components/ConnectPanel.lua b/plugin/src/Components/ConnectPanel.lua index 0d47eec1..8dd092d1 100644 --- a/plugin/src/Components/ConnectPanel.lua +++ b/plugin/src/Components/ConnectPanel.lua @@ -66,7 +66,7 @@ function ConnectPanel:render() Font = Theme.TitleFont, TextSize = 20, Text = "Address", - TextColor3 = Theme.AccentColor, + TextColor3 = Theme.PrimaryColor, }), Input = e(FormTextInput, { @@ -99,7 +99,7 @@ function ConnectPanel:render() Font = Theme.TitleFont, TextSize = 20, Text = "Port", - TextColor3 = Theme.AccentColor, + TextColor3 = Theme.PrimaryColor, }), Input = e(FormTextInput, { diff --git a/plugin/src/Theme.lua b/plugin/src/Theme.lua index 85473ea8..e2129096 100644 --- a/plugin/src/Theme.lua +++ b/plugin/src/Theme.lua @@ -4,9 +4,9 @@ local Theme = { TitleFont = Enum.Font.GothamBold, MainFont = Enum.Font.Gotham, - AccentColor = Color3.fromRGB(136, 0, 27), - AccentLightColor = Color3.fromRGB(210, 145, 157), - PrimaryColor = Color3.fromRGB(20, 20, 20), + AccentColor = Color3.fromRGB(225, 56, 53), + AccentLightColor = Color3.fromRGB(255, 146, 145), + PrimaryColor = Color3.fromRGB(48, 48, 48), SecondaryColor = Color3.fromRGB(235, 235, 235), LightTextColor = Color3.fromRGB(140, 140, 140), }