themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
22 lines (19 loc) • 412 B
text/typescript
import type { ColorSet } from '../index.js';
const colors: ColorSet = {
name: 'Test',
variants: {
dark: {
shade0: '#000000',
shade7: '#ffffff',
accent0: '#ffffff',
accent1: '#ffffff',
accent2: '#ffffff',
accent3: '#ffffff',
accent4: '#ffffff',
accent5: '#ffffff',
accent6: '#ffffff',
accent7: '#ffffff',
},
},
};
export default colors;