2025-01-19 01:13:59 +08:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./app/views/**/*.html.erb',
|
|
|
|
'./app/helpers/**/*.rb',
|
|
|
|
'./app/assets/stylesheets/**/*.css',
|
|
|
|
'./app/javascript/**/*.js'
|
2025-01-19 22:08:05 +08:00
|
|
|
],
|
2025-01-20 18:02:28 +08:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
'display': ['"Playfair Display"', 'serif'],
|
|
|
|
'sans': ['Raleway', 'sans-serif'],
|
|
|
|
},
|
|
|
|
height: {
|
|
|
|
'screen-90': '90vh',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2025-01-19 22:08:05 +08:00
|
|
|
plugins: [
|
|
|
|
require('daisyui'),
|
|
|
|
],
|
2025-01-20 18:02:28 +08:00
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
light: {
|
|
|
|
...require("daisyui/src/theming/themes")["[data-theme=light]"],
|
|
|
|
"primary": "#2A4365",
|
|
|
|
"secondary": "#805AD5",
|
|
|
|
"accent": "#38B2AC",
|
|
|
|
"neutral": "#2D3748",
|
|
|
|
"base-100": "#F7FAFC",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2025-01-19 01:13:59 +08:00
|
|
|
}
|