UNPKG

themer

Version:

Customizable theme creator for editors, terminals, wallpaper, and more.

34 lines (31 loc) 703 B
import type { ColorSet } from './index.js'; const colors: ColorSet = { name: 'Green as a Whistle', variants: { dark: { shade0: '#1F1913', shade7: '#FEFEDD', accent0: '#994643', accent1: '#F2AB71', accent2: '#FFCF86', accent3: '#4B8075', accent4: '#639587', accent5: '#517665', accent6: '#8B596A', accent7: '#8E5252', }, light: { shade0: '#FCFAF1', shade7: '#19201D', accent0: '#8F4053', accent1: '#D8965D', accent2: '#CFA253', accent3: '#4E8579', accent4: '#8CB3A0', accent5: '#4D7260', accent6: '#786366', accent7: '#9F5E58', }, }, }; export default colors;