UNPKG

themer

Version:

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

15 lines (12 loc) 343 B
import type { Template } from './index.js'; import chromeTemplate from './chrome.js'; const template: Template = { ...chromeTemplate, name: 'Brave', renderInstructions: (...args) => chromeTemplate .renderInstructions(...args) .replace(/chrome/g, 'brave') .replace(/Chrome/g, 'Brave'), }; export default template;