Skip to content

Commit 981821c

Browse files
committed
back to black/white
1 parent d17505a commit 981821c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/contexts/ThemeContext.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface Theme {
3535
}
3636

3737
const lightColors: ThemeColors = {
38-
primary: '#F7931A',
38+
primary: '#111111',
3939
background: '#FFFFFF',
4040
surface: '#FFFFFF',
4141
card: '#FFFFFF',
@@ -53,7 +53,7 @@ const lightColors: ThemeColors = {
5353
};
5454

5555
const darkColors: ThemeColors = {
56-
primary: '#F7931A',
56+
primary: '#8E8E93',
5757
background: '#000000',
5858
surface: '#1C1C1E',
5959
card: '#2C2C2E',

src/styles/commonStyles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export const createThemedStyles = (colors: ThemeColors) => {
174174
backgroundColor: colors.disabled,
175175
},
176176
primaryButtonActive: {
177-
backgroundColor: isDark ? '#C77710' : '#D87E16',
177+
backgroundColor: isDark ? '#3A3A3C' : '#111111',
178178
transform: [{ scale: 0.98 }],
179179
shadowOpacity: isDark ? 0.6 : 0.35,
180180
},

0 commit comments

Comments
 (0)