2024-09-03 17:03:56 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
|
|
],
|
|
|
|
theme: {
|
2024-09-03 21:07:27 +00:00
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
"c-primary": "var(--main)",
|
2024-09-09 03:02:05 +00:00
|
|
|
"c-bg": "var(--bg)",
|
|
|
|
"c-on-bg": "var(--on-bg)",
|
|
|
|
// colors for the routes colors
|
|
|
|
"r-hover-bg": "var(--hover-bg)",
|
|
|
|
"r-hover-on-bg": "var(--hover-on-bg)",
|
2024-09-03 21:07:27 +00:00
|
|
|
},
|
|
|
|
},
|
2024-09-03 17:03:56 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|
|
|
|
|