diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-08-31 20:09:47 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-08-31 20:09:47 -0500 |
commit | 4aa8a58f2717f514a1262fcfc66ec805c03966fb (patch) | |
tree | eb526ca5d7c694fc566751e60266f5a2b069ec46 /src/view/lib/styles.ts | |
parent | b4802c6b5bd53744599115ceb35d80e34d25cd53 (diff) | |
download | voidsky-4aa8a58f2717f514a1262fcfc66ec805c03966fb.tar.zst |
Aesthetic improvements
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}, |