chore(Theme): set the default font size of the Compact theme to 16 (#4064)

* chore(Theme): set the default font size of the Compact theme to 16

* chore: compact dark
This commit is contained in:
Zeke Zhang 2024-04-17 10:49:22 +08:00 committed by GitHub
parent a9407b3a49
commit 39f8bd529a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,6 +28,9 @@ export const compact: Omit<ThemeItem, 'id'> = {
name: 'Compact',
// @ts-ignore
algorithm: 'compactAlgorithm',
token: {
fontSize: 16,
},
},
optional: true,
isBuiltIn: true,
@ -41,6 +44,9 @@ export const compactDark: Omit<ThemeItem, 'id'> = {
name: 'Compact dark',
// @ts-ignore
algorithm: ['compactAlgorithm', 'darkAlgorithm'],
token: {
fontSize: 16,
},
},
optional: true,
isBuiltIn: true,