mirror of
https://github.com/aljazceru/sendstr-web.git
synced 2025-12-17 14:34:29 +01:00
20 lines
415 B
JavaScript
20 lines
415 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx}",
|
|
"./src/views/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "var(--primary)",
|
|
secondary: "var(--secondary)",
|
|
warning: "var(--warning)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|