Update default & ANSI theme names (#637)

This commit is contained in:
Miguel Solorio
2025-05-31 11:10:52 -07:00
committed by GitHub
parent c350fbef7f
commit cbc1614b84
7 changed files with 167 additions and 19 deletions

View File

@@ -4,11 +4,11 @@
* SPDX-License-Identifier: Apache-2.0
*/
import { ansiTheme, Theme } from './theme.js';
import { darkTheme, Theme } from './theme.js';
export const ANSI: Theme = new Theme(
'ANSI',
'ansi',
'dark',
{
hljs: {
display: 'block',
@@ -135,5 +135,5 @@ export const ANSI: Theme = new Theme(
color: 'yellow', // Mapped from #D7BA7D
},
},
ansiTheme,
darkTheme,
);