From 7e0cb53c69ace253631c904bd9afa27b95d83bb7 Mon Sep 17 00:00:00 2001 From: Alexey Safronov Date: Fri, 30 Aug 2024 12:55:46 +0400 Subject: [PATCH] Files: Theme: value of fileExstColor have been replaced with globalColor const --- packages/shared/themes/base.ts | 2 +- packages/shared/themes/dark.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index 43b6c3d89f..663e35a6c6 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -2044,7 +2044,7 @@ export const getBaseTheme = () => { linkColor: black, textColor: gray, }, - fileExstColor: "#a3a9ae", + fileExstColor: gray, row: { checkboxChecked: `linear-gradient(to right, ${lightGrayHover} 24px, ${grayLightMid} 24px)`, diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index 95bceb1596..46f9366063 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -2034,7 +2034,7 @@ const Dark: TTheme = { linkColor: white, textColor: grayDark, }, - fileExstColor: "#a3a9ae", + fileExstColor: gray, row: { checkboxChecked: `linear-gradient(to right, ${black} 24px, ${grayDarkStrong} 24px)`,