GoStart/web/style/tailwind.config.js

19 lines
515 B
JavaScript
Raw Normal View History

2024-05-15 20:28:12 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
extend: {
colors: {
bgPrimary: "var(--color-bgPrimary)",
bgSecondary: "var(--color-bgSecondary)",
bgInverted: "var(--color-bgInverted)",
textPrimary: "var(--color-textPrimary)",
textSecondary: "var(--color-textSecondary)",
textMuted: "var(--color-textMuted)",
textInverted: "var(--color-textInverted)",
},
2024-05-15 20:28:12 +00:00
},
},
plugins: [],
};