summaryrefslogtreecommitdiff
path: root/app_expo/components/text/text.presets.ts
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-07-23 15:24:35 +0200
committerThomas F. K. Jorna <[email protected]>2021-07-23 15:24:35 +0200
commit356381d14cb1ff3cbd39c7e396dd14379336451b (patch)
treea03e9b2534600bde7b3b781411b5b03f8134904b /app_expo/components/text/text.presets.ts
parent7aa007f158a52b41494049a1202938fc97813ec1 (diff)
parent73308af061af5e17ac7d4a73fa027a2f303c70dd (diff)
resolving merge conflicts
Diffstat (limited to 'app_expo/components/text/text.presets.ts')
-rw-r--r--app_expo/components/text/text.presets.ts48
1 files changed, 0 insertions, 48 deletions
diff --git a/app_expo/components/text/text.presets.ts b/app_expo/components/text/text.presets.ts
deleted file mode 100644
index 4693417..0000000
--- a/app_expo/components/text/text.presets.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-import { TextStyle } from 'react-native'
-import { color, typography } from '../../theme'
-
-/**
- * All text will start off looking like this.
- */
-const BASE: TextStyle = {
- fontFamily: typography.primary,
- color: color.text,
- fontSize: 15,
-}
-
-/**
- * All the variations of text styling within the app.
- *
- * You want to customize these to whatever you need in your app.
- */
-export const presets = {
- /**
- * The default text styles.
- */
- default: BASE,
-
- /**
- * A bold version of the default text.
- */
- bold: { ...BASE, fontWeight: 'bold' } as TextStyle,
-
- /**
- * Large headers.
- */
- header: { ...BASE, fontSize: 24, fontWeight: 'bold' } as TextStyle,
-
- /**
- * Field labels that appear on forms above the inputs.
- */
- fieldLabel: { ...BASE, fontSize: 13, color: color.dim } as TextStyle,
-
- /**
- * A smaller piece of secondard information.
- */
- secondary: { ...BASE, fontSize: 9, color: color.dim } as TextStyle,
-}
-
-/**
- * A list of preset names.
- */
-export type TextPresets = keyof typeof presets