theme
This commit is contained in:
25
components/themeColors.tsx
Normal file
25
components/themeColors.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
export const lightTheme = {
|
||||
colors: {
|
||||
text: '#000000',
|
||||
text2: '#505050',
|
||||
c0: '#FFFFFF',
|
||||
c1: '#F0F0F0',
|
||||
c2: '#E0E0E0',
|
||||
c3: '#D0D0D0',
|
||||
c4: '#C0C0C0',
|
||||
c5: '#B0B0B0',
|
||||
},
|
||||
};
|
||||
|
||||
export const darkTheme = {
|
||||
colors: {
|
||||
text: '#FFFFFF',
|
||||
text2: '#B0B0B0',
|
||||
c0:'#000000',
|
||||
c1: '#101010',
|
||||
c2: '#202020',
|
||||
c3: '#303030',
|
||||
c4: '#404040',
|
||||
c5: '#505050',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user