's'
This commit is contained in:
18
constants/Colors.ts
Normal file
18
constants/Colors.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
const accent = '#5b9dff';
|
||||
|
||||
export default {
|
||||
light: {
|
||||
text: '#0f172a',
|
||||
background: '#f3f5fb',
|
||||
tint: '#2563eb',
|
||||
tabIconDefault: '#94a3b8',
|
||||
tabIconSelected: '#2563eb',
|
||||
},
|
||||
dark: {
|
||||
text: '#e8eaed',
|
||||
background: '#14161c',
|
||||
tint: accent,
|
||||
tabIconDefault: '#64748b',
|
||||
tabIconSelected: accent,
|
||||
},
|
||||
};
|
||||
13
constants/theme.ts
Normal file
13
constants/theme.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/** 与桌面端 App.css 深色主题对齐 */
|
||||
export const theme = {
|
||||
bg: '#14161c',
|
||||
bgCard: '#22262e',
|
||||
bgElevated: '#282c36',
|
||||
border: 'rgba(255,255,255,0.08)',
|
||||
text: '#e8eaed',
|
||||
muted: '#8b929e',
|
||||
accent: '#5b9dff',
|
||||
success: '#3dd68c',
|
||||
danger: '#f56565',
|
||||
warn: '#f6ad55',
|
||||
}
|
||||
Reference in New Issue
Block a user