A plugin that changes the Youtube skin to a black one. Perfect for watching videos when it's dark.
- Install latest stable
Node.js
npm install -g gulp-cli
npm install
- Run
gulp
for automatic build-on-change and css lint - Load the plugin in Chrome from the
build
directory
The CSS files use SCSS and must be named src/styles/<component-or-page>.css.scss
.
Any mixins reside in src/styles/_mixins.scss
and the variables are in src/styles/_variables.scss
.
Do not add color literals (hex or rgba) in any file except _variables.scss
.
If possible, use the already existing colors there and "remix" them with functions such as
rgba($color, 0.4)
, lighten($color, 30%)
and darken($color, 20%)
.
At the start of each new scss file put @import 'common';
, which imports the variables and the mixins.
- Clone the project
- Follow the
Setup
instructions above - Make changes
- Make sure there are no lint errors (
gulp lint
must not give warnings) - Test the changes in your browser (don't forget to reload the plugin)
- Submit a PR with a short description and a screenshot of the change