Skip to content

bit-theme/hyper

Repository files navigation

Logo
Bit Theme for Hyper

Stars Stars Stars

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'
     }
    },
  };