aboutsummaryrefslogtreecommitdiffstats
path: root/src/themes/legacy
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-29 21:12:16 -0600
committerLibravatar GitHub <noreply@github.com>2023-07-30 08:42:16 +0530
commit32f76b74a69ad4d60a014bf075c39517888436bc (patch)
tree753378cc30f52d1e0e51be64b5a83d39f08f39c8 /src/themes/legacy
parent6.4.1-nightly.15 [skip ci] (diff)
downloadferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.tar.gz
ferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.tar.zst
ferdium-app-32f76b74a69ad4d60a014bf075c39517888436bc.zip
refactor: various improvements (#1296)
* refactor: various improvements - enable no-use-before-define eslint rule - shuffle code to conform to no-use-before-define eslint rule - remove btoa dependency which is deprecated and replace with Buffer.from(string).toString('base64') - convert some any types into useful ones - add type annotations where possible - remove unused @types/expect.js - install @types/semver and ts-node which were missing - repair and rewrite add-crowdin-contributors script - remove export keyword from variables which are never consumed in another file - remove unity indicator hack where linked issue was closed - remove module declaration for kebab-case which is unused - add missing state interface for certain components - remove default exports for files which already have a named export - export IRecipePreview so it can be used throughout codebase - remove unused removeCacheForCallWith method from CachedRequest.ts - cleanup unused colors and styles inside legacy theme * - improve ColorPickerInput - fix invalid DOM nesting with div inside p in EditSettingsForm - fix progressbarAccentColor color picker not updating input when using slider - install missing @types/react-color dependency
Diffstat (limited to 'src/themes/legacy')
-rw-r--r--src/themes/legacy/index.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/themes/legacy/index.ts b/src/themes/legacy/index.ts
index ca3216e7f..9caefc698 100644
--- a/src/themes/legacy/index.ts
+++ b/src/themes/legacy/index.ts
@@ -1,10 +1,7 @@
1/* legacy config, injected into sass */ 1/* legacy config, injected into sass */
2export { DEFAULT_ACCENT_COLOR as themeBrandPrimary } from '../../config'; 2export { DEFAULT_ACCENT_COLOR as themeBrandPrimary } from '../../config';
3 3
4export const themeBrandSuccess = '#5cb85c';
5export const themeBrandInfo = '#5bc0de'; 4export const themeBrandInfo = '#5bc0de';
6export const themeBrandWarning = '#FF9F00';
7export const themeBrandDanger = '#d9534f';
8 5
9export const themeGrayDark = '#373a3c'; 6export const themeGrayDark = '#373a3c';
10export const themeGray = '#55595c'; 7export const themeGray = '#55595c';
@@ -15,14 +12,6 @@ export const themeGrayLightest = '#f7f7f9';
15export const themeBorderRadius = '6px'; 12export const themeBorderRadius = '6px';
16export const themeBorderRadiusSmall = '3px'; 13export const themeBorderRadiusSmall = '3px';
17 14
18export const themeSidebarWidth = '68px';
19
20export const themeTextColor = themeGrayDark;
21
22export const themeTransitionTime = '.5s';
23
24export const themeInsetShadow = 'inset 0 2px 5px rgba(0, 0, 0, .03)';
25
26export const darkThemeBlack = '#1A1A1A'; 15export const darkThemeBlack = '#1A1A1A';
27 16
28export const darkThemeGrayDarkest = '#1E1E1E'; 17export const darkThemeGrayDarkest = '#1E1E1E';