themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
34 lines (31 loc) • 703 B
text/typescript
import type { ColorSet } from './index.js';
const colors: ColorSet = {
name: 'Right in the Teals',
variants: {
dark: {
shade0: '#171D1D',
shade7: '#CDDEDE',
accent0: '#F18CB1',
accent1: '#B86675',
accent2: '#C57B67',
accent3: '#00ACBD',
accent4: '#208490',
accent5: '#1A9BA6',
accent6: '#32A0AC',
accent7: '#FCA188',
},
light: {
shade0: '#F8FDFE',
shade7: '#05262D',
accent0: '#D75971',
accent1: '#CD2455',
accent2: '#AA582D',
accent3: '#1D7E66',
accent4: '#14808C',
accent5: '#0E7481',
accent6: '#4797A7',
accent7: '#C87D4F',
},
},
};
export default colors;