mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.6 KiB
75 lines
1.6 KiB
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.json` 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: '#BDBDBD',
|
|
txtSecondary: '#8D8D8D',
|
|
|
|
// Links
|
|
linkPrimary: '#FD842D',
|
|
linkHover: '#FD710D',
|
|
linkActive: '#DE5E02',
|
|
|
|
// Other
|
|
borderHover: '#B64D02',
|
|
};
|
|
|
|
let theme = {};
|
|
if (fs.existsSync(themePath))
|
|
theme = fs.readJsonSync(themePath);
|
|
|
|
module.exports = {
|
|
separator: '_',
|
|
darkMode: 'class',
|
|
plugins: [
|
|
//require('tailwindcss-textshadow')
|
|
],
|
|
content: ['./views2/**/*.pug'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
main: [theme.font || defaults.font, 'ui-sans-serif', 'system-ui', 'sans-serif']
|
|
},
|
|
backgroundColor: {
|
|
'page': theme.bgPage || defaults.bgPage,
|
|
'viewer': theme.bgViewer || defaults.bgViewer,
|
|
},
|
|
colors: {
|
|
'primary': theme.txtPrimary || defaults.txtPrimary,
|
|
'secondary': theme.txtSecondary || defaults.txtSecondary,
|
|
'link-primary': theme.linkPrimary || defaults.linkPrimary,
|
|
'link-hover': theme.linkHover || defaults.linkHover,
|
|
'link-active': theme.linkActive || defaults.linkActive,
|
|
},
|
|
borderColor: {
|
|
'hover': theme.borderHover || defaults.borderHover
|
|
},
|
|
maxHeight: {
|
|
'half-port': '50vh'
|
|
},
|
|
borderRadius: {
|
|
'24': '24px'
|
|
},
|
|
fontSize: {
|
|
'footer': '0.9rem'
|
|
}
|
|
}
|
|
}
|
|
};
|