UNPKG

themer

Version:

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

46 lines (43 loc) 990 B
import type { ColorSet } from './index.js'; const colors: ColorSet = { name: 'Lucid', variants: { dark: { accent0: '#FF8E7D', accent1: '#FFC36D', accent2: '#FFDF67', accent3: '#A3D971', accent4: '#55BBA7', accent5: '#80BBE7', accent6: '#B490B6', accent7: '#F6B4C8', shade0: '#3D4752', shade1: '#505C6A', shade2: '#77818D', shade3: '#A5A5A5', shade4: '#AFB1B3', shade5: '#CDCED1', shade6: '#E6E6E6', shade7: '#FFFFFF', }, light: { accent0: '#CB2735', accent1: '#F28C00', accent2: '#FEC31D', accent3: '#79B63F', accent4: '#05977D', accent5: '#007DBC', accent6: '#843F88', accent7: '#E05C84', shade0: '#FFFFFF', shade1: '#E6E6E6', shade2: '#CDCED1', shade3: '#AFB1B3', shade4: '#A5A5A5', shade5: '#77818D', shade6: '#505C6A', shade7: '#3D4752', }, }, }; export default colors;