-
Notifications
You must be signed in to change notification settings - Fork 50
/
tailwind.config.js
41 lines (41 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: [
// Break line
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
// color schemes here
primary: "#5D5CD6",
"primary-dark": "#151452",
"primary-light": "#D6D6F5",
secondary: "#FFB800",
tertiary: "#28B567",
light: "#F7F7FD",
lighter: "#D2D4D7",
warning: "#FEC658"
},
fontFamily: {
// custom fonts here
sora: ["Sora", "sans-serif"],
rubik: ["Rubik", "sans-serif"]
}
}
},
plugins: [require("daisyui")],
daisyui: {
styled: true,
themes: false,
base: true,
utils: true,
logs: false,
rtl: false,
prefix: "",
darkTheme: "dark"
}
};