-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
13 lines (11 loc) · 593 Bytes
/
index.js
File metadata and controls
13 lines (11 loc) · 593 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
import bootstrapLight from './themes/bootstrap-light.json' with { type: 'json' };
import bootstrapDark from './themes/bootstrap-dark.json' with { type: 'json' };
import bootstrapLightVibrant from './themes/bootstrap-light-vibrant.json' with { type: 'json' };
import bootstrapDarkVibrant from './themes/bootstrap-dark-vibrant.json' with { type: 'json' };
export { bootstrapLight, bootstrapDark, bootstrapLightVibrant, bootstrapDarkVibrant };
export const themes = {
light: bootstrapLight,
dark: bootstrapDark,
lightVibrant: bootstrapLightVibrant,
darkVibrant: bootstrapDarkVibrant
};