forked from steven-tey/novel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class", ".dark-theme"],
content: [
"./app/**/*.{js,ts,jsx,tsx}", // Note the addition of the `app` directory.
"./pages/**/*.{js,ts,jsx,tsx}",
"./ui/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
display: ["var(--font-display)", "system-ui", "sans-serif"],
default: ["var(--font-default)", "system-ui", "sans-serif"],
},
colors: {
white: "var(--novel-white)",
stone: {
50: "var(--novel-stone-50)",
100: "var(--novel-stone-100)",
200: "var(--novel-stone-200)",
300: "var(--novel-stone-300)",
400: "var(--novel-stone-400)",
500: "var(--novel-stone-500)",
600: "var(--novel-stone-600)",
700: "var(--novel-stone-700)",
800: "var(--novel-stone-800)",
900: "var(--novel-stone-900)",
},
},
},
},
plugins: [
// Tailwind plugins
require("@tailwindcss/typography"),
require("tailwindcss-animate"),
],
};