2.0.1 • Published 2 years ago

hyper-bit-theme v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Screenshot

Install

  • Open Hyper.
  • Run hyper install hyper-bit-theme.
  • And ready.

Choosing a variant

Three theme variants are available: default, soft and intense.

To define a variant you must edit your .hyper.js configuration file as follows. If no variant is defined the default theme will be applied.

module.exports = {
  config: {
      /*
        Other settings hidden
      */

     bitThemeConfig: {
       variant: '[variant-name]'
     }
    },
  };

The intense variant would be defined as follows:

module.exports = {
  config: {
      /*
        Other settings hidden
      */

     bitThemeConfig: {
       variant: 'intense'
     }
    },
  };