SnejUgal / attheme-js

A little package for working with .attheme files in JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A little package for working with .attheme files in JS

License:MIT License


Languages

Language:TypeScript 98.9%Language:JavaScript 1.0%Language:Shell 0.1%