Files
PicGo/tailwind.config.js
2023-07-09 13:02:16 +08:00

23 lines
455 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./public/index.html',
'./src/**/*.{js,ts,jsx,tsx,vue}'
],
theme: {
extend: {
colors: {
blue: '#49B1F5',
green: '#44B363',
red: '#F15140',
yellow: '#F1BE48'
}
}
},
plugins: [],
corePlugins: {
// due to https://github.com/tailwindlabs/tailwindcss/issues/6602 - buttons disappear
preflight: false
}
}