diff options
Diffstat (limited to 'src/view/lib/styles.ts')
-rw-r--r-- | src/view/lib/styles.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts index 236ba67ca..5d624b83e 100644 --- a/src/view/lib/styles.ts +++ b/src/view/lib/styles.ts @@ -17,6 +17,12 @@ export const colors = { blue4: '#0062bd', blue5: '#034581', + red1: '#ffe6f2', + red2: '#fba2ce', + red3: '#ec4899', + red4: '#d1106f', + red5: '#97074e', + pink1: '#f8ccff', pink2: '#e966ff', pink3: '#db00ff', @@ -36,6 +42,10 @@ export const colors = { green5: '#082b03', } +export const gradients = { + primary: {start: '#db00ff', end: '#ff007a'}, +} + export const s = StyleSheet.create({ // font weights fw600: {fontWeight: '600'}, @@ -128,6 +138,12 @@ export const s = StyleSheet.create({ blue4: {color: colors.blue4}, blue5: {color: colors.blue5}, + red1: {color: colors.red1}, + red2: {color: colors.red2}, + red3: {color: colors.red3}, + red4: {color: colors.red4}, + red5: {color: colors.red5}, + pink1: {color: colors.pink1}, pink2: {color: colors.pink2}, pink3: {color: colors.pink3}, |