mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
19 lines
515 B
JavaScript
19 lines
515 B
JavaScript
/** @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)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|