Add-ons for Firefox | Microsoft Edge-Add-ons
The easiest way to install this extension is to install from the extension stores:
Or, you can clone this repository, build it and add this repository as an extension to your browser.
Before start testing this extension, you need to install Node.js to build it manually.
Building this extension doesn't require much, just run following command with Node.js .
# Install deps
npm install
# Run build script with Node.js
node build.js
# or using `npm` scripts
npm run build
This extension is made up of 3 stylesheets and can be packed together by build.js
. These 3 stylesheets manage light, dark color variables and others.
This file only includes variables, and will be active in light mode.
--...: ...;
...
Only includes variables, active in dark mode.
This file is a complete CSS file, it manages acrylic effects and layouts. If you are add something unable to add to light/dark.css
, add it here.
... {
...: ...;
...
}
...
js/main.js
manages all JavaScript actions except rendering stylesheets. Any scripts should be here.