mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2024-11-22 08:12:19 +00:00
E
8449b30401
* Add dev-dependancies * Security update npm packages * Force audit fix * Add linting, formatting and precommit * Format files
32 lines
619 B
JavaScript
32 lines
619 B
JavaScript
module.exports = {
|
|
mode: 'jit',
|
|
purge: ['views/*.pug'],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
extra: ['"Titling Gothic FB"'],
|
|
sans: ['Gilroy'],
|
|
mono: ['"Apercu Mono"'],
|
|
},
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
black: {
|
|
DEFAULT: '#002234',
|
|
},
|
|
pink: {
|
|
DEFAULT: '#CC7A98',
|
|
},
|
|
green: {
|
|
DEFAULT: '#CDE7B0',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('tailwind-hamburgers')],
|
|
};
|