-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (38 loc) · 996 Bytes
/
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
import defaultTheme from "tailwindcss/defaultTheme";
import colors from "tailwindcss/colors";
module.exports = {
mode: "jit",
content: ["./node_modules/tw-elements/js/**/*.js","./client/views/**/*.ejs","./client/views/admin/**/*.ejs","./client/views/faculty/**/*.ejs","./client/views/faculty/**/**/*.ejs"],
theme: {
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
gray: {
900: "#202225",
800: "#2f3136",
700: "#36393f",
600: "#4f545c",
400: "#d4d7dc",
300: "#e3e5e8",
200: "#ebedef",
100: "#f2f3f5",
},
logo_1: "#30B3AB",
logo_2: "#F9A682",
logo_3: "#BAE3E2",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("daisyui"),
require("tw-elements/plugin.cjs"),
{
tailwindcss: {},
autoprefixer: {},
},
],
};