27 lines
632 B
JavaScript
27 lines
632 B
JavaScript
/** @type {import('tailwindcss').Config}*/
|
|
const config = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}', "./node_modules/tw-elements/dist/js/**/*.js"],
|
|
|
|
plugins: [
|
|
require("@tailwindcss/forms"),
|
|
require("@tailwindcss/typography"),
|
|
//require("tw-elements/dist/plugin"),
|
|
],
|
|
darkMode: 'class',
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
roboto: ['Roboto'],
|
|
},
|
|
colors: {
|
|
// flowbite-svelte
|
|
primary: {"50":"#eef2ff","100":"#e0e7ff","200":"#c7d2fe","300":"#a5b4fc","400":"#818cf8","500":"#6366f1","600":"#4f46e5","700":"#4338ca","800":"#3730a3","900":"#312e81"}
|
|
}
|
|
}
|
|
},
|
|
|
|
};
|
|
|
|
module.exports = config;
|