Files
onTheSpectrum/src/lib/styles/themes.js
Giac 85a51a1fda Added Chalkboard and Classroom themes
Combined DicerRoller and Chart
Centered Title
Standardized UI Sizes across themes.
2025-12-14 15:52:16 -06:00

23 lines
639 B
JavaScript

export const themeNames = ['chalkboard', 'classroom', 'cyberpunk', 'nightmare', 'nintendo', 'sludge', 'typewriter', 'win95'];
export const themeDisplayNames = {
chalkboard: 'Chalkboard',
classroom: 'Classroom',
cyberpunk: 'Cyberpunk',
nightmare: 'Nightmare',
nintendo: 'Nintendo',
sludge: 'Sludge',
typewriter: 'Typewriter',
win95: 'Win 95'
};
// Import all theme CSS files
// These will be bundled and applied globally
import './chalkboard.css';
import './classroom.css';
import './cyberPunk.css';
import './nightmare.css';
import './nintendo.css';
import './sludge.css';
import './typewriter.css';
import './win95.css';