Files
eva/apps/dashboard/tailwind.config.js
kenneth 9edda5808f
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m13s
feat(dashboard): auto light/dark mode
impelemnt auto light/dark mode based on lat/lon

Co-authored-by: Ona <no-reply@ona.com>
2025-10-31 01:58:57 +00:00

13 lines
203 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}