summary refs log tree commit diff stats
path: root/tailwind.config.js
blob: 6929dd9e4bf9c2cd174c354e15f0a3aed8395ea7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// rocie - An enterprise grocery management system - Web app
//
// Copyright (C) 2026 Benedikt Peetz <benedikt.peetz@b-peetz.de>
// 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.

/** @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")
  ],
};