-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
88 lines (87 loc) · 2.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
marquee: 'marquee 25s linear infinite',
marquee2: 'marquee2 25s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
},
fontFamily: {
sans: ["Outfit", "ui-sans-serif"],
},
colors: {
primary: {
50: "#f2f8ff",
100: "#e6f1ff",
200: "#c8e1ff",
300: "#a9d1ff",
400: "#7dbbff",
500: "#4fa1ff",
600: "#2680fc",
700: "#1662db",
800: "#114ebe",
900: "#0b366b",
},
secondary: {
50: "#f8f8f8",
100: "#f1f1f1",
200: "#e1e1e1",
300: "#d1d1d1",
400: "#bbbbbb",
500: "#a1a1a1",
600: "#808080",
700: "#626262",
800: "#4e4e4e",
900: "#363636",
},
accent: {
50: "#fff8f2",
100: "#fff1e6",
200: "#ffe1c8",
300: "#ffd1a9",
400: "#ffbb7d",
500: "#ffa14f",
600: "#fc8026",
700: "#db6616",
800: "#be4e11",
900: "#6b300b",
},
success: {
50: "#f2fff8",
100: "#e6fff1",
200: "#c8ffe1",
300: "#a9ffd1",
400: "#7dffbb",
500: "#4fffa1",
600: "#26fc80",
700: "#16db66",
800: "#11be4e",
900: "#0b6b30",
},
gred: '#D92F35',
gyellow: '#F9B816',
}
}
},
plugins: [
require('prettier-plugin-tailwindcss'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
require('tailwind-scrollbar')({nocompatible: true}),
],
darkMode: "class",
}