diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-06 10:54:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 10:54:56 -0600 |
commit | eeac64cc88f37fe561e3c4361f40681fbe2f6d99 (patch) | |
tree | 314f889b8e283cd9f9b4dd416a849cee1ce7d82e /src/lib/themes.ts | |
parent | 159615990d95aee47a983fd704a87443ec2f29b1 (diff) | |
download | voidsky-eeac64cc88f37fe561e3c4361f40681fbe2f6d99.tar.zst |
Look & feel updates: replace the "FAB" with a footer menu item, update the side menu (#263)
* Remove old tab controls from the mobile shell * Add 'compose' and 'profile' to the footer; remove the FAB * Fix lint * Tune the footer icons * Tune the 'current' state of footer icons * Add 2xl text styles * Tune the footer icons a bit more * Fix lint * More footer tuning
Diffstat (limited to 'src/lib/themes.ts')
-rw-r--r-- | src/lib/themes.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/themes.ts b/src/lib/themes.ts index c544eebf2..aa166e323 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -82,6 +82,31 @@ export const defaultTheme: Theme = { }, }, typography: { + '2xl-thin': { + fontSize: 18, + letterSpacing: 0.25, + fontWeight: '300', + }, + '2xl': { + fontSize: 18, + letterSpacing: 0.25, + fontWeight: '400', + }, + '2xl-medium': { + fontSize: 18, + letterSpacing: 0.25, + fontWeight: '500', + }, + '2xl-bold': { + fontSize: 18, + letterSpacing: 0.25, + fontWeight: '700', + }, + '2xl-heavy': { + fontSize: 18, + letterSpacing: 0.25, + fontWeight: '800', + }, 'xl-thin': { fontSize: 17, letterSpacing: 0.25, |