Skip to content

Commit

Permalink
fix: update dogfood theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
kristian-mkd committed Nov 7, 2024
1 parent 992c024 commit 28c03c8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions sample-apps/react-native/dogfood/src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@ export const useCustomTheme = (mode: ThemeMode): DeepPartial<Theme> => {
...baseTheme,
colors: {
buttonPrimaryDefault: '#005fff',
buttonPrimaryDisabled: '#e6eef7',
buttonSecondaryDefault: '#f5f7f9',
buttonSecondaryHover: '#e8ecef',
buttonPrimaryDisabled: '#ccdfff',
buttonSecondaryDefault: '#eff0f1',
buttonSecondaryHover: '#e3e4e5',
buttonSecondaryWarningDefault: '#dc433b',
iconPrimaryDefault: '#1a1d21',
iconPrimaryDefault: '#19232d',
iconPrimaryAccent: '#005fff',
iconAlertSuccess: '#00c589',
iconAlertSuccess: '#00e2a1',
iconAlertWarning: '#dc433b',
sheetPrimary: '#ffffff',
sheetSecondary: '#f5f7f9',
sheetTertiary: '#e8ecef',
sheetOverlay: 'rgba(0, 0, 0, 0.1)',
typePrimary: '#1a1d21',
typeSecondary: '#6b7278',
sheetSecondary: '#eff0f1',
sheetTertiary: '#e3e4e5',
sheetOverlay: '#0c0d0ea6',
typePrimary: '#000000',
typeSecondary: '#19232d',
} as DeepPartial<Theme['colors']>,
};
}
Expand Down

0 comments on commit 28c03c8

Please sign in to comment.