themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
34 lines (31 loc) • 698 B
text/typescript
import type { ColorSet } from './index.js';
const colors: ColorSet = {
name: 'Shoulder Pads',
variants: {
dark: {
shade0: '#0a121d',
shade7: '#eaeef1',
accent0: '#a12643',
accent1: '#d68d78',
accent2: '#efda5d',
accent3: '#1bb375',
accent4: '#2d869b',
accent5: '#4860cf',
accent6: '#7d35b1',
accent7: '#d954c6',
},
light: {
shade0: '#e9edf0',
shade7: '#0b131e',
accent0: '#d55578',
accent1: '#a76b34',
accent2: '#e4a308',
accent3: '#0f915b',
accent4: '#14724e',
accent5: '#26308f',
accent6: '#511b95',
accent7: '#be2fab',
},
},
};
export default colors;