|
|
|
@ -1,5 +1,38 @@
|
|
|
|
|
const primary = '#FD842D';
|
|
|
|
|
const primaryDim = '#B64D02';
|
|
|
|
|
const fs = require('fs-extra');
|
|
|
|
|
const path = require('path');
|
|
|
|
|
const themePath = path.join(process.cwd(), 'share', 'theme.json');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ! IMPORTANT !
|
|
|
|
|
* Do NOT edit this file directly!
|
|
|
|
|
*
|
|
|
|
|
* Instead, edit the `theme.js` file in the `share` directory.
|
|
|
|
|
* For more info, please see the README: https://github.com/tycrek/ass/#customizing-the-viewer
|
|
|
|
|
*/
|
|
|
|
|
const defaults = {
|
|
|
|
|
// Font
|
|
|
|
|
font: '"Josefin Sans"',
|
|
|
|
|
|
|
|
|
|
// Background colours
|
|
|
|
|
bgPage: '#212121',
|
|
|
|
|
bgViewer: '#151515',
|
|
|
|
|
|
|
|
|
|
// Text colours
|
|
|
|
|
txtPrimary: '#FD842D',
|
|
|
|
|
txtSecondary: '#BDBDBD',
|
|
|
|
|
|
|
|
|
|
// Links
|
|
|
|
|
linkHover: '#FD710D',
|
|
|
|
|
linkActive: '#DE5E02',
|
|
|
|
|
|
|
|
|
|
// Other
|
|
|
|
|
borderHover: '#B64D02',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let theme = {};
|
|
|
|
|
if (fs.existsSync(themePath))
|
|
|
|
|
theme = fs.readJsonSync(themePath);
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
separator: '_',
|
|
|
|
|
darkMode: 'class',
|
|
|
|
@ -10,23 +43,20 @@ module.exports = {
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
fontFamily: {
|
|
|
|
|
main: ['"Josefin Sans"', 'ui-sans-serif', 'system-ui', 'sans-serif']
|
|
|
|
|
main: [theme.font || defaults.font, 'ui-sans-serif', 'system-ui', 'sans-serif']
|
|
|
|
|
},
|
|
|
|
|
backgroundColor: {
|
|
|
|
|
'primary': primary,
|
|
|
|
|
'body': '#212121',
|
|
|
|
|
'page': theme.bgPage || defaults.bgPage,
|
|
|
|
|
'viewer': theme.bgViewer || defaults.bgViewer,
|
|
|
|
|
},
|
|
|
|
|
colors: {
|
|
|
|
|
'content-bg': '#151515',
|
|
|
|
|
'primary': primary,
|
|
|
|
|
'primary-dim': primaryDim,
|
|
|
|
|
'primary-dark': '#793301',
|
|
|
|
|
'link-hover': '#FD710D',
|
|
|
|
|
'link-active': '#DE5E02',
|
|
|
|
|
'text-primary': '#BDBDBD',
|
|
|
|
|
'primary': theme.txtPrimary || defaults.txtPrimary,
|
|
|
|
|
'secondary': theme.txtSecondary || defaults.txtSecondary,
|
|
|
|
|
'link-hover': theme.linkHover || defaults.linkHover,
|
|
|
|
|
'link-active': theme.linkActive || defaults.linkActive,
|
|
|
|
|
},
|
|
|
|
|
borderColor: {
|
|
|
|
|
'primary-dim': primaryDim
|
|
|
|
|
'hover': theme.borderHover || defaults.borderHover
|
|
|
|
|
},
|
|
|
|
|
maxHeight: {
|
|
|
|
|
'half-port': '50vh'
|
|
|
|
|