File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,110 @@
|
||||
export const PrimaryTheme = {
|
||||
primary_theme:true,
|
||||
$primary_color:'#1f7dbc',
|
||||
$secondary_color_light:'#eaf3fa',
|
||||
$secondary_color_dark:'#68a0f3',
|
||||
$gradient1:'#63ccf9',
|
||||
$gradient2:'#00a4eb',
|
||||
$tertiary_color:'#999999',
|
||||
$fourth_color:'#b5dbf9',
|
||||
$fifth_color:'#b5dbf9',
|
||||
$bg_color:'#fff',
|
||||
$accent_color:'#fff',
|
||||
$accent_color2:'#131313',
|
||||
$status_bar_color:'#eaf3fa',
|
||||
$placeholder_color:'#232323',
|
||||
$icon_color:'#6B84F6',
|
||||
$text_color:'#454545',
|
||||
$text_color_light2:'#efefef',
|
||||
$text_color_light3:'#ADD8E6',
|
||||
$text_color_light:'#9e9e9e',
|
||||
$text_color_dark:'#161616',
|
||||
$text_color_900:'#000000',
|
||||
$text_color_500:'#999999',
|
||||
$text_color_300:'#666666',
|
||||
$text_color_700:'#333333',
|
||||
$text_color_100:'#ffffff',
|
||||
$red:'#e3051f',
|
||||
$red_light100:'#faeaea',
|
||||
$orange:'#f1a015',
|
||||
$sidemenuColor:'#92a3fd',
|
||||
$card_colorYellowLight:'#e4d9be',
|
||||
$card_colorYellowDark:'#e1cc97',
|
||||
$star_color:'#FFDF00',
|
||||
$text_colorblack:'#000',
|
||||
$card_colorRedDark:'#f83e3e',
|
||||
$green:'#00ab1b',
|
||||
}
|
||||
|
||||
export const MainThemeLight = {
|
||||
project_theme:true,
|
||||
$primary_color:'#1f7dbc',
|
||||
$secondary_color_light:'#eaf3fa',
|
||||
$secondary_color_dark:'#68a0f3',
|
||||
$gradient1:'#63ccf9',
|
||||
$gradient2:'#00a4eb',
|
||||
$tertiary_color:'#999999',
|
||||
$fourth_color:'#b5dbf9',
|
||||
$fifth_color:'#b5dbf9',
|
||||
$bg_color:'#fff',
|
||||
$accent_color:'#fff',
|
||||
$accent_color2:'#131313',
|
||||
$status_bar_color:'#eaf3fa',
|
||||
$placeholder_color:'#232323',
|
||||
$icon_color:'#6B84F6',
|
||||
$text_color:'#454545',
|
||||
$text_color_light:'#9e9e9e',
|
||||
$text_color_light2:'#efefef',
|
||||
$text_color_light3:'#ADD8E6',
|
||||
$text_color_dark:'#161616',
|
||||
$text_color_900:'#000000',
|
||||
$text_color_500:'#999999',
|
||||
$text_color_300:'#666666',
|
||||
$text_color_700:'#333333',
|
||||
$text_color_100:'#ffffff',
|
||||
$red:'#e3051f',
|
||||
$red_light100:'#faeaea',
|
||||
$orange:'#f1a015',
|
||||
$sidemenuColor:'#92a3fd',
|
||||
$card_colorYellowLight:'#e4d9be',
|
||||
$card_colorYellowDark:'#e1cc97',
|
||||
$text_colorblack:'#000',
|
||||
$card_colorRedDark:'#f83e3e',
|
||||
$green:'#00ab1b',
|
||||
}
|
||||
|
||||
export const DarkTheme = {
|
||||
dark_theme:true,
|
||||
$primary_color:'#6B84F6',
|
||||
$secondary_color_light:'#999999',
|
||||
$secondary_color_dark:'#999999',
|
||||
$gradient2:'#05b4ff',
|
||||
$tertiary_color:'#999999',
|
||||
$fourth_color:'#b5dbf9',
|
||||
$fifth_color:'#b5dbf9',
|
||||
$bg_color:'#fff',
|
||||
$accent_color:'#fff',
|
||||
$accent_color2:'#131313',
|
||||
$text_color_light3:'#ADD8E6',
|
||||
$status_bar_color:'#6B84F6',
|
||||
$placeholder_color:'#9e9e9e',
|
||||
$icon_color:'#6B84F6',
|
||||
$text_color:'#6B84F6',
|
||||
$text_color_light:'#6B84F6',
|
||||
$text_color_light2:'#efefef',
|
||||
$text_color_dark:'#6B84F6',
|
||||
$text_color_900:'#000000',
|
||||
$text_color_500:'#999999',
|
||||
$text_color_300:'#666666',
|
||||
$text_color_700:'#333333',
|
||||
$text_color_100:'#ffffff',
|
||||
$red:'#e3051f',
|
||||
$red_light100:'#faeaea',
|
||||
$orange:'#f1a015',
|
||||
$sidemenuColor:'#92a3fd',
|
||||
$card_colorYellowLight:'#e4d9be',
|
||||
$card_colorYellowDark:'#e1cc97',
|
||||
$text_colorblack:'#000',
|
||||
$card_colorRedDark:'#f83e3e',
|
||||
$green:'#00ab1b',
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
import {Dimensions, StyleSheet} from 'react-native';
|
||||
|
||||
export default StyleSheet.create({
|
||||
tabContainer: {
|
||||
flexDirection: 'row',
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: '#ccc',
|
||||
},
|
||||
tab: {
|
||||
flex: 1,
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
padding: 10,
|
||||
},
|
||||
activeTab: {
|
||||
borderBottomWidth: 2,
|
||||
borderBottomColor: '#3498db',
|
||||
},
|
||||
tabText: {
|
||||
fontSize: 16,
|
||||
fontWeight: 'bold',
|
||||
color: '#333',
|
||||
},
|
||||
contentContainer: {
|
||||
width: Dimensions.get('window').width,
|
||||
padding: 8,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user