mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
25 lines
553 B
JavaScript
25 lines
553 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"background-primary-dark": "",
|
|
"background-primary-light": "",
|
|
"background-secondary-dark": "",
|
|
"background-secondary-light": "",
|
|
"forground-primary-dark": "",
|
|
"forground-primary-light": "",
|
|
"forground-secondary-dark": "",
|
|
"forground-secondary-light": ""
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|