// rocie - An enterprise grocery management system - Web app // // Copyright (C) 2026 Benedikt Peetz // SPDX-License-Identifier: GPL-3.0-or-later // // This file is part of Rocie. // // You should have received a copy of the License along with this program. // If not, see . /** @type {import('tailwindcss').Config} */ module.exports = { content: ["*.html", "./**/*.rs"], theme: { screens: { sm: "480px", md: "768px", lg: "1020px", xl: "1440px", }, fontFamily: { sans: ["Inter", "sans-serif"], }, }, darkMode: "class", plugins: [ // require('@tailwindcss/forms'), // require("@tailwindcss/typography"), // require("preline/plugin") ], };