Skip to content

Commit

Permalink
fix: set theme default color
Browse files Browse the repository at this point in the history
  • Loading branch information
daief committed May 21, 2023
1 parent 9366fe3 commit 50e968a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/shared/style-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ function themeToCss(theme: ITheme): string {
...Object.entries(theme.variables.rule).map(
(it) => `${themeVariable[it[0]][1]}: ${it[1]}`,
),
`color: ${themeVariable['base-content'][0]}`,
].join(';');
}

Expand Down

0 comments on commit 50e968a

Please sign in to comment.