themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
23 lines (19 loc) • 417 B
text/typescript
import type { ColorSet } from './index.js';
const colors: ColorSet = {
name: 'Night Sky',
variants: {
dark: {
accent0: '#CA3E5A',
accent1: '#D8843E',
accent2: '#EBB062',
accent3: '#81A559',
accent4: '#42ABAB',
accent5: '#4496CD',
accent6: '#9770B2',
accent7: '#B35D8D',
shade0: '#13222E',
shade7: '#ACBECC',
},
},
};
export default colors;