Add everfrost dark and light themes (#1934)

Co-authored-by: Ross <ro@noirlab.edu>
This commit is contained in:
Ross
2026-04-13 23:22:37 -04:00
committed by GitHub
parent 9f10fe398a
commit ca0a1569f8
6 changed files with 66 additions and 0 deletions
@@ -10,6 +10,8 @@ const APP_THEMES = new Set([
'defaultDark',
'defaultLight',
'dracula',
'everforestDark',
'everforestLight',
'githubDark',
'githubLight',
'glassyDark',
+2
View File
@@ -23,6 +23,8 @@ export const THEME_DATA = [
{ label: 'One Dark', type: 'dark', value: AppTheme.ONE_DARK },
{ label: 'Solarized Dark', type: 'dark', value: AppTheme.SOLARIZED_DARK },
{ label: 'Solarized Light', type: 'light', value: AppTheme.SOLARIZED_LIGHT },
{ label: 'Everforest Dark', type: 'dark', value: AppTheme.EVERFOREST_DARK },
{ label: 'Everforest Light', type: 'light', value: AppTheme.EVERFOREST_LIGHT },
{ label: 'GitHub Dark', type: 'dark', value: AppTheme.GITHUB_DARK },
{ label: 'GitHub Light', type: 'light', value: AppTheme.GITHUB_LIGHT },
{ label: 'Glassy Dark', type: 'dark', value: AppTheme.GLASSY_DARK },