From 2fad3b588ace71ee11792b1377f25544e493288c Mon Sep 17 00:00:00 2001 From: boatbomber Date: Wed, 2 Aug 2023 17:47:03 -0700 Subject: [PATCH] Fix theme (#763) --- plugin/src/App/Theme.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/src/App/Theme.lua b/plugin/src/App/Theme.lua index fb4af8c5..2bb355d9 100644 --- a/plugin/src/App/Theme.lua +++ b/plugin/src/App/Theme.lua @@ -64,7 +64,7 @@ local lightTheme = strict("LightTheme", { }, }, Dropdown = { - TextColor = Color3.fromHex("00000"), + TextColor = Color3.fromHex("000000"), BorderColor = Color3.fromHex("AFAFAF"), BackgroundColor = Color3.fromHex("EEEEEE"), Open = { @@ -94,8 +94,8 @@ local lightTheme = strict("LightTheme", { Warning = Color3.fromHex("FF8E3C"), }, ConnectionDetails = { - ProjectNameColor = Color3.fromHex("00000"), - AddressColor = Color3.fromHex("00000"), + ProjectNameColor = Color3.fromHex("000000"), + AddressColor = Color3.fromHex("000000"), DisconnectColor = BRAND_COLOR, }, Settings = { @@ -114,7 +114,7 @@ local lightTheme = strict("LightTheme", { VersionColor = Color3.fromHex("727272"), }, Notification = { - InfoColor = Color3.fromHex("00000"), + InfoColor = Color3.fromHex("000000"), CloseColor = BRAND_COLOR, }, ErrorColor = Color3.fromHex("000000"),