2024-07-17 21:33:39 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
mode: "all",
|
|
|
|
content: [
|
|
|
|
// include all rust, html and css files in the src directory
|
|
|
|
"./src/**/*.{rs,html,css}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('daisyui'),
|
|
|
|
],
|
|
|
|
daisyui: {
|
|
|
|
darkTheme: "wrb_dark",
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
wrb: {
|
|
|
|
"primary": "#eb6330",
|
2024-07-17 22:17:39 +02:00
|
|
|
"secondary": "#2d518f",
|
2024-07-17 21:33:39 +02:00
|
|
|
"accent": "#37cdbe",
|
|
|
|
"neutral": "#3d4451",
|
|
|
|
"base-100": "#f8f7ff",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
wrb_dark: {
|
|
|
|
"primary": "#eb6330",
|
2024-07-17 22:17:39 +02:00
|
|
|
"secondary": "#2d518f",
|
2024-07-17 21:33:39 +02:00
|
|
|
"accent": "#37cdbe",
|
|
|
|
"neutral": "#3d4451",
|
2024-07-17 22:17:39 +02:00
|
|
|
"base-100": "#15181f",
|
2024-07-17 21:33:39 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|