File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const vitepressConfig = defineConfig({
1717 markdown : {
1818 lineNumbers : true ,
1919 theme : {
20- light : await themeService . getTheme ( 'JetBrains Rider New UI theme - Light' ) ,
20+ light : await themeService . getTheme ( 'Eva Light' ) ,
2121 // dark: await themeService.getTheme('Eva Dark'),
2222 dark : await themeService . getTheme ( 'JetBrains Rider New UI theme - Dark' ) ,
2323 } ,
Original file line number Diff line number Diff line change @@ -86,6 +86,12 @@ class ThemeService implements IThemeService {
8686 const [ themeName , info ] = x ;
8787 const theme = await this . fetchThemeObject ( info ) ;
8888 if ( ! theme . name ) theme . name = themeName ; // in case the theme does not have a name to indentify itself
89+ if ( themeName === 'JetBrains Rider New UI theme - Dark' ) {
90+ // theme.tokenColors.push({
91+ // scope: 'keyword.operator',
92+ // settings: { foreground: '#6C95EB' },
93+ // });
94+ }
8995 await this . register ( theme ) ;
9096 console . log ( `Textmate theme: \`${ themeName } \` has loaded.` ) ;
9197 } ) ,
You can’t perform that action at this time.
0 commit comments