themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
22 lines (19 loc) • 422 B
text/typescript
import type { ColorSet } from './index.js';
const colors: ColorSet = {
name: 'GitHub Universe',
variants: {
dark: {
accent0: '#EF4E7C',
accent1: '#F37055',
accent2: '#F79532',
accent3: '#6EBB82',
accent4: '#09B399',
accent5: '#1299AD',
accent6: '#5073B8',
accent7: '#A067AB',
shade0: '#23292D',
shade7: '#FDFDFD',
},
},
};
export default colors;