josefaidt / svelte-themer

A theming engine for your Svelte apps using CSS Variables, persisted.
https://svelte-themer.vercel.app/
MIT License
140 stars 14 forks source link

feat(next): themes object instead of array #19

Closed josefaidt closed 3 years ago

josefaidt commented 3 years ago
// themes.js
export default {
  themer: {
    light: {},
    dark: {},
    colors: {},
  },
  forest: {
    light: {},
    dark: {},
    colors: {},
  },
  solarized: {
    light: {},
    dark: {},
    colors: {},
  },
}