Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

tailwind.config.cjs 523 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  1. const defaultTheme = require("tailwindcss/defaultTheme");
  2. const colors = require("tailwindcss/colors");
  3. /** @type {import('tailwindcss').Config} */
  4. export default {
  5. darkMode: "class",
  6. mode: "jit",
  7. content: ["./src/**/*.{html,js,svelte,ts}"],
  8. theme: {
  9. extend: {
  10. colors: {
  11. primary: colors[process.env.PUBLIC_APP_COLOR],
  12. },
  13. fontSize: {
  14. xxs: "0.625rem",
  15. smd: "0.94rem",
  16. },
  17. },
  18. },
  19. plugins: [
  20. require("tailwind-scrollbar")({ nocompatible: true }),
  21. require("@tailwindcss/typography"),
  22. ],
  23. };
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...