2021-09-22 18:38:09 +03:00
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
|
2021-07-12 23:14:39 +03:00
|
|
|
module.exports = {
|
2021-09-22 18:38:09 +03:00
|
|
|
corePlugins: {
|
|
|
|
float: false,
|
|
|
|
tableLayout: false,
|
|
|
|
sepia: false,
|
|
|
|
saturate: false,
|
|
|
|
},
|
|
|
|
|
2021-07-12 23:14:39 +03:00
|
|
|
theme: {
|
|
|
|
fontFamily: {
|
|
|
|
display: [
|
2021-09-15 20:21:04 +03:00
|
|
|
"Spectral", "Constantia", "Lucida Bright", "Lucidabright", "Lucida Serif", "Lucida", "DejaVu Serif", "Bitstream Vera Serif",
|
|
|
|
"Liberation Serif", "Georgia", "serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
|
2021-07-12 23:14:39 +03:00
|
|
|
"Noto Color Emoji"
|
|
|
|
],
|
|
|
|
body: [
|
2021-09-16 22:01:50 +03:00
|
|
|
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
|
|
|
|
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
|
|
|
"Segoe UI Symbol", "Noto Color Emoji"
|
2021-07-12 23:14:39 +03:00
|
|
|
],
|
2021-09-15 20:21:04 +03:00
|
|
|
mono: [
|
2021-09-16 22:01:50 +03:00
|
|
|
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
|
2021-09-15 20:21:04 +03:00
|
|
|
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
|
|
|
"Segoe UI Symbol", "Noto Color Emoji"
|
|
|
|
],
|
2021-07-12 23:14:39 +03:00
|
|
|
},
|
2021-09-22 18:38:09 +03:00
|
|
|
colors: {
|
|
|
|
transparent: 'transparent',
|
|
|
|
current: 'currentColor',
|
|
|
|
black: colors.black,
|
|
|
|
white: colors.white,
|
|
|
|
gray: colors.trueGray,
|
|
|
|
},
|
|
|
|
extend: {},
|
2021-07-12 23:14:39 +03:00
|
|
|
},
|
2021-09-17 19:33:10 +03:00
|
|
|
|
2021-07-12 23:14:39 +03:00
|
|
|
variants: {
|
|
|
|
},
|
2021-09-22 18:38:09 +03:00
|
|
|
darkMode: false,
|
2021-07-12 23:14:39 +03:00
|
|
|
purge: [
|
2021-09-22 18:38:09 +03:00
|
|
|
"../server/templates/**/*.hbs",
|
|
|
|
"../server/templates/*.hbs"
|
2021-07-12 23:14:39 +03:00
|
|
|
]
|
|
|
|
}
|