Add an ansi theme. (#152)

Add the gradient used by the ascii art logo to theme.
This commit is contained in:
Jacob Richman 2025-04-24 11:56:23 -07:00 committed by GitHub
parent 5790a5d7cf
commit 19ed2ed630
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 174 additions and 9 deletions

View file

@ -12,6 +12,7 @@ import { VS } from './vs.js';
import { VS2015 } from './vs2015.js';
import { XCode } from './xcode.js';
import { Theme } from './theme.js';
import { ANSI } from './ansi.js';
export interface ThemeDisplay {
name: string;
@ -32,6 +33,7 @@ class ThemeManager {
GitHub,
GoogleCode,
XCode,
ANSI,
];
this.activeTheme = ThemeManager.DEFAULT_THEME;
}