-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 1.11 KB
/
tailwind.config.js
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
32
33
34
35
36
37
38
39
40
41
42
const { fontFamily, colors } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{ts,tsx,md,mdx}",
"./components/**/*.{ts,tsx,md,mdx}",
"./ui/**/*.{ts,tsx,md,mdx}",
"./lib/**/*.{ts,tsx,md,mdx}",
"./mdx-components.tsx",
],
darkMode: ["class"],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1440px",
"3xl": "1680px",
},
},
extend: {
colors: {
background: "hsl(var(--color-background))",
foreground: "var(--color-foreground)",
"foreground-secondary": "var(--color-foreground-secondary)",
"foreground-light": "var(--color-foreground-light)",
line: "var(--color-line)",
primary: "hsl(var(--color-primary))",
},
fontFamily: {
DEFAULT: ["var(--font-sans)", ...fontFamily.sans],
sans: ["var(--font-sans)", ...fontFamily.sans],
},
},
},
plugins: [
require("tailwindcss-animate"),
require("@tailwindcss/typography"),
require("tailwindcss-radix")(),
],
};