Split Themes and added themes.js. Updated components
This commit is contained in:
20
src/lib/styles/themes.js
Normal file
20
src/lib/styles/themes.js
Normal file
@@ -0,0 +1,20 @@
|
||||
export const themeNames = ['win95', 'cyberpunk', 'typewriter', 'nightmare', 'vaporwave', 'nintendo'];
|
||||
|
||||
export const themeDisplayNames = {
|
||||
win95: 'Windows 95',
|
||||
cyberpunk: 'Cyberpunk',
|
||||
typewriter: 'Typewriter',
|
||||
nightmare: 'Nightmare',
|
||||
vaporwave: 'Vaporwave',
|
||||
nintendo: 'Nintendo'
|
||||
};
|
||||
|
||||
// Import all theme CSS files
|
||||
// These will be bundled and applied globally
|
||||
import './win95.css';
|
||||
import './cyberPunk.css';
|
||||
import './typewriter.css';
|
||||
import './nightmare.css';
|
||||
import './vaporWave.css';
|
||||
import './nintendo.css';
|
||||
import './general.css';
|
||||
Reference in New Issue
Block a user