-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
127 lines (127 loc) · 3.47 KB
/
tailwind.config.js
File metadata and controls
127 lines (127 loc) · 3.47 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
safelist: [
{
pattern: /(bg|text)-(red)-(800)/,
},
{
pattern: /(bg|text|border|w|h)-./,
},
],
theme: {
fontFamily: {
sans: ["SegoeUI", "sans-serif"],
},
extend: {
colors: {
transparent: "transparent",
current: "currentColor",
green: {
50: "#DBFFDB",
DEFAULT: "#66ce67",
400: "#8BD18B",
900: "#33AB34",
},
red: {
DEFAULT: "#D82F28",
800: "#ED5819",
900: "#D82F28",
},
purple: {
50: "#D9BAFF",
DEFAULT: "#883BE6",
400: "#A76BF0",
900: "#6927B9",
},
teal: {
50: "#DEF7FF",
DEFAULT: "#29B7E4",
400: "#70CEEC",
900: "#0883AA",
},
grey: {
// DEFAULT: "#404450",
50: "#333B45",
DEFAULT: "#3E4051",
100: "#E5EDF5",
200: "#B3B4B7",
300: "#6F7A8F",
500: "#28313B",
900: "#1B2028",
},
pink: {
50: "#FFB0DB",
DEFAULT: "#E83D99",
400: "#F364B2",
900: "#C52A7D",
},
blue: {
DEFAULT: "#BFD6F8",
},
yellow: {
DEFAULT: "#FCC945",
},
type: {
DEFAULT: "#E2EBF2",
secondary: "#ADBECB",
tertiary: "#767C87",
quaternary: "#2D3845",
dark: "#0E0E1D",
},
},
screens: {
lg: "1024px",
},
backgroundImage: (theme) => ({
"box-grad-tl":
"linear-gradient(73.14deg, #3D264C -35.57%, rgba(61, 38, 76, 0) 25.95%);",
"box-grad-v":
"linear-gradient(0deg, rgba(216, 185, 255, 0) 0%, rgba(216, 185, 255, 0.1) 100%);",
"repo-grad-v":
// "linear-gradient(180deg, rgba(153, 45, 129, 0.1) 0%, rgba(136, 59, 230, 0) 30%);",
"linear-gradient(180deg, rgba(96,41,219, 0.1) 0em, rgba(96,41,219, 0) 15em);",
"footer-grad":
// "linear-gradient(36.49deg, #144763 -23.54%, rgba(61, 38, 76, 0) 29.37%), linear-gradient(36.49deg, #3D264C -23.54%, rgba(61, 38, 76, 0) 29.37%)",
"linear-gradient(20deg, rgba(20,71,99,0.5) -25%, rgba(19, 24, 30, 0) 30%), linear-gradient(340deg, rgba(61,38,76,0.5) -25%, rgba(19, 24, 30, 0) 30%)",
"rewards-grad":
"linear-gradient(90deg, #1E405F 0%, rgba(128, 83, 150, 0.15) 100%)",
}),
animation: {
"spin-slow": "spin 3s linear infinite",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
dark: {
primary: "#33AB34",
"primary-focus": "#66CE67",
"primary-content": "#FFFFFF",
secondary: "#883BE6",
"secondary-focus": "#A76BF0",
"secondary-content": "#FFFFFF",
accent: "#C52A7D",
"accent-focus": "#E83D99",
"accent-content": "#FFFFFF",
neutral: "#3d4451",
"neutral-focus": "#2a2e37",
"neutral-content": "#ffffff",
"base-100": "#13181E",
"base-200": "#1A2028",
"base-300": "#28313C",
"base-content": "#E2EBF2",
info: "#2094f3",
success: "#009485",
warning: "#E7A604",
error: "#E83D99",
"--btn-text-case": "none" /* default text case for buttons */,
},
},
],
},
};