aboutsummaryrefslogtreecommitdiffstats
path: root/src/themes
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-29 10:12:36 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-29 13:42:36 +0530
commit63fc46fd3f61cdee254e574338e06af4d9bb4dcb (patch)
tree3cd8083fdaf78dfb1511f15eefe77e36eb1e0d69 /src/themes
parent5.6.3-nightly.46 [skip ci] (diff)
downloadferdium-app-63fc46fd3f61cdee254e574338e06af4d9bb4dcb.tar.gz
ferdium-app-63fc46fd3f61cdee254e574338e06af4d9bb4dcb.tar.zst
ferdium-app-63fc46fd3f61cdee254e574338e06af4d9bb4dcb.zip
chore: use caret for dependencies instead of locked versions (#2162)
- use caret for all dependencies except brittle ones like e.g. typescript - remove 'save-exact' true from .npmrc - fix various prettier formatting issues
Diffstat (limited to 'src/themes')
-rw-r--r--src/themes/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/themes/index.ts b/src/themes/index.ts
index 27be4d04b..2e8527818 100644
--- a/src/themes/index.ts
+++ b/src/themes/index.ts
@@ -16,6 +16,7 @@ export function theme(
16 : makeDefaultThemeConfig(brandColor); 16 : makeDefaultThemeConfig(brandColor);
17} 17}
18 18
19const defaultThemeConfigWithDefaultAccentColor = makeDefaultThemeConfig(themeBrandPrimary); 19const defaultThemeConfigWithDefaultAccentColor =
20 makeDefaultThemeConfig(themeBrandPrimary);
20 21
21export type Theme = typeof defaultThemeConfigWithDefaultAccentColor; 22export type Theme = typeof defaultThemeConfigWithDefaultAccentColor;