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/ThemeContext.tsx | |
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/ThemeContext.tsx')
-rw-r--r-- | src/lib/ThemeContext.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/ThemeContext.tsx b/src/lib/ThemeContext.tsx index bcfc076f4..ef17c1e7a 100644 --- a/src/lib/ThemeContext.tsx +++ b/src/lib/ThemeContext.tsx @@ -28,6 +28,11 @@ export type ShapeName = 'button' | 'bigButton' | 'smallButton' export type Shapes = Record<ShapeName, ViewStyle> export type TypographyVariant = + | '2xl-thin' + | '2xl' + | '2xl-medium' + | '2xl-bold' + | '2xl-heavy' | 'xl-thin' | 'xl' | 'xl-medium' |