eeg_internal/tailwind.config.js

16 lines
305 B
JavaScript
Raw Normal View History

2024-02-10 00:18:21 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,rs}",
],
theme: {
2024-02-10 01:37:11 +00:00
extend: {
colors: {
"c-bg": "var(--c-bg)",
"c-on-bg": "var(--c-on-bg)",
}
},
2024-02-10 00:18:21 +00:00
},
plugins: [],
}