-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.txt
More file actions
6141 lines (6059 loc) · 246 KB
/
output.txt
File metadata and controls
6141 lines (6059 loc) · 246 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This file is a merged representation of a subset of the codebase, containing specifically included files and files not matching ignore patterns, combined into a single document by Repomix.
The content has been processed where empty lines have been removed, line numbers have been added.
<file_summary>
This section contains a summary of this file.
<purpose>
This file contains a packed representation of a subset of the repository's contents that is considered the most important context.
It is designed to be easily consumable by AI systems for analysis, code review,
or other automated processes.
</purpose>
<file_format>
The content is organized as follows:
1. This summary section
2. Repository information
3. Directory structure
4. Repository files (if enabled)
5. Multiple file entries, each consisting of:
- File path as an attribute
- Full contents of the file
</file_format>
<usage_guidelines>
- This file should be treated as read-only. Any changes should be made to the
original repository files, not this packed version.
- When processing this file, use the file path to distinguish
between different files in the repository.
- Be aware that this file may contain sensitive information. Handle it with
the same level of security as you would the original repository.
</usage_guidelines>
<notes>
- Some files may have been excluded based on .gitignore rules and Repomix's configuration
- Binary files are not included in this packed representation. Please refer to the Repository Structure section for a complete list of file paths, including binary files
- Only files matching these patterns are included: **/*
- Files matching these patterns are excluded: **/*.log, **/uv.lock, **/package-lock.json, **/.env, **/Cargo.lock, **/node_modules, **/target, **/dist, **/build, **/output.txt, **/yarn.lock, **/uv.lock, **/package-lock.json, **/.env, **/Cargo.lock, **/node_modules, **/target, **/dist, **/build, **/output.txt, **/yarn.lock, **/.private-journal
- Files matching patterns in .gitignore are excluded
- Files matching default ignore patterns are excluded
- Empty lines have been removed from all files
- Line numbers have been added to the beginning of each line
- Files are sorted by Git change count (files with more changes are at the bottom)
</notes>
</file_summary>
<directory_structure>
.github/
workflows/
claude-code-review.yml
claude.yml
expo-lint.yml
expo-test.yml
firebase-hosting-merge.yml
firebase-hosting-pull-request.yml
packages/
chat/
app/
__tests__/
accessibility.test.tsx
BottomBar.test.tsx
HistoryScreen.test.tsx
HomeScreen.test.tsx
storage.test.ts
TabBar.test.tsx
components/
BigTextDisplay.tsx
BottomBar.tsx
ErrorBoundary.tsx
HomeScreen.tsx
InstallPWA.tsx
LanguageSelector.tsx
PageLayout.tsx
TabBar.tsx
WelcomeModal.tsx
context/
SettingsContext.tsx
TextContext.tsx
TextReducer.ts
hooks/
useIsMounted.ts
i18n/
translations/
bn.ts
de.ts
en.ts
es.ts
fr.ts
hi.ts
id.ts
index.ts
ja.ts
ko.ts
pt.ts
zh_TW.ts
zh.ts
config.ts
themes/
index.ts
utils/
languageStorage.ts
registerServiceWorker.ts
settingsStorage.ts
storage.ts
storageUtils.ts
_layout.tsx
+html.tsx
about.tsx
help.tsx
history.tsx
index.tsx
settings.tsx
assets/
fonts/
SpaceMono-Regular.ttf
images/
adaptive-icon.png
favicon.png
icon.png
partial-react-logo.png
splash-icon.png
public/
imgs/
logo/
orbiting-icon-appstore.png
orbiting-icon-transparentbg.png
orbiting-icon.png
orbiting-icon.svg
splashscreens/
ipad_splash.png
ipadpro1_splash.png
ipadpro2_splash.png
ipadpro3_splash.png
iphone5_splash.png
iphone6_splash.png
iphoneplus_splash.png
iphonex_splash.png
iphonexr_splash.png
iphonexsmax_splash.png
android-icon-144x144.png
android-icon-192x192.png
android-icon-36x36.png
android-icon-48x48.png
android-icon-72x72.png
android-icon-96x96.png
apple-icon-114x114.png
apple-icon-120x120.png
apple-icon-144x144.png
apple-icon-152x152.png
apple-icon-180x180.png
apple-icon-57x57.png
apple-icon-60x60.png
apple-icon-72x72.png
apple-icon-76x76.png
apple-icon-precomposed.png
apple-icon.png
favicon-16x16.png
favicon-32x32.png
favicon-96x96.png
favicon.ico
ms-icon-144x144.png
ms-icon-150x150.png
ms-icon-310x310.png
ms-icon-70x70.png
og.png
browserconfig.xml
manifest.json
.eslintrc.js
.gitignore
app.json
biome.json
jest.setup.js
package.json
README.md
tsconfig.json
workbox-config.js
hugo/
layouts/
_default/
baseof.html
.firebaserc
.gitignore
firebase.json
LICENSE
Makefile
netlify.toml
README.md
wrangler.toml
</directory_structure>
<files>
This section contains the contents of the repository's files.
<file path="packages/chat/app/__tests__/BottomBar.test.tsx">
1: import { render, fireEvent } from '@testing-library/react-native';
2: import BottomBar from '../components/BottomBar';
3: describe('BottomBar', () => {
4: it('calls onClearPress when clear button is pressed', () => {
5: const onClearPress = jest.fn();
6: const onHistoryPress = jest.fn();
7: const { getByTestId } = render(
8: <BottomBar
9: onClearPress={onClearPress}
10: onHistoryPress={onHistoryPress}
11: />
12: );
13: fireEvent.press(getByTestId('clear-button'));
14: expect(onClearPress).toHaveBeenCalled();
15: });
16: it('calls onHistoryPress when history button is pressed', () => {
17: const onClearPress = jest.fn();
18: const onHistoryPress = jest.fn();
19: const { getByTestId } = render(
20: <BottomBar
21: onClearPress={onClearPress}
22: onHistoryPress={onHistoryPress}
23: />
24: );
25: fireEvent.press(getByTestId('history-button'));
26: expect(onHistoryPress).toHaveBeenCalled();
27: });
28: });
</file>
<file path="packages/chat/app/__tests__/TabBar.test.tsx">
1: import { render, fireEvent } from '@testing-library/react-native';
2: import TabBar from '../components/TabBar';
3: import { useRouter, usePathname } from 'expo-router';
4: // Mock expo-router
5: jest.mock('expo-router', () => ({
6: useRouter: jest.fn(),
7: usePathname: jest.fn()
8: }));
9: describe('TabBar', () => {
10: const mockRouter = { push: jest.fn() };
11: beforeEach(() => {
12: (useRouter as jest.Mock).mockReturnValue(mockRouter);
13: });
14: it('is hidden on home screen', () => {
15: (usePathname as jest.Mock).mockReturnValue('/');
16: const { container } = render(<TabBar />);
17: expect(container.children).toHaveLength(0);
18: });
19: it('is visible on other screens', () => {
20: (usePathname as jest.Mock).mockReturnValue('/history');
21: const { getByTestId } = render(<TabBar />);
22: expect(getByTestId('home-tab')).toBeTruthy();
23: });
24: it('navigates to home when home tab is pressed', () => {
25: (usePathname as jest.Mock).mockReturnValue('/history');
26: const { getByTestId } = render(<TabBar />);
27: fireEvent.press(getByTestId('home-tab'));
28: expect(mockRouter.push).toHaveBeenCalledWith('/');
29: });
30: });
</file>
<file path="packages/chat/app/components/PageLayout.tsx">
1: import React from "react";
2: import { StyleSheet, View, ScrollView, ActivityIndicator } from "react-native";
3: import { Surface, Text } from "react-native-paper";
4: import TabBar from "./TabBar";
5: // Simple error boundary
6: class ErrorBoundary extends React.Component {
7: state = { hasError: false, error: null };
8: static getDerivedStateFromError(error) {
9: return { hasError: true, error };
10: }
11: render() {
12: if (this.state.hasError) {
13: return (
14: <View style={styles.errorContainer}>
15: <Text>Something went wrong</Text>
16: <Text>{this.state.error?.message}</Text>
17: </View>
18: );
19: }
20: return this.props.children;
21: }
22: }
23: interface PageLayoutProps {
24: children: React.ReactNode;
25: scrollable?: boolean;
26: loading?: boolean;
27: }
28: export default function PageLayout({
29: children,
30: scrollable = false,
31: loading = false,
32: }: PageLayoutProps) {
33: const renderContent = () => {
34: const content = (
35: <View style={styles.contentWrapper}>
36: {loading ? (
37: <View style={styles.loadingContainer}>
38: <ActivityIndicator size="large" />
39: </View>
40: ) : (
41: <Surface style={styles.content}>{children}</Surface>
42: )}
43: </View>
44: );
45: if (scrollable) {
46: return (
47: <ScrollView
48: style={styles.scrollView}
49: contentContainerStyle={styles.scrollViewContent}
50: >
51: {content}
52: </ScrollView>
53: );
54: }
55: return content;
56: };
57: return (
58: <ErrorBoundary>
59: <View style={styles.root}>
60: <View style={styles.container}>
61: <View style={styles.mainContent}>{renderContent()}</View>
62: <View style={styles.tabBarContainer}>
63: <TabBar />
64: </View>
65: </View>
66: </View>
67: </ErrorBoundary>
68: );
69: }
70: const styles = StyleSheet.create({
71: root: {
72: flex: 1,
73: width: "100%",
74: height: "100%",
75: },
76: container: {
77: flex: 1,
78: width: "100%",
79: height: "100%",
80: display: "flex",
81: flexDirection: "column",
82: },
83: mainContent: {
84: flex: 1,
85: width: "100%",
86: },
87: contentWrapper: {
88: flex: 1,
89: width: "100%",
90: height: "100%",
91: },
92: content: {
93: flex: 1,
94: width: "100%",
95: height: "100%",
96: padding: 20,
97: },
98: scrollView: {
99: flex: 1,
100: width: "100%",
101: },
102: scrollViewContent: {
103: flexGrow: 1,
104: },
105: loadingContainer: {
106: flex: 1,
107: justifyContent: "center",
108: alignItems: "center",
109: },
110: errorContainer: {
111: flex: 1,
112: justifyContent: "center",
113: alignItems: "center",
114: padding: 20,
115: },
116: tabBarContainer: {
117: width: "100%",
118: borderTopWidth: 1,
119: borderTopColor: "#e0e0e0",
120: },
121: });
</file>
<file path="packages/chat/app/context/SettingsContext.tsx">
1: import React, { createContext, useContext, useEffect, useState } from 'react';
2: import { ColorSchemeName, useColorScheme as useDeviceColorScheme } from 'react-native';
3: import { MD3Theme } from 'react-native-paper';
4: import { loadSettings, saveSettings } from '../utils/settingsStorage';
5: import { themes } from '../themes';
6: export type ThemeType = 'classic' | 'ocean' | 'forest' | 'sunset' | 'mono' | 'neon' | 'contrast' | 'candy' | 'mint';
7: export interface CustomTheme extends MD3Theme {
8: custom: {
9: tabBar: string;
10: tabBarActive: string;
11: }
12: }
13: interface Settings {
14: colorScheme: ColorSchemeName | 'system';
15: startingFontSize: number;
16: theme: ThemeType;
17: shakeMode: 'clear' | 'flash' | 'none';
18: isInstalled?: boolean;
19: }
20: interface SettingsContextType extends Settings {
21: updateSettings: (settings: Partial<Settings>) => void;
22: resetSettings: () => void;
23: currentTheme: CustomTheme;
24: }
25: const defaultSettings: Settings = {
26: colorScheme: 'system',
27: startingFontSize: 24,
28: theme: 'mono',
29: shakeMode: 'none',
30: isInstalled: false,
31: };
32: const SettingsContext = createContext<SettingsContextType | undefined>(undefined);
33: export function SettingsProvider({ children }: { children: React.ReactNode }) {
34: const deviceColorScheme = useDeviceColorScheme();
35: const [settings, setSettings] = useState<Settings>(defaultSettings);
36: useEffect(() => {
37: loadSettings().then((savedSettings) => {
38: if (savedSettings) {
39: setSettings(savedSettings);
40: }
41: }).catch(err => {
42: console.error('Failed to load settings:', err);
43: setSettings(defaultSettings);
44: });
45: }, []);
46: const updateSettings = async (newSettings: Partial<Settings>) => {
47: const updatedSettings = { ...settings, ...newSettings };
48: setSettings(updatedSettings);
49: await saveSettings(updatedSettings);
50: };
51: const resetSettings = async () => {
52: setSettings(defaultSettings);
53: await saveSettings(defaultSettings);
54: };
55: const effectiveColorScheme = settings.colorScheme === 'system'
56: ? deviceColorScheme
57: : settings.colorScheme;
58: const currentTheme = themes[settings.theme][effectiveColorScheme || 'light'];
59: return (
60: <SettingsContext.Provider
61: value={{
62: ...settings,
63: updateSettings,
64: resetSettings,
65: currentTheme: currentTheme,
66: }}
67: >
68: {children}
69: </SettingsContext.Provider>
70: );
71: }
72: export function useSettings() {
73: const context = useContext(SettingsContext);
74: if (context === undefined) {
75: throw new Error('useSettings must be used within a SettingsProvider');
76: }
77: return context;
78: }
</file>
<file path="packages/chat/app/hooks/useIsMounted.ts">
1: import { useCallback, useEffect, useRef } from 'react';
2: export function useIsMounted() {
3: const mountedRef = useRef(true);
4: useEffect(() => {
5: mountedRef.current = true;
6: return () => {
7: mountedRef.current = false;
8: };
9: }, []);
10: return useCallback(() => mountedRef.current, []);
11: }
</file>
<file path="packages/chat/app/themes/index.ts">
1: import { CustomTheme } from '../context/SettingsContext';
2: import type { ThemeType } from '../context/SettingsContext';
3: export const THEMES: { label: string; value: ThemeType; colors: { primary: string; secondary: string } }[] = [
4: { label: 'Mono', value: 'mono', colors: { primary: '#000000', secondary: '#ffffff' } },
5: { label: 'Contrast', value: 'contrast', colors: { primary: '#ffff00', secondary: '#000000' } },
6: { label: 'Neon', value: 'neon', colors: { primary: '#00ff00', secondary: '#ff00ff' } },
7: { label: 'Candy', value: 'candy', colors: { primary: '#ff1493', secondary: '#9932cc' } },
8: { label: 'Classic', value: 'classic', colors: { primary: '#000000', secondary: '#666666' } },
9: { label: 'Sunset', value: 'sunset', colors: { primary: '#5b1a1a', secondary: '#8e6c6c' } },
10: { label: 'Forest', value: 'forest', colors: { primary: '#1b4d1b', secondary: '#6b8e6b' } },
11: { label: 'Ocean', value: 'ocean', colors: { primary: '#1a3c5b', secondary: '#6c8eae' } },
12: { label: 'Mint', value: 'mint', colors: { primary: '#3eb489', secondary: '#40826d' } },
13: ];
14: export const themes: Record<ThemeType, { light: CustomTheme; dark: CustomTheme }> = {
15: classic: {
16: light: {
17: colors: {
18: primary: '#000000',
19: onPrimary: '#ffffff',
20: primaryContainer: '#f5f5f5',
21: onPrimaryContainer: '#000000',
22: secondary: '#666666',
23: onSecondary: '#ffffff',
24: secondaryContainer: '#f0f0f0',
25: onSecondaryContainer: '#1a1a1a',
26: background: '#ffffff',
27: onBackground: '#000000',
28: surface: '#ffffff',
29: onSurface: '#000000',
30: surfaceVariant: '#f5f5f5',
31: onSurfaceVariant: '#000000',
32: outline: '#666666',
33: elevation: {
34: level0: 'transparent',
35: level1: '#f5f5f5',
36: level2: '#ebebeb',
37: level3: '#e0e0e0',
38: level4: '#d6d6d6',
39: level5: '#cccccc',
40: }
41: },
42: custom: {
43: tabBar: '#f5f5f5',
44: tabBarActive: '#000000',
45: }
46: },
47: dark: {
48: colors: {
49: primary: '#ffffff',
50: onPrimary: '#000000',
51: primaryContainer: '#1e1e1e',
52: onPrimaryContainer: '#ffffff',
53: secondary: '#a0a0a0',
54: onSecondary: '#000000',
55: secondaryContainer: '#2a2a2a',
56: onSecondaryContainer: '#ffffff',
57: background: '#121212',
58: onBackground: '#ffffff',
59: surface: '#121212',
60: onSurface: '#ffffff',
61: surfaceVariant: '#1e1e1e',
62: onSurfaceVariant: '#ffffff',
63: outline: '#a0a0a0',
64: elevation: {
65: level0: 'transparent',
66: level1: '#1e1e1e',
67: level2: '#232323',
68: level3: '#282828',
69: level4: '#2d2d2d',
70: level5: '#323232',
71: }
72: },
73: custom: {
74: tabBar: '#1e1e1e',
75: tabBarActive: '#ffffff',
76: }
77: }
78: },
79: ocean: {
80: light: {
81: colors: {
82: primary: '#1a3c5b',
83: onPrimary: '#ffffff',
84: primaryContainer: '#e1f1ff',
85: onPrimaryContainer: '#1a3c5b',
86: secondary: '#6c8eae',
87: onSecondary: '#ffffff',
88: secondaryContainer: '#e1f1ff',
89: onSecondaryContainer: '#1a3c5b',
90: background: '#f0f8ff',
91: onBackground: '#1a3c5b',
92: surface: '#f0f8ff',
93: onSurface: '#1a3c5b',
94: surfaceVariant: '#e1f1ff',
95: onSurfaceVariant: '#1a3c5b',
96: outline: '#6c8eae',
97: elevation: {
98: level0: 'transparent',
99: level1: '#e1f1ff',
100: level2: '#d2e8ff',
101: level3: '#c3dfff',
102: level4: '#b4d6ff',
103: level5: '#a5cdff',
104: }
105: },
106: custom: {
107: tabBar: '#e1f1ff',
108: tabBarActive: '#1a3c5b',
109: }
110: },
111: dark: {
112: colors: {
113: primary: '#e0f0ff',
114: onPrimary: '#0d1b2a',
115: primaryContainer: '#162635',
116: onPrimaryContainer: '#e0f0ff',
117: secondary: '#8ab4e8',
118: onSecondary: '#0d1b2a',
119: secondaryContainer: '#162635',
120: onSecondaryContainer: '#e0f0ff',
121: background: '#0d1b2a',
122: onBackground: '#e0f0ff',
123: surface: '#0d1b2a',
124: onSurface: '#e0f0ff',
125: surfaceVariant: '#162635',
126: onSurfaceVariant: '#e0f0ff',
127: outline: '#8ab4e8',
128: elevation: {
129: level0: 'transparent',
130: level1: '#162635',
131: level2: '#1b2f40',
132: level3: '#20384b',
133: level4: '#254156',
134: level5: '#2a4a61',
135: }
136: },
137: custom: {
138: tabBar: '#162635',
139: tabBarActive: '#e0f0ff',
140: }
141: }
142: },
143: forest: {
144: light: {
145: colors: {
146: primary: '#1b4d1b',
147: onPrimary: '#ffffff',
148: primaryContainer: '#e6ffe6',
149: onPrimaryContainer: '#1b4d1b',
150: secondary: '#6b8e6b',
151: onSecondary: '#ffffff',
152: secondaryContainer: '#e6ffe6',
153: onSecondaryContainer: '#1b4d1b',
154: background: '#f5fff5',
155: onBackground: '#1b4d1b',
156: surface: '#f5fff5',
157: onSurface: '#1b4d1b',
158: surfaceVariant: '#e6ffe6',
159: onSurfaceVariant: '#1b4d1b',
160: outline: '#6b8e6b',
161: elevation: {
162: level0: 'transparent',
163: level1: '#e6ffe6',
164: level2: '#d7ffd7',
165: level3: '#c8ffc8',
166: level4: '#b9ffb9',
167: level5: '#aaffaa',
168: }
169: },
170: custom: {
171: tabBar: '#e6ffe6',
172: tabBarActive: '#1b4d1b',
173: }
174: },
175: dark: {
176: colors: {
177: primary: '#e0ffe0',
178: onPrimary: '#0d1f0d',
179: primaryContainer: '#162916',
180: onPrimaryContainer: '#e0ffe0',
181: secondary: '#85c285',
182: onSecondary: '#0d1f0d',
183: secondaryContainer: '#162916',
184: onSecondaryContainer: '#e0ffe0',
185: background: '#0d1f0d',
186: onBackground: '#e0ffe0',
187: surface: '#0d1f0d',
188: onSurface: '#e0ffe0',
189: surfaceVariant: '#162916',
190: onSurfaceVariant: '#e0ffe0',
191: outline: '#85c285',
192: elevation: {
193: level0: 'transparent',
194: level1: '#162916',
195: level2: '#1b321b',
196: level3: '#203b20',
197: level4: '#254425',
198: level5: '#2a4d2a',
199: }
200: },
201: custom: {
202: tabBar: '#162916',
203: tabBarActive: '#e0ffe0',
204: }
205: }
206: },
207: sunset: {
208: light: {
209: colors: {
210: primary: '#5b1a1a',
211: onPrimary: '#ffffff',
212: primaryContainer: '#ffe1e1',
213: onPrimaryContainer: '#5b1a1a',
214: secondary: '#8e6c6c',
215: onSecondary: '#ffffff',
216: secondaryContainer: '#ffe1e1',
217: onSecondaryContainer: '#5b1a1a',
218: background: '#fff5f0',
219: onBackground: '#5b1a1a',
220: surface: '#fff5f0',
221: onSurface: '#5b1a1a',
222: surfaceVariant: '#ffe1e1',
223: onSurfaceVariant: '#5b1a1a',
224: outline: '#8e6c6c',
225: elevation: {
226: level0: 'transparent',
227: level1: '#ffe1e1',
228: level2: '#ffd2d2',
229: level3: '#ffc3c3',
230: level4: '#ffb4b4',
231: level5: '#ffa5a5',
232: }
233: },
234: custom: {
235: tabBar: '#ffe1e1',
236: tabBarActive: '#5b1a1a',
237: }
238: },
239: dark: {
240: colors: {
241: primary: '#ffe0e0',
242: onPrimary: '#1f0d0d',
243: primaryContainer: '#291616',
244: onPrimaryContainer: '#ffe0e0',
245: secondary: '#c28585',
246: onSecondary: '#1f0d0d',
247: secondaryContainer: '#291616',
248: onSecondaryContainer: '#ffe0e0',
249: background: '#1f0d0d',
250: onBackground: '#ffe0e0',
251: surface: '#1f0d0d',
252: onSurface: '#ffe0e0',
253: surfaceVariant: '#291616',
254: onSurfaceVariant: '#ffe0e0',
255: outline: '#c28585',
256: elevation: {
257: level0: 'transparent',
258: level1: '#291616',
259: level2: '#321b1b',
260: level3: '#3b2020',
261: level4: '#442525',
262: level5: '#4d2a2a',
263: }
264: },
265: custom: {
266: tabBar: '#291616',
267: tabBarActive: '#ffe0e0',
268: }
269: }
270: },
271: mono: {
272: light: {
273: colors: {
274: primary: '#000000',
275: onPrimary: '#ffffff',
276: primaryContainer: '#ffffff',
277: onPrimaryContainer: '#000000',
278: secondary: '#000000',
279: onSecondary: '#ffffff',
280: secondaryContainer: '#f0f0f0',
281: onSecondaryContainer: '#000000',
282: background: '#ffffff',
283: onBackground: '#000000',
284: surface: '#ffffff',
285: onSurface: '#000000',
286: surfaceVariant: '#f0f0f0',
287: onSurfaceVariant: '#000000',
288: outline: '#000000',
289: elevation: {
290: level0: 'transparent',
291: level1: '#ffffff',
292: level2: '#f0f0f0',
293: level3: '#e6e6e6',
294: level4: '#dcdcdc',
295: level5: '#d2d2d2',
296: }
297: },
298: custom: {
299: tabBar: '#f0f0f0',
300: tabBarActive: '#000000',
301: }
302: },
303: dark: {
304: colors: {
305: primary: '#ffffff',
306: onPrimary: '#000000',
307: primaryContainer: '#000000',
308: onPrimaryContainer: '#ffffff',
309: secondary: '#ffffff',
310: onSecondary: '#000000',
311: secondaryContainer: '#000000',
312: onSecondaryContainer: '#ffffff',
313: background: '#000000',
314: onBackground: '#ffffff',
315: surface: '#000000',
316: onSurface: '#ffffff',
317: surfaceVariant: '#000000',
318: onSurfaceVariant: '#ffffff',
319: outline: '#ffffff',
320: elevation: {
321: level0: 'transparent',
322: level1: '#0a0a0a',
323: level2: '#141414',
324: level3: '#1f1f1f',
325: level4: '#292929',
326: level5: '#333333',
327: }
328: },
329: custom: {
330: tabBar: '#000000',
331: tabBarActive: '#ffffff',
332: }
333: }
334: },
335: neon: {
336: light: {
337: colors: {
338: primary: '#00e600',
339: onPrimary: '#000000',
340: primaryContainer: '#e6ffe6',
341: onPrimaryContainer: '#003300',
342: secondary: '#e600e6',
343: onSecondary: '#000000',
344: secondaryContainer: '#ffe6ff',
345: onSecondaryContainer: '#330033',
346: background: '#ffffff',
347: onBackground: '#00cc00',
348: surface: '#ffffff',
349: onSurface: '#00cc00',
350: surfaceVariant: '#e6ffe6',
351: onSurfaceVariant: '#003300',
352: outline: '#00ff00',
353: elevation: {
354: level0: 'transparent',
355: level1: '#e6ffe6',
356: level2: '#ccffcc',
357: level3: '#b3ffb3',
358: level4: '#99ff99',
359: level5: '#80ff80',
360: }
361: },
362: custom: {
363: tabBar: '#e6ffe6',
364: tabBarActive: '#00ff00',
365: }
366: },
367: dark: {
368: colors: {
369: primary: '#00e600',
370: onPrimary: '#000000',
371: primaryContainer: '#001a00',
372: onPrimaryContainer: '#00ff00',
373: secondary: '#e600e6',
374: onSecondary: '#000000',
375: secondaryContainer: '#1a001a',
376: onSecondaryContainer: '#ff00ff',
377: background: '#000000',
378: onBackground: '#00ff00',
379: surface: '#000000',
380: onSurface: '#00ff00',
381: surfaceVariant: '#001a00',
382: onSurfaceVariant: '#00ff00',
383: outline: '#00ff00',
384: elevation: {
385: level0: 'transparent',
386: level1: '#001a00',
387: level2: '#003300',
388: level3: '#004d00',
389: level4: '#006600',
390: level5: '#008000',
391: }
392: },
393: custom: {
394: tabBar: '#001a00',
395: tabBarActive: '#00ff00',
396: }
397: }
398: },
399: contrast: {
400: light: {
401: colors: {
402: primary: '#000000',
403: onPrimary: '#ffffff',
404: primaryContainer: '#ffffff',
405: onPrimaryContainer: '#000000',
406: secondary: '#1a1a1a',
407: onSecondary: '#ffffff',
408: secondaryContainer: '#f0f0f0',
409: onSecondaryContainer: '#000000',
410: background: '#ffffff',
411: onBackground: '#000000',
412: surface: '#ffffff',
413: onSurface: '#000000',
414: surfaceVariant: '#f0f0f0',
415: onSurfaceVariant: '#000000',
416: outline: '#000000',
417: elevation: {
418: level0: 'transparent',
419: level1: '#ffffff',
420: level2: '#f0f0f0',
421: level3: '#e6e6e6',
422: level4: '#dcdcdc',
423: level5: '#d2d2d2',
424: }
425: },
426: custom: {
427: tabBar: '#f0f0f0',
428: tabBarActive: '#000000',
429: }
430: },
431: dark: {
432: colors: {
433: primary: '#ffd700',
434: onPrimary: '#000000',
435: primaryContainer: '#000000',
436: onPrimaryContainer: '#ffd700',
437: secondary: '#ffffff',
438: onSecondary: '#000000',
439: secondaryContainer: '#1a1a1a',
440: onSecondaryContainer: '#ffffff',
441: background: '#000000',
442: onBackground: '#ffd700',
443: surface: '#000000',
444: onSurface: '#ffd700',
445: surfaceVariant: '#1a1a1a',
446: onSurfaceVariant: '#ffd700',
447: outline: '#ffd700',
448: elevation: {
449: level0: 'transparent',
450: level1: '#1a1a00',
451: level2: '#333300',
452: level3: '#4d4d00',
453: level4: '#666600',
454: level5: '#808000',
455: }
456: },
457: custom: {
458: tabBar: '#000000',
459: tabBarActive: '#ffff00',
460: }
461: }
462: },
463: candy: {
464: light: {
465: colors: {
466: primary: '#ff1493',
467: onPrimary: '#ffffff',
468: primaryContainer: '#ffe4f3',
469: onPrimaryContainer: '#ff1493',
470: secondary: '#9932cc',
471: onSecondary: '#ffffff',
472: secondaryContainer: '#f3e5ff',
473: onSecondaryContainer: '#9932cc',
474: background: '#fff0f8',
475: onBackground: '#ff1493',
476: surface: '#fff0f8',
477: onSurface: '#ff1493',
478: surfaceVariant: '#ffe4f3',
479: onSurfaceVariant: '#ff1493',
480: outline: '#ff69b4',
481: elevation: {
482: level0: 'transparent',
483: level1: '#ffe4f3',
484: level2: '#ffd9ed',
485: level3: '#ffcee7',
486: level4: '#ffc3e1',
487: level5: '#ffb8db',
488: }
489: },
490: custom: {
491: tabBar: '#ffe4f3',
492: tabBarActive: '#ff1493',
493: }
494: },
495: dark: {
496: colors: {
497: primary: '#ff69b4',
498: onPrimary: '#1a0011',
499: primaryContainer: '#4d0033',
500: onPrimaryContainer: '#ff69b4',
501: secondary: '#da70d6',
502: onSecondary: '#1a001a',
503: secondaryContainer: '#4d004d',
504: onSecondaryContainer: '#da70d6',
505: background: '#1a0011',
506: onBackground: '#ff69b4',
507: surface: '#1a0011',
508: onSurface: '#ff69b4',
509: surfaceVariant: '#4d0033',
510: onSurfaceVariant: '#ff69b4',
511: outline: '#ff69b4',
512: elevation: {
513: level0: 'transparent',
514: level1: '#4d0033',
515: level2: '#660044',
516: level3: '#800055',
517: level4: '#990066',
518: level5: '#b30077',
519: }
520: },
521: custom: {
522: tabBar: '#4d0033',
523: tabBarActive: '#ff69b4',