Files
BetterSEQTA-Plus/src/popup/tailwind.config.js
T
SethBurkart123 ee1738fb21 cleanup
2023-09-12 07:06:04 +10:00

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: [],
}