themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
22 lines (19 loc) • 414 B
text/typescript
import type { ColorSet } from './index.js';
const colors: ColorSet = {
name: 'Dracula',
variants: {
dark: {
shade0: '#282a36',
shade7: '#f8f8f2',
accent0: '#ff5555',
accent1: '#ffb86c',
accent2: '#f1fa8c',
accent3: '#50fa7b',
accent4: '#8be9fd',
accent5: '#6272a4',
accent6: '#bd93f9',
accent7: '#ff79c6',
},
},
};
export default colors;