mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-31 13:17:09 +00:00
22 lines
578 B
JavaScript
22 lines
578 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pkg/appview/templates/**/*.html",
|
|
"./pkg/appview/public/js/**/*.js",
|
|
],
|
|
// Enable dark: variant based on 'dark' class (already toggled in head.html)
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
// Only keep custom extensions not covered by DaisyUI
|
|
colors: {
|
|
star: 'var(--star)',
|
|
},
|
|
fontFamily: {
|
|
mono: ['Monaco', 'Menlo', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
// DaisyUI is added via @plugin in CSS
|
|
}
|