UNPKG

themer

Version:

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

36 lines (31 loc) 692 B
import type { ColorSet } from './index.js'; const colors: ColorSet = { name: 'Rivet', variants: { dark: { shade0: '#0A0216', shade7: '#FAF9FC', accent0: '#F54456', accent1: '#FC7022', accent2: '#D6CD00', accent3: '#91E827', accent4: '#00C580', accent5: '#305DFB', accent6: '#7635DE', accent7: '#F98FD1', }, light: { shade0: '#FFFFFF', shade7: '#0A0216', accent0: '#B20718', accent1: '#D55913', accent2: '#938C00', accent3: '#4BAD00', accent4: '#3F9373', accent5: '#0029BB', accent6: '#4300AC', accent7: '#A63F80', }, }, }; export default colors;