Bit Theme for Hyper
- Open Hyper.
- Run
hyper install hyper-bit-theme
. - And ready.
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'
}
},
};