From 277ddfa9bedf992dd40e2e3d5d253280c98a8330 Mon Sep 17 00:00:00 2001 From: Wiktor Rudnicki <46418816+Rudy-Dev@users.noreply.github.com> Date: Fri, 15 Oct 2021 19:27:47 +0200 Subject: [PATCH] Themes colors modification (#482) * Modified colors of themes Colors match Roblox Studio theme. * Change cases of colors Colors' hexes have correct cases now. --- plugin/src/App/Theme.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/plugin/src/App/Theme.lua b/plugin/src/App/Theme.lua index d6d688b3..32578d3e 100644 --- a/plugin/src/App/Theme.lua +++ b/plugin/src/App/Theme.lua @@ -34,7 +34,7 @@ end local BRAND_COLOR = hexColor(0xE13835) local lightTheme = strict("LightTheme", { - BackgroundColor = hexColor(0xF0F0F0), + BackgroundColor = hexColor(0xFFFFFF), Button = { Solid = { ActionFillColor = hexColor(0xFFFFFF), @@ -67,7 +67,7 @@ local lightTheme = strict("LightTheme", { BackgroundColor = BRAND_COLOR, }, Inactive = { - IconColor = hexColor(0xCACACA), + IconColor = hexColor(0xEEEEEE), BorderColor = hexColor(0xAFAFAF), }, }, @@ -77,11 +77,11 @@ local lightTheme = strict("LightTheme", { }, BorderedContainer = { BorderColor = hexColor(0xCBCBCB), - BackgroundColor = hexColor(0xE0E0E0), + BackgroundColor = hexColor(0xEEEEEE), }, Spinner = { ForegroundColor = BRAND_COLOR, - BackgroundColor = hexColor(0xE0E0E0), + BackgroundColor = hexColor(0xEEEEEE), }, ConnectionDetails = { ProjectNameColor = hexColor(0x00000), @@ -108,7 +108,7 @@ local lightTheme = strict("LightTheme", { }) local darkTheme = strict("DarkTheme", { - BackgroundColor = hexColor(0x272727), + BackgroundColor = hexColor(0x2E2E2E), Button = { Solid = { ActionFillColor = hexColor(0xFFFFFF), @@ -147,15 +147,15 @@ local darkTheme = strict("DarkTheme", { }, AddressEntry = { TextColor = hexColor(0xFFFFFF), - PlaceholderColor = hexColor(0x717171) + PlaceholderColor = hexColor(0x8B8B8B) }, BorderedContainer = { BorderColor = hexColor(0x535353), - BackgroundColor = hexColor(0x323232), + BackgroundColor = hexColor(0x2B2B2B), }, Spinner = { ForegroundColor = BRAND_COLOR, - BackgroundColor = hexColor(0x323232), + BackgroundColor = hexColor(0x2B2B2B), }, ConnectionDetails = { ProjectNameColor = hexColor(0xFFFFFF), @@ -236,4 +236,4 @@ return { StudioProvider = StudioProvider, Consumer = Context.Consumer, with = with, -} \ No newline at end of file +}