@brimveyn/aimux-config 0.4.0 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/actions.ts +47 -0
- package/src/defaults.ts +3 -0
- package/src/index.ts +9 -1
- package/src/normalize-theme.ts +260 -0
- package/src/themes/generated/andromeeda.ts +346 -0
- package/src/themes/generated/aurora-x.ts +603 -0
- package/src/themes/generated/ayu-dark.ts +817 -0
- package/src/themes/generated/ayu-light.ts +817 -0
- package/src/themes/generated/ayu-mirage.ts +817 -0
- package/src/themes/generated/catppuccin-frappe.ts +2041 -0
- package/src/themes/generated/catppuccin-latte.ts +2041 -0
- package/src/themes/generated/catppuccin-macchiato.ts +2041 -0
- package/src/themes/generated/catppuccin-mocha.ts +2041 -0
- package/src/themes/generated/dark-plus.ts +614 -0
- package/src/themes/generated/dracula-soft.ts +947 -0
- package/src/themes/generated/dracula.ts +947 -0
- package/src/themes/generated/everforest-dark.ts +2246 -0
- package/src/themes/generated/everforest-light.ts +2246 -0
- package/src/themes/generated/github-dark-default.ts +605 -0
- package/src/themes/generated/github-dark-dimmed.ts +605 -0
- package/src/themes/generated/github-dark-high-contrast.ts +608 -0
- package/src/themes/generated/github-dark.ts +519 -0
- package/src/themes/generated/github-light-default.ts +602 -0
- package/src/themes/generated/github-light-high-contrast.ts +604 -0
- package/src/themes/generated/github-light.ts +515 -0
- package/src/themes/generated/gruvbox-dark-hard.ts +1124 -0
- package/src/themes/generated/gruvbox-dark-medium.ts +1124 -0
- package/src/themes/generated/gruvbox-dark-soft.ts +1124 -0
- package/src/themes/generated/gruvbox-light-hard.ts +1124 -0
- package/src/themes/generated/gruvbox-light-medium.ts +1124 -0
- package/src/themes/generated/gruvbox-light-soft.ts +1124 -0
- package/src/themes/generated/horizon-bright.ts +420 -0
- package/src/themes/generated/horizon.ts +418 -0
- package/src/themes/generated/houston.ts +1819 -0
- package/src/themes/generated/index.ts +140 -0
- package/src/themes/generated/kanagawa-dragon.ts +753 -0
- package/src/themes/generated/kanagawa-lotus.ts +753 -0
- package/src/themes/generated/kanagawa-wave.ts +753 -0
- package/src/themes/generated/laserwave.ts +489 -0
- package/src/themes/generated/light-plus.ts +639 -0
- package/src/themes/generated/material-theme-darker.ts +759 -0
- package/src/themes/generated/material-theme-lighter.ts +759 -0
- package/src/themes/generated/material-theme-ocean.ts +759 -0
- package/src/themes/generated/material-theme-palenight.ts +759 -0
- package/src/themes/generated/material-theme.ts +759 -0
- package/src/themes/generated/min-dark.ts +326 -0
- package/src/themes/generated/min-light.ts +331 -0
- package/src/themes/generated/monokai.ts +463 -0
- package/src/themes/generated/night-owl-light.ts +1526 -0
- package/src/themes/generated/night-owl.ts +1628 -0
- package/src/themes/generated/nord.ts +1277 -0
- package/src/themes/generated/one-dark-pro.ts +1920 -0
- package/src/themes/generated/one-light.ts +1599 -0
- package/src/themes/generated/plastic.ts +315 -0
- package/src/themes/generated/poimandres.ts +1233 -0
- package/src/themes/generated/red.ts +395 -0
- package/src/themes/generated/rose-pine-dawn.ts +696 -0
- package/src/themes/generated/rose-pine-moon.ts +696 -0
- package/src/themes/generated/rose-pine.ts +696 -0
- package/src/themes/generated/slack-dark.ts +594 -0
- package/src/themes/generated/slack-ochin.ts +461 -0
- package/src/themes/generated/snazzy-light.ts +1254 -0
- package/src/themes/generated/solarized-dark.ts +387 -0
- package/src/themes/generated/solarized-light.ts +379 -0
- package/src/themes/generated/synthwave-84.ts +751 -0
- package/src/themes/generated/tokyo-night.ts +1420 -0
- package/src/themes/generated/vesper.ts +578 -0
- package/src/themes/generated/vitesse-black.ts +629 -0
- package/src/themes/generated/vitesse-dark.ts +629 -0
- package/src/themes/generated/vitesse-light.ts +627 -0
- package/src/themes.ts +57 -10
- package/src/types.ts +29 -4
- package/src/themes.generated.ts +0 -59794
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
// @generated by scripts/generate-themes.ts. DO NOT EDIT.
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
import type { Theme, ThemeId } from '../../types'
|
|
5
|
+
|
|
6
|
+
import { theme as andromeeda } from './andromeeda'
|
|
7
|
+
import { theme as auroraX } from './aurora-x'
|
|
8
|
+
import { theme as ayuDark } from './ayu-dark'
|
|
9
|
+
import { theme as ayuLight } from './ayu-light'
|
|
10
|
+
import { theme as ayuMirage } from './ayu-mirage'
|
|
11
|
+
import { theme as catppuccinFrappe } from './catppuccin-frappe'
|
|
12
|
+
import { theme as catppuccinLatte } from './catppuccin-latte'
|
|
13
|
+
import { theme as catppuccinMacchiato } from './catppuccin-macchiato'
|
|
14
|
+
import { theme as catppuccinMocha } from './catppuccin-mocha'
|
|
15
|
+
import { theme as darkPlus } from './dark-plus'
|
|
16
|
+
import { theme as dracula } from './dracula'
|
|
17
|
+
import { theme as draculaSoft } from './dracula-soft'
|
|
18
|
+
import { theme as everforestDark } from './everforest-dark'
|
|
19
|
+
import { theme as everforestLight } from './everforest-light'
|
|
20
|
+
import { theme as githubDark } from './github-dark'
|
|
21
|
+
import { theme as githubDarkDefault } from './github-dark-default'
|
|
22
|
+
import { theme as githubDarkDimmed } from './github-dark-dimmed'
|
|
23
|
+
import { theme as githubDarkHighContrast } from './github-dark-high-contrast'
|
|
24
|
+
import { theme as githubLight } from './github-light'
|
|
25
|
+
import { theme as githubLightDefault } from './github-light-default'
|
|
26
|
+
import { theme as githubLightHighContrast } from './github-light-high-contrast'
|
|
27
|
+
import { theme as gruvboxDarkHard } from './gruvbox-dark-hard'
|
|
28
|
+
import { theme as gruvboxDarkMedium } from './gruvbox-dark-medium'
|
|
29
|
+
import { theme as gruvboxDarkSoft } from './gruvbox-dark-soft'
|
|
30
|
+
import { theme as gruvboxLightHard } from './gruvbox-light-hard'
|
|
31
|
+
import { theme as gruvboxLightMedium } from './gruvbox-light-medium'
|
|
32
|
+
import { theme as gruvboxLightSoft } from './gruvbox-light-soft'
|
|
33
|
+
import { theme as horizon } from './horizon'
|
|
34
|
+
import { theme as horizonBright } from './horizon-bright'
|
|
35
|
+
import { theme as houston } from './houston'
|
|
36
|
+
import { theme as kanagawaDragon } from './kanagawa-dragon'
|
|
37
|
+
import { theme as kanagawaLotus } from './kanagawa-lotus'
|
|
38
|
+
import { theme as kanagawaWave } from './kanagawa-wave'
|
|
39
|
+
import { theme as laserwave } from './laserwave'
|
|
40
|
+
import { theme as lightPlus } from './light-plus'
|
|
41
|
+
import { theme as materialTheme } from './material-theme'
|
|
42
|
+
import { theme as materialThemeDarker } from './material-theme-darker'
|
|
43
|
+
import { theme as materialThemeLighter } from './material-theme-lighter'
|
|
44
|
+
import { theme as materialThemeOcean } from './material-theme-ocean'
|
|
45
|
+
import { theme as materialThemePalenight } from './material-theme-palenight'
|
|
46
|
+
import { theme as minDark } from './min-dark'
|
|
47
|
+
import { theme as minLight } from './min-light'
|
|
48
|
+
import { theme as monokai } from './monokai'
|
|
49
|
+
import { theme as nightOwl } from './night-owl'
|
|
50
|
+
import { theme as nightOwlLight } from './night-owl-light'
|
|
51
|
+
import { theme as nord } from './nord'
|
|
52
|
+
import { theme as oneDarkPro } from './one-dark-pro'
|
|
53
|
+
import { theme as oneLight } from './one-light'
|
|
54
|
+
import { theme as plastic } from './plastic'
|
|
55
|
+
import { theme as poimandres } from './poimandres'
|
|
56
|
+
import { theme as red } from './red'
|
|
57
|
+
import { theme as rosePine } from './rose-pine'
|
|
58
|
+
import { theme as rosePineDawn } from './rose-pine-dawn'
|
|
59
|
+
import { theme as rosePineMoon } from './rose-pine-moon'
|
|
60
|
+
import { theme as slackDark } from './slack-dark'
|
|
61
|
+
import { theme as slackOchin } from './slack-ochin'
|
|
62
|
+
import { theme as snazzyLight } from './snazzy-light'
|
|
63
|
+
import { theme as solarizedDark } from './solarized-dark'
|
|
64
|
+
import { theme as solarizedLight } from './solarized-light'
|
|
65
|
+
import { theme as synthwave84 } from './synthwave-84'
|
|
66
|
+
import { theme as tokyoNight } from './tokyo-night'
|
|
67
|
+
import { theme as vesper } from './vesper'
|
|
68
|
+
import { theme as vitesseBlack } from './vitesse-black'
|
|
69
|
+
import { theme as vitesseDark } from './vitesse-dark'
|
|
70
|
+
import { theme as vitesseLight } from './vitesse-light'
|
|
71
|
+
|
|
72
|
+
export const GENERATED_THEMES: Record<ThemeId, Theme> = {
|
|
73
|
+
'andromeeda': andromeeda,
|
|
74
|
+
'aurora-x': auroraX,
|
|
75
|
+
'ayu-dark': ayuDark,
|
|
76
|
+
'ayu-light': ayuLight,
|
|
77
|
+
'ayu-mirage': ayuMirage,
|
|
78
|
+
'catppuccin-frappe': catppuccinFrappe,
|
|
79
|
+
'catppuccin-latte': catppuccinLatte,
|
|
80
|
+
'catppuccin-macchiato': catppuccinMacchiato,
|
|
81
|
+
'catppuccin-mocha': catppuccinMocha,
|
|
82
|
+
'dark-plus': darkPlus,
|
|
83
|
+
'dracula': dracula,
|
|
84
|
+
'dracula-soft': draculaSoft,
|
|
85
|
+
'everforest-dark': everforestDark,
|
|
86
|
+
'everforest-light': everforestLight,
|
|
87
|
+
'github-dark': githubDark,
|
|
88
|
+
'github-dark-default': githubDarkDefault,
|
|
89
|
+
'github-dark-dimmed': githubDarkDimmed,
|
|
90
|
+
'github-dark-high-contrast': githubDarkHighContrast,
|
|
91
|
+
'github-light': githubLight,
|
|
92
|
+
'github-light-default': githubLightDefault,
|
|
93
|
+
'github-light-high-contrast': githubLightHighContrast,
|
|
94
|
+
'gruvbox-dark-hard': gruvboxDarkHard,
|
|
95
|
+
'gruvbox-dark-medium': gruvboxDarkMedium,
|
|
96
|
+
'gruvbox-dark-soft': gruvboxDarkSoft,
|
|
97
|
+
'gruvbox-light-hard': gruvboxLightHard,
|
|
98
|
+
'gruvbox-light-medium': gruvboxLightMedium,
|
|
99
|
+
'gruvbox-light-soft': gruvboxLightSoft,
|
|
100
|
+
'horizon': horizon,
|
|
101
|
+
'horizon-bright': horizonBright,
|
|
102
|
+
'houston': houston,
|
|
103
|
+
'kanagawa-dragon': kanagawaDragon,
|
|
104
|
+
'kanagawa-lotus': kanagawaLotus,
|
|
105
|
+
'kanagawa-wave': kanagawaWave,
|
|
106
|
+
'laserwave': laserwave,
|
|
107
|
+
'light-plus': lightPlus,
|
|
108
|
+
'material-theme': materialTheme,
|
|
109
|
+
'material-theme-darker': materialThemeDarker,
|
|
110
|
+
'material-theme-lighter': materialThemeLighter,
|
|
111
|
+
'material-theme-ocean': materialThemeOcean,
|
|
112
|
+
'material-theme-palenight': materialThemePalenight,
|
|
113
|
+
'min-dark': minDark,
|
|
114
|
+
'min-light': minLight,
|
|
115
|
+
'monokai': monokai,
|
|
116
|
+
'night-owl': nightOwl,
|
|
117
|
+
'night-owl-light': nightOwlLight,
|
|
118
|
+
'nord': nord,
|
|
119
|
+
'one-dark-pro': oneDarkPro,
|
|
120
|
+
'one-light': oneLight,
|
|
121
|
+
'plastic': plastic,
|
|
122
|
+
'poimandres': poimandres,
|
|
123
|
+
'red': red,
|
|
124
|
+
'rose-pine': rosePine,
|
|
125
|
+
'rose-pine-dawn': rosePineDawn,
|
|
126
|
+
'rose-pine-moon': rosePineMoon,
|
|
127
|
+
'slack-dark': slackDark,
|
|
128
|
+
'slack-ochin': slackOchin,
|
|
129
|
+
'snazzy-light': snazzyLight,
|
|
130
|
+
'solarized-dark': solarizedDark,
|
|
131
|
+
'solarized-light': solarizedLight,
|
|
132
|
+
'synthwave-84': synthwave84,
|
|
133
|
+
'tokyo-night': tokyoNight,
|
|
134
|
+
'vesper': vesper,
|
|
135
|
+
'vitesse-black': vitesseBlack,
|
|
136
|
+
'vitesse-dark': vitesseDark,
|
|
137
|
+
'vitesse-light': vitesseLight,
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export const GENERATED_THEME_IDS: ThemeId[] = Object.keys(GENERATED_THEMES) as ThemeId[]
|