attheme-js
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

attheme-js

A package for working with .attheme files in JavaScript. It fully supports the .attheme format.

Installing

npm i attheme-js

Usage

import Attheme from "attheme-js";
 
const theme = new Attheme(`
divider=#000000
checkbox=-1
 
WPS
Pretend there is a cats wallpaper here
WPE
`);
 
console.log(theme.get(`divider`)); // { red: 0, green: 0, blue: 0, alpha: 255 }
theme.set(`checkbox`, {
  red: 255,
  green: 146,
  blue: 13,
  alpha: 7,
});
console.log(theme.get(`checkbox`)); // { red: 255, green: 146, blue: 13, alpha: 7 }
 
console.log(theme.getWallpaper()); // Pretend there is a cats wallpaper here
 
console.log(theme.toString(`hex`)); /*
divider=#ff000000
checkbox=#ffffffff
 
WPS
Pretend there is a cats wallpaper here
WPE
 
*/

For the API documentation and tools attheme-js provides out of the box, please see the documentation section on our Wiki.

Dependencies (1)

Dev Dependencies (6)

Package Sidebar

Install

npm i attheme-js

Weekly Downloads

1

Version

3.0.0

License

MIT

Unpacked Size

780 kB

Total Files

36

Last publish

Collaborators

  • snejugal