UNPKG

2.41 kBJavaScriptView Raw
1const config = {
2 target: 'universal',
3 rtl: false,
4 components: [
5 // Modals
6 'dialog',
7 'popup',
8 'login-screen',
9 'popover',
10 'actions',
11 'sheet',
12 'toast',
13
14 // Loaders
15 'preloader',
16 'progressbar',
17
18 // List Components
19 'sortable',
20 'swipeout',
21 'accordion',
22 'contacts-list',
23 'virtual-list',
24
25 // Timeline
26 'timeline',
27
28 // Tabs
29 'tabs',
30
31 // Panel
32 'panel',
33
34 // Card
35 'card',
36
37 // Chip
38 'chip',
39
40 // Form Components
41 'form',
42 'input',
43 'checkbox',
44 'radio',
45 'toggle',
46 'range',
47 'smart-select',
48
49 // Grid
50 'grid',
51
52 // Pickers
53 'calendar',
54 'picker',
55
56 // Page Components
57 'infinite-scroll',
58 'pull-to-refresh',
59 'lazy',
60
61 // Data table
62 'data-table',
63
64 // FAB
65 'fab',
66
67 // Searchbar
68 'searchbar',
69
70 // Messages
71 'messages',
72 'messagebar',
73
74 // Swiper
75 'swiper',
76
77 // Photo Browser
78 'photo-browser',
79
80 // Notifications
81 'notification',
82
83 // Autocomplete
84 'autocomplete',
85
86 // VI Video Ads
87 'vi',
88
89 // Typography
90 'typography'
91 ],
92 darkTheme: true,
93 themes: ['ios', 'md'],
94 ios: {
95 themeColor: '#007aff',
96 colors: {
97 red: '#ff3b30',
98 green: '#4cd964',
99 blue: '#007aff',
100 pink: '#ff2d55',
101 yellow: '#ffcc00',
102 orange: '#ff9500',
103 gray: '#8e8e93',
104 white: '#ffffff',
105 black: '#000000'
106 /*
107 purple: '#5856d6',
108 deeppurple: '#673ab7',
109 indigo: '#3f51b5',
110 lightblue: '#5ac8fa',
111 cyan: '#00bcd4',
112 teal: '#009688',
113 lightgreen: '#8bc34a',
114 lime: '#cddc39',
115 amber: '#ffc107',
116 deeporange: '#ff5722',
117 brown: '#795548',
118 bluegray: '#607d8b',
119 */
120 }
121 },
122 md: {
123 themeColor: '#2196f3',
124 colors: {
125 red: '#f44336',
126 green: '#4caf50',
127 blue: '#2196f3',
128 pink: '#e91e63',
129 yellow: '#ffeb3b',
130 orange: '#ff9800',
131 gray: '#9e9e9e',
132 white: '#ffffff',
133 black: '#000000'
134 /*
135 purple: '#9c27b0',
136 deeppurple: '#673ab7',
137 indigo: '#3f51b5',
138 lightblue: '#03a9f4',
139 cyan: '#00bcd4',
140 teal: '#009688',
141 lightgreen: '#8bc34a',
142 lime: '#cddc39',
143 amber: '#ffc107',
144 deeporange: '#ff5722',
145 brown: '#795548',
146 bluegray: '#607d8b',
147 */
148 }
149 }
150}
151
152module.exports = config