themer
Version: 
Customizable theme creator for editors, terminals, wallpaper, and more.
28 lines (25 loc) • 561 B
text/typescript
import type { ColorSet } from './index.js';
const colors: ColorSet = {
  name: 'Nova',
  variants: {
    dark: {
      shade0: '#3C4C55',
      shade1: '#495A64',
      shade2: '#556873',
      shade3: '#6A7D89',
      shade4: '#899BA6',
      shade5: '#A7B8C2',
      shade6: '#C5D4DD',
      shade7: '#E6EEF3',
      accent0: '#DF8C8C',
      accent1: '#F2C38F',
      accent2: '#DADA93',
      accent3: '#A8CE93',
      accent4: '#7FC1CA',
      accent5: '#83AFE5',
      accent6: '#9A93E1',
      accent7: '#D18EC2',
    },
  },
};
export default colors;