@umituz/react-native-design-system 4.25.92 → 4.25.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.94",
|
|
4
4
|
"description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, onboarding, and loading utilities",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DARK THEME COLORS
|
|
3
|
-
*
|
|
4
|
-
* Dark theme color palette
|
|
3
|
+
*
|
|
4
|
+
* Dark theme color palette — Forest Green & Warm Orange (MoveLog theme)
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
export const darkColors = {
|
|
8
|
-
// PRIMARY BRAND COLORS -
|
|
9
|
-
primary: '#
|
|
10
|
-
primaryLight: '#
|
|
11
|
-
primaryDark: '#
|
|
12
|
-
|
|
13
|
-
secondary: '#
|
|
14
|
-
secondaryLight: '#
|
|
15
|
-
secondaryDark: '#
|
|
16
|
-
|
|
17
|
-
accent: '#
|
|
18
|
-
accentLight: '#
|
|
19
|
-
accentDark: '#
|
|
20
|
-
|
|
21
|
-
// MATERIAL DESIGN 3 - ON COLORS (Dark mode
|
|
22
|
-
onPrimary: '#000000',
|
|
23
|
-
onSecondary: '#000000',
|
|
24
|
-
onSuccess: '#000000',
|
|
25
|
-
onError: '#FFFFFF',
|
|
26
|
-
onWarning: '#000000',
|
|
27
|
-
onInfo: '#000000',
|
|
28
|
-
onSurface: '#E2E8F0',
|
|
29
|
-
onBackground: '#F1F5F9',
|
|
30
|
-
onSurfaceDisabled: '#
|
|
31
|
-
onSurfaceVariant: '#
|
|
32
|
-
|
|
33
|
-
// MATERIAL DESIGN 3 - CONTAINER COLORS (Dark mode
|
|
34
|
-
primaryContainer: '#
|
|
35
|
-
onPrimaryContainer: '#
|
|
36
|
-
secondaryContainer: '#
|
|
37
|
-
onSecondaryContainer: '#
|
|
38
|
-
errorContainer: '#7F1D1D',
|
|
39
|
-
onErrorContainer: '#FEE2E2',
|
|
40
|
-
|
|
41
|
-
// MATERIAL DESIGN 3 - OUTLINE (Dark mode
|
|
42
|
-
outline: '#
|
|
43
|
-
outlineVariant: '#
|
|
44
|
-
outlineDisabled: '#
|
|
8
|
+
// PRIMARY BRAND COLORS - Forest Green (lighter for dark backgrounds)
|
|
9
|
+
primary: '#5AAF7F', // Lighter Forest Green for dark mode
|
|
10
|
+
primaryLight: '#6BC48F', // Light Green
|
|
11
|
+
primaryDark: '#4A9B6F', // Forest Green
|
|
12
|
+
|
|
13
|
+
secondary: '#FF8C42', // Warm Orange
|
|
14
|
+
secondaryLight: '#FFA06A', // Light Orange
|
|
15
|
+
secondaryDark: '#E57030', // Dark Orange
|
|
16
|
+
|
|
17
|
+
accent: '#FF8C42', // Warm Orange
|
|
18
|
+
accentLight: '#FFA06A', // Light Orange
|
|
19
|
+
accentDark: '#E57030', // Dark Orange
|
|
20
|
+
|
|
21
|
+
// MATERIAL DESIGN 3 - ON COLORS (Dark mode)
|
|
22
|
+
onPrimary: '#000000',
|
|
23
|
+
onSecondary: '#000000',
|
|
24
|
+
onSuccess: '#000000',
|
|
25
|
+
onError: '#FFFFFF',
|
|
26
|
+
onWarning: '#000000',
|
|
27
|
+
onInfo: '#000000',
|
|
28
|
+
onSurface: '#E2E8F0',
|
|
29
|
+
onBackground: '#F1F5F9',
|
|
30
|
+
onSurfaceDisabled: '#6C757D',
|
|
31
|
+
onSurfaceVariant: '#98989D',
|
|
32
|
+
|
|
33
|
+
// MATERIAL DESIGN 3 - CONTAINER COLORS (Dark mode)
|
|
34
|
+
primaryContainer: '#2D6B4A', // Dark green container
|
|
35
|
+
onPrimaryContainer: '#D1F5E3', // Light green text
|
|
36
|
+
secondaryContainer: '#CC5500', // Dark orange container
|
|
37
|
+
onSecondaryContainer: '#FFE8D4', // Light text
|
|
38
|
+
errorContainer: '#7F1D1D',
|
|
39
|
+
onErrorContainer: '#FEE2E2',
|
|
40
|
+
|
|
41
|
+
// MATERIAL DESIGN 3 - OUTLINE (Dark mode)
|
|
42
|
+
outline: '#48484A',
|
|
43
|
+
outlineVariant: '#3A3A3C',
|
|
44
|
+
outlineDisabled: '#3A3A3C',
|
|
45
45
|
|
|
46
46
|
// SEMANTIC UI COLORS (slightly lighter for dark backgrounds)
|
|
47
|
-
success: '#
|
|
48
|
-
successLight: '#
|
|
49
|
-
successDark: '#
|
|
47
|
+
success: '#5AAF7F', // Lighter green for dark mode
|
|
48
|
+
successLight: '#6BC48F',
|
|
49
|
+
successDark: '#4A9B6F',
|
|
50
50
|
|
|
51
51
|
error: '#EF4444',
|
|
52
52
|
errorLight: '#F87171',
|
|
53
53
|
errorDark: '#DC2626',
|
|
54
54
|
|
|
55
|
-
warning: '#
|
|
56
|
-
warningLight: '#
|
|
57
|
-
warningDark: '#
|
|
55
|
+
warning: '#FFC107',
|
|
56
|
+
warningLight: '#FFD54F',
|
|
57
|
+
warningDark: '#E6A800',
|
|
58
58
|
|
|
59
|
-
info: '#FF8C42',
|
|
60
|
-
infoLight: '#
|
|
61
|
-
infoDark: '#
|
|
59
|
+
info: '#FF8C42',
|
|
60
|
+
infoLight: '#FFA06A',
|
|
61
|
+
infoDark: '#E57030',
|
|
62
62
|
|
|
63
|
-
// SEMANTIC CONTAINER COLORS
|
|
64
|
-
successContainer: '#
|
|
65
|
-
onSuccessContainer: '#
|
|
66
|
-
warningContainer: '#FEF3C7',
|
|
67
|
-
onWarningContainer: '#92400E',
|
|
68
|
-
infoContainer: '#
|
|
69
|
-
onInfoContainer: '#
|
|
63
|
+
// SEMANTIC CONTAINER COLORS
|
|
64
|
+
successContainer: '#D1F5E3',
|
|
65
|
+
onSuccessContainer: '#2D6B4A',
|
|
66
|
+
warningContainer: '#FEF3C7',
|
|
67
|
+
onWarningContainer: '#92400E',
|
|
68
|
+
infoContainer: '#FFE8D4',
|
|
69
|
+
onInfoContainer: '#CC5500',
|
|
70
70
|
|
|
71
|
-
// GRAYSCALE PALETTE
|
|
71
|
+
// GRAYSCALE PALETTE
|
|
72
72
|
gray50: '#FAFAFA',
|
|
73
73
|
gray100: '#F4F4F5',
|
|
74
74
|
gray200: '#E4E4E7',
|
|
@@ -80,65 +80,65 @@ export const darkColors = {
|
|
|
80
80
|
gray800: '#27272A',
|
|
81
81
|
gray900: '#18181B',
|
|
82
82
|
|
|
83
|
-
// BACKGROUND COLORS
|
|
84
|
-
backgroundPrimary: '#
|
|
85
|
-
backgroundSecondary: '#
|
|
83
|
+
// BACKGROUND COLORS — MoveLog's signature dark palette
|
|
84
|
+
backgroundPrimary: '#1C1C1E', // MoveLog dark root
|
|
85
|
+
backgroundSecondary: '#2C2C2E', // MoveLog dark default
|
|
86
86
|
|
|
87
|
-
surface: '#
|
|
88
|
-
surfaceVariant: '#
|
|
89
|
-
surfaceSecondary: '#
|
|
90
|
-
surfaceDisabled: '#
|
|
87
|
+
surface: '#2C2C2E', // MoveLog backgroundDefault
|
|
88
|
+
surfaceVariant: '#3A3A3C', // MoveLog backgroundSecondary
|
|
89
|
+
surfaceSecondary: '#3A3A3C',
|
|
90
|
+
surfaceDisabled: '#48484A', // MoveLog backgroundTertiary
|
|
91
91
|
|
|
92
|
-
// TEXT COLORS (dark mode
|
|
93
|
-
textPrimary: '#
|
|
94
|
-
textSecondary: '#
|
|
95
|
-
textTertiary: '#
|
|
96
|
-
textDisabled: '#
|
|
97
|
-
textInverse: '#
|
|
92
|
+
// TEXT COLORS (dark mode)
|
|
93
|
+
textPrimary: '#FFFFFF', // MoveLog dark text
|
|
94
|
+
textSecondary: '#98989D', // MoveLog dark textSecondary
|
|
95
|
+
textTertiary: '#6C757D',
|
|
96
|
+
textDisabled: '#48484A',
|
|
97
|
+
textInverse: '#1C1C1E',
|
|
98
98
|
|
|
99
|
-
// BORDER COLORS (dark mode
|
|
100
|
-
border: '#
|
|
101
|
-
borderLight: '#
|
|
102
|
-
borderMedium: '#
|
|
103
|
-
borderFocus: '#
|
|
104
|
-
borderDisabled: '#
|
|
99
|
+
// BORDER COLORS (dark mode)
|
|
100
|
+
border: '#48484A', // MoveLog dark border
|
|
101
|
+
borderLight: '#3A3A3C',
|
|
102
|
+
borderMedium: '#636366',
|
|
103
|
+
borderFocus: '#5AAF7F', // Green focus
|
|
104
|
+
borderDisabled: '#3A3A3C',
|
|
105
105
|
|
|
106
|
-
// COMPONENT-SPECIFIC COLORS (dark mode
|
|
107
|
-
buttonPrimary: '#
|
|
108
|
-
buttonSecondary: '#
|
|
106
|
+
// COMPONENT-SPECIFIC COLORS (dark mode)
|
|
107
|
+
buttonPrimary: '#5AAF7F',
|
|
108
|
+
buttonSecondary: '#FF8C42',
|
|
109
109
|
|
|
110
|
-
inputBackground: '#
|
|
111
|
-
inputBorder: '#
|
|
110
|
+
inputBackground: '#2C2C2E',
|
|
111
|
+
inputBorder: '#48484A',
|
|
112
112
|
|
|
113
|
-
cardBackground: '#
|
|
113
|
+
cardBackground: '#2C2C2E',
|
|
114
114
|
|
|
115
115
|
// COLOR ALIASES
|
|
116
|
-
text: '#
|
|
117
|
-
background: '#
|
|
118
|
-
card: '#
|
|
116
|
+
text: '#FFFFFF',
|
|
117
|
+
background: '#1C1C1E',
|
|
118
|
+
card: '#2C2C2E',
|
|
119
119
|
|
|
120
120
|
// SPECIAL COLORS
|
|
121
121
|
transparent: 'transparent',
|
|
122
122
|
black: '#000000',
|
|
123
123
|
white: '#FFFFFF',
|
|
124
124
|
|
|
125
|
-
// RGBA OVERLAY COLORS
|
|
126
|
-
modalOverlay: 'rgba(0, 0, 0, 0.
|
|
125
|
+
// RGBA OVERLAY COLORS
|
|
126
|
+
modalOverlay: 'rgba(0, 0, 0, 0.7)',
|
|
127
127
|
overlaySubtle: 'rgba(0, 0, 0, 0.05)',
|
|
128
128
|
overlayLight: 'rgba(0, 0, 0, 0.1)',
|
|
129
|
-
overlayMedium: 'rgba(0, 0, 0, 0.
|
|
130
|
-
overlayBackground: 'rgba(0, 0, 0, 0.
|
|
129
|
+
overlayMedium: 'rgba(0, 0, 0, 0.4)',
|
|
130
|
+
overlayBackground: 'rgba(0, 0, 0, 0.1)',
|
|
131
131
|
|
|
132
132
|
whiteOverlay: 'rgba(255, 255, 255, 0.2)',
|
|
133
133
|
whiteOverlayStrong: 'rgba(255, 255, 255, 0.95)',
|
|
134
|
-
whiteOverlayBorder: 'rgba(255, 255, 255, 0.
|
|
134
|
+
whiteOverlayBorder: 'rgba(255, 255, 255, 0.3)',
|
|
135
135
|
|
|
136
136
|
textWhiteOpacity: 'rgba(255, 255, 255, 0.8)',
|
|
137
137
|
|
|
138
138
|
errorBackground: 'rgba(239, 68, 68, 0.1)',
|
|
139
|
-
primaryBackground: 'rgba(
|
|
139
|
+
primaryBackground: 'rgba(90, 175, 127, 0.15)', // Green overlay (dark mode)
|
|
140
140
|
|
|
141
|
-
cardOverlay: 'rgba(0, 0, 0, 0.
|
|
141
|
+
cardOverlay: 'rgba(0, 0, 0, 0.25)',
|
|
142
142
|
|
|
143
|
-
inputBackground_RGBA: 'rgba(
|
|
144
|
-
};
|
|
143
|
+
inputBackground_RGBA: 'rgba(44, 44, 46, 0.9)',
|
|
144
|
+
};
|
|
@@ -1,128 +1,128 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* LIGHT THEME COLORS
|
|
3
|
-
*
|
|
4
|
-
* Light theme color palette
|
|
3
|
+
*
|
|
4
|
+
* Light theme color palette — Forest Green & Warm Orange (MoveLog theme)
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
export const lightColors = {
|
|
8
|
-
// PRIMARY BRAND COLORS -
|
|
9
|
-
primary: '#
|
|
10
|
-
primaryLight: '#
|
|
11
|
-
primaryDark: '#
|
|
12
|
-
|
|
13
|
-
secondary: '#
|
|
14
|
-
secondaryLight: '#
|
|
15
|
-
secondaryDark: '#
|
|
16
|
-
|
|
17
|
-
accent: '#
|
|
18
|
-
accentLight: '#
|
|
19
|
-
accentDark: '#
|
|
20
|
-
|
|
21
|
-
// MATERIAL DESIGN 3 - ON COLORS
|
|
22
|
-
onPrimary: '#FFFFFF',
|
|
23
|
-
onSecondary: '#FFFFFF',
|
|
24
|
-
onSuccess: '#FFFFFF',
|
|
25
|
-
onError: '#FFFFFF',
|
|
26
|
-
onWarning: '#000000',
|
|
27
|
-
onInfo: '#FFFFFF',
|
|
28
|
-
onSurface: '#
|
|
29
|
-
onBackground: '#
|
|
30
|
-
onSurfaceDisabled: '#
|
|
31
|
-
onSurfaceVariant: '#
|
|
32
|
-
|
|
33
|
-
// MATERIAL DESIGN 3 - CONTAINER COLORS
|
|
34
|
-
primaryContainer: '#
|
|
35
|
-
onPrimaryContainer: '#
|
|
36
|
-
secondaryContainer: '#
|
|
37
|
-
onSecondaryContainer: '#
|
|
38
|
-
errorContainer: '#FEE2E2',
|
|
39
|
-
onErrorContainer: '#991B1B',
|
|
8
|
+
// PRIMARY BRAND COLORS - Forest Green (MoveLog)
|
|
9
|
+
primary: '#4A9B6F', // Forest Green
|
|
10
|
+
primaryLight: '#6BC48F', // Light Green
|
|
11
|
+
primaryDark: '#3A7A5A', // Deep Green
|
|
12
|
+
|
|
13
|
+
secondary: '#FF8C42', // Warm Orange (accent)
|
|
14
|
+
secondaryLight: '#FFA06A', // Light Orange
|
|
15
|
+
secondaryDark: '#E57030', // Dark Orange
|
|
16
|
+
|
|
17
|
+
accent: '#FF8C42', // Warm Orange
|
|
18
|
+
accentLight: '#FFA06A', // Light Orange
|
|
19
|
+
accentDark: '#E57030', // Dark Orange
|
|
20
|
+
|
|
21
|
+
// MATERIAL DESIGN 3 - ON COLORS
|
|
22
|
+
onPrimary: '#FFFFFF',
|
|
23
|
+
onSecondary: '#FFFFFF',
|
|
24
|
+
onSuccess: '#FFFFFF',
|
|
25
|
+
onError: '#FFFFFF',
|
|
26
|
+
onWarning: '#000000',
|
|
27
|
+
onInfo: '#FFFFFF',
|
|
28
|
+
onSurface: '#1C1C1E',
|
|
29
|
+
onBackground: '#1C1C1E',
|
|
30
|
+
onSurfaceDisabled: '#C7C7CC',
|
|
31
|
+
onSurfaceVariant: '#6C757D',
|
|
32
|
+
|
|
33
|
+
// MATERIAL DESIGN 3 - CONTAINER COLORS
|
|
34
|
+
primaryContainer: '#D1F5E3', // Light green container
|
|
35
|
+
onPrimaryContainer: '#2D6B4A', // Dark green text
|
|
36
|
+
secondaryContainer: '#FFE8D4', // Light orange container
|
|
37
|
+
onSecondaryContainer: '#CC5500', // Dark orange text
|
|
38
|
+
errorContainer: '#FEE2E2',
|
|
39
|
+
onErrorContainer: '#991B1B',
|
|
40
40
|
|
|
41
41
|
// MATERIAL DESIGN 3 - OUTLINE
|
|
42
|
-
outline: '#
|
|
43
|
-
outlineVariant: '#
|
|
44
|
-
outlineDisabled: '#
|
|
42
|
+
outline: '#C7C7CC',
|
|
43
|
+
outlineVariant: '#E5E5EA',
|
|
44
|
+
outlineDisabled: '#E5E5EA',
|
|
45
45
|
|
|
46
46
|
// SEMANTIC UI COLORS
|
|
47
|
-
success: '#
|
|
48
|
-
successLight: '#
|
|
49
|
-
successDark: '#
|
|
50
|
-
|
|
51
|
-
error: '#
|
|
52
|
-
errorLight: '#
|
|
53
|
-
errorDark: '#
|
|
54
|
-
|
|
55
|
-
warning: '#
|
|
56
|
-
warningLight: '#
|
|
57
|
-
warningDark: '#
|
|
58
|
-
|
|
59
|
-
info: '#FF8C42',
|
|
60
|
-
infoLight: '#
|
|
61
|
-
infoDark: '#
|
|
62
|
-
|
|
63
|
-
// SEMANTIC CONTAINER COLORS
|
|
64
|
-
successContainer: '#
|
|
65
|
-
onSuccessContainer: '#
|
|
66
|
-
warningContainer: '#
|
|
67
|
-
onWarningContainer: '#92400E',
|
|
68
|
-
infoContainer: '#
|
|
69
|
-
onInfoContainer: '#
|
|
47
|
+
success: '#4A9B6F', // Forest Green (same as primary)
|
|
48
|
+
successLight: '#6BC48F',
|
|
49
|
+
successDark: '#3A7A5A',
|
|
50
|
+
|
|
51
|
+
error: '#DC3545',
|
|
52
|
+
errorLight: '#E87070',
|
|
53
|
+
errorDark: '#B02A37',
|
|
54
|
+
|
|
55
|
+
warning: '#FFC107',
|
|
56
|
+
warningLight: '#FFD54F',
|
|
57
|
+
warningDark: '#E6A800',
|
|
58
|
+
|
|
59
|
+
info: '#FF8C42', // Warm Orange for info
|
|
60
|
+
infoLight: '#FFA06A',
|
|
61
|
+
infoDark: '#E57030',
|
|
62
|
+
|
|
63
|
+
// SEMANTIC CONTAINER COLORS
|
|
64
|
+
successContainer: '#D1F5E3',
|
|
65
|
+
onSuccessContainer: '#2D6B4A',
|
|
66
|
+
warningContainer: '#FFF8DC',
|
|
67
|
+
onWarningContainer: '#92400E',
|
|
68
|
+
infoContainer: '#FFE8D4',
|
|
69
|
+
onInfoContainer: '#CC5500',
|
|
70
70
|
|
|
71
71
|
// GRAYSCALE PALETTE
|
|
72
72
|
gray50: '#FAFAFA',
|
|
73
73
|
gray100: '#F4F4F5',
|
|
74
|
-
gray200: '#
|
|
75
|
-
gray300: '#
|
|
76
|
-
gray400: '#
|
|
77
|
-
gray500: '#
|
|
78
|
-
gray600: '#
|
|
79
|
-
gray700: '#
|
|
80
|
-
gray800: '#
|
|
81
|
-
gray900: '#
|
|
82
|
-
|
|
83
|
-
// BACKGROUND COLORS
|
|
74
|
+
gray200: '#E5E5EA',
|
|
75
|
+
gray300: '#D1D1D6',
|
|
76
|
+
gray400: '#AEAEB2',
|
|
77
|
+
gray500: '#8E8E93',
|
|
78
|
+
gray600: '#636366',
|
|
79
|
+
gray700: '#48484A',
|
|
80
|
+
gray800: '#3A3A3C',
|
|
81
|
+
gray900: '#1C1C1E',
|
|
82
|
+
|
|
83
|
+
// BACKGROUND COLORS — clean iOS-style whites
|
|
84
84
|
backgroundPrimary: '#FFFFFF',
|
|
85
|
-
backgroundSecondary: '#
|
|
85
|
+
backgroundSecondary: '#F8F9FA',
|
|
86
86
|
|
|
87
87
|
surface: '#FFFFFF',
|
|
88
|
-
surfaceVariant: '#
|
|
89
|
-
surfaceSecondary: '#
|
|
90
|
-
surfaceDisabled: '#
|
|
88
|
+
surfaceVariant: '#F2F2F7',
|
|
89
|
+
surfaceSecondary: '#F2F2F7',
|
|
90
|
+
surfaceDisabled: '#F4F4F4',
|
|
91
91
|
|
|
92
92
|
// TEXT COLORS
|
|
93
|
-
textPrimary: '#
|
|
94
|
-
textSecondary: '#
|
|
95
|
-
textTertiary: '#
|
|
96
|
-
textDisabled: '#
|
|
93
|
+
textPrimary: '#1C1C1E',
|
|
94
|
+
textSecondary: '#6C757D',
|
|
95
|
+
textTertiary: '#98989D',
|
|
96
|
+
textDisabled: '#C7C7CC',
|
|
97
97
|
textInverse: '#FFFFFF',
|
|
98
98
|
|
|
99
99
|
// BORDER COLORS
|
|
100
|
-
border: '#
|
|
101
|
-
borderLight: '#
|
|
102
|
-
borderMedium: '#
|
|
103
|
-
borderFocus: '#
|
|
104
|
-
borderDisabled: '#
|
|
100
|
+
border: '#E5E5EA',
|
|
101
|
+
borderLight: '#F2F2F7',
|
|
102
|
+
borderMedium: '#C7C7CC',
|
|
103
|
+
borderFocus: '#4A9B6F',
|
|
104
|
+
borderDisabled: '#F2F2F7',
|
|
105
105
|
|
|
106
106
|
// COMPONENT-SPECIFIC COLORS
|
|
107
|
-
buttonPrimary: '#
|
|
108
|
-
buttonSecondary: '#
|
|
107
|
+
buttonPrimary: '#4A9B6F',
|
|
108
|
+
buttonSecondary: '#FF8C42',
|
|
109
109
|
|
|
110
110
|
inputBackground: '#FFFFFF',
|
|
111
|
-
inputBorder: '#
|
|
111
|
+
inputBorder: '#E5E5EA',
|
|
112
112
|
|
|
113
113
|
cardBackground: '#FFFFFF',
|
|
114
114
|
|
|
115
115
|
// COLOR ALIASES
|
|
116
|
-
text: '#
|
|
117
|
-
background: '#FFFFFF',
|
|
118
|
-
card: '#FFFFFF',
|
|
116
|
+
text: '#1C1C1E',
|
|
117
|
+
background: '#FFFFFF',
|
|
118
|
+
card: '#FFFFFF',
|
|
119
119
|
|
|
120
120
|
// SPECIAL COLORS
|
|
121
121
|
transparent: 'transparent',
|
|
122
122
|
black: '#000000',
|
|
123
123
|
white: '#FFFFFF',
|
|
124
124
|
|
|
125
|
-
// RGBA OVERLAY COLORS
|
|
125
|
+
// RGBA OVERLAY COLORS
|
|
126
126
|
modalOverlay: 'rgba(0, 0, 0, 0.5)',
|
|
127
127
|
overlaySubtle: 'rgba(0, 0, 0, 0.05)',
|
|
128
128
|
overlayLight: 'rgba(0, 0, 0, 0.1)',
|
|
@@ -135,10 +135,10 @@ export const lightColors = {
|
|
|
135
135
|
|
|
136
136
|
textWhiteOpacity: 'rgba(255, 255, 255, 0.8)',
|
|
137
137
|
|
|
138
|
-
errorBackground: 'rgba(
|
|
139
|
-
primaryBackground: 'rgba(
|
|
138
|
+
errorBackground: 'rgba(220, 53, 69, 0.1)',
|
|
139
|
+
primaryBackground: 'rgba(74, 155, 111, 0.1)', // Green background
|
|
140
140
|
|
|
141
|
-
cardOverlay: 'rgba(0, 0, 0, 0.
|
|
141
|
+
cardOverlay: 'rgba(0, 0, 0, 0.08)',
|
|
142
142
|
|
|
143
|
-
inputBackground_RGBA: 'rgba(248,
|
|
144
|
-
};
|
|
143
|
+
inputBackground_RGBA: 'rgba(248, 249, 250, 0.9)',
|
|
144
|
+
};
|