2022-03-18 05:12:26 +00:00
|
|
|
const { themeable } = require("tailwindcss-themeable");
|
|
|
|
|
2022-03-11 03:51:40 +00:00
|
|
|
module.exports = {
|
|
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2022-03-18 05:12:26 +00:00
|
|
|
plugins: [
|
2022-05-07 09:35:10 +00:00
|
|
|
require("tailwindcss-safe-area"),
|
2022-05-11 09:20:10 +00:00
|
|
|
require("@tailwindcss/aspect-ratio"),
|
2022-03-18 05:12:26 +00:00
|
|
|
themeable({
|
|
|
|
defaultTheme: "default",
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
name: "default",
|
|
|
|
palette: {
|
|
|
|
primary: "#4CCBA0",
|
|
|
|
secondary: "#0E1731",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
2022-03-11 03:51:40 +00:00
|
|
|
};
|