UNPKG

themer

Version:

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

34 lines (31 loc) 691 B
import type { ColorSet } from './index.js'; const colors: ColorSet = { name: 'Monkey', variants: { dark: { accent0: '#E29288', accent1: '#E4A572', accent2: '#DBB66D', accent3: '#A4CC78', accent4: '#71CA98', accent5: '#7EB9D0', accent6: '#BB91B7', accent7: '#C08DA4', shade0: '#48463E', shade7: '#E0E2DD', }, light: { accent0: '#AB5B51', accent1: '#B97B49', accent2: '#C49F47', accent3: '#82AB55', accent4: '#59B07F', accent5: '#70A4B9', accent6: '#9D7A9A', accent7: '#B2889B', shade0: '#EDEBE8', shade7: '#42483E', }, }, }; export default colors;