Skip to content

Commit

Permalink
fix: update theme with disabled token
Browse files Browse the repository at this point in the history
  • Loading branch information
wwsun committed Jul 20, 2022
1 parent 0ee6f15 commit 6666026
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,9 @@ export const defaultTheme: ThemeType = {
brand: 'colors.primary.60',
highlight: 'colors.error.50',
text: {
normal: 'rgba(0, 0, 0, 0.85)',
secondary: 'rgba(0, 0, 0, 0.45)',
normal: 'colors.gray.90',
secondary: 'colors.gray.80',
disabled: 'colors.gray.40',

title: 'colors.gray.100', // 标题
body: 'colors.gray.80', // 正文
Expand All @@ -130,10 +131,12 @@ export const defaultTheme: ThemeType = {
background: {
normal: 'colors.gray.10',
secondary: 'colors.gray.20',
disabled: 'colors.gray.10',
},
line: {
normal: 'colors.gray.30',
secondary: 'colors.gray.40',
disabled: 'colors.gray.30',
},
},
space: {
Expand Down

0 comments on commit 6666026

Please sign in to comment.