mirror of
https://github.com/Molunerfinn/PicGo.git
synced 2024-04-21 10:31:33 +00:00
23 lines
455 B
JavaScript
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
|
|
}
|
|
}
|