-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
executable file
·55 lines (53 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
export default {
darkMode: "class",
content: ["./src/**/*.{js,jsx,ts,tsx,vue}", "./index.html"],
theme: {
extend: {
backgroundImage: {
"apt-day": "url('/AptDay.png')",
"apt-night": "url('/AptNight.png')",
},
fontSize: {
xss: ["10px", "12px"],
},
colors: {
glass: {
regular: "#D9D9D9",
thin: "#c9c9c9",
semithick: "#5E5E5E",
thick: "#403f3f",
},
chai: {
50: "#f2efff",
100: "#d7ccff",
200: "#c4b4ff",
300: "#a992ff",
400: "#997dff",
500: "#7f5cff",
600: "#7454e8",
700: "#5a41b5",
800: "#46338c",
900: "#35276b",
"default": "#7f5cff",
},
discord: {
100: "#424549",
200: "#36393e",
300: "#282b30",
400: "#1e2124",
"blurple": "#7289da",
},
docuflow: {
light: "#FF4A33",
dark: "#FF381F",
}
},
},
fontFamily: {
"sf-pro-display": ["SF Pro Display", "Helvetica Neue", "sans-serif"],
},
},
plugins: [require("tailwindcss-3d"), require('tailwindcss-animated')],
};