-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
45 lines (44 loc) · 1.05 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
43
44
45
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{tsx,ts}",
"./components/**/*.{tsx,ts}",
"./app/**/*.{tsx,ts}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
serif: ["var(--font-almendra)", ...defaultTheme.fontFamily.serif],
sans: ["var(--font-andika)", ...defaultTheme.fontFamily.sans],
},
colors: {
primary: "#FFD700",
secondary: "#FFD700",
accent: "#FFD700",
neutral: "#FFD700",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
lostSeasTheme: {
primary: "#0e7490",
secondary: "#1b1f27",
accent: "#1FB2A5",
neutral: "#191D24",
"base-100": "#2A303C",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
logs: false,
},
}