-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (49 loc) · 1.32 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {
colors: {
primary: "#804dee",
secondary: "#4b42a7",
tertiary: "#9b4dee",
quaternary: "#4d9aee",
five: "#cbb8f5",
ctnPrimaryLight: "#2e384d",
ctnSecondaryLight: "#4b42a7",
// bgPrimaryDark: "#181826",
// bgSecondaryDark: "#212134",
ctnPrimaryDark: "#e5e6e9",
ctnSecondaryDark: "#7e8c9f"
},
boxShadow: {
card: "0px 35px 120px -15px #211e35"
},
backgroundImage: {
"hero-pattern": "url('/assets/herobg.png')",
bgPrimaryDark:
"linear-gradient(90deg, rgba(24,24,38,1) 0%, rgba(32,32,50,1) 50%, rgba(24,24,38,1) 100%)",
bgSecondaryDark:
"linear-gradient(90deg, rgba(33,33,52,1) 0%, rgba(39,39,61,1) 50%, rgba(33,33,52,1) 100%)",
bgPrimaryLight:
"linear-gradient(90deg, rgba(211,207,212,1) 0%, rgba(231,239,244,1) 50%, rgba(211,207,212,1) 100%)",
bgSecondaryLight:
"linear-gradient(90deg, rgba(224,234,240,1) 0%, rgba(232,239,243,1) 50%, rgba(224,234,240,1) 100%)"
},
screens: {
xs: "320px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px"
}
}
},
plugins: []
};