-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
126 lines (125 loc) · 3.54 KB
/
tailwind.config.ts
File metadata and controls
126 lines (125 loc) · 3.54 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
sans: ['var(--font-geist-sans)', 'sans-serif'],
"stellar": ['var(--font-stellar)'],
"geist-mono": ['var(--font-geist-mono)'],
},
spacing:{
stitle: '6rem',
sstitle: '3.5rem',
heroTop:'12rem',
},
colors: {
navcolor: "#D6E1FF",
titlecolor: "#D6E1FF",
"purple-1": "#FEFCFE",
"purple-2": "#F7EDFE",
"purple-3": "#F7EDFE",
"purple-4": "#F2E2FC",
"purple-5": "#EAD5F9",
"purple-6": "#E0C4F4",
"purple-8": "#BE93E4",
"purple-9": "#8E4EC6",
"purple-10": "#8347B9",
"purple-11": "#8145B5",
"purple-12":"#402060",
"green-2": "#F4FBF6",
"green-3": "#E6F6EB",
"green-5": "#C4E8D1",
"green-6": "#ADDDC0",
"green-8": "#5BB98B",
"green 11": "#218358",
"indigo-1": "#FDFDFE",
"indigo-2": "#F7F9FF",
"indigo-3": "#EDF2FE",
"indigo-4": "#E1E9FF",
"iris-9": "#5B5BD6",
"blue-3": "#E6F4FE",
"blue-4": "#D5EFFF",
"blue-5": "#C2E5FF",
"blue-6": "#ACD8FC",
"blue-11": "#0D74CE",
"iris-2": "#F8F8FF",
"ruby-2": "#FFF7F8",
"ruby-5": "#FFCED6",
"ruby-6": "#F8BFC8",
"ruby-8": "#E592A3",
"ruby-9": "#E54666",
"mauve-1": "#FDFCFD",
"mauve-2": "#FAF9FB",
"mauve-3": "#F2EFF3",
"slate-1": "#FCFCFD",
"slate-2": "#F9F9FB",
"slate-3": "#F0F0F3",
"slate-4": "#E8E8EC",
"slate-7": "#CDCED6",
"slate-11": "#60646C",
"slate-12": "#1C2024",
"yellow-8": "#D5AE39",
mutedtextcolor: "#3A5BC7",
indigobackground: "#F7F9FF",
google: "hsl(var(--blue-google))",
linkedin: "hsl(var(--blue-linkedin))",
twitter: "hsl(var(--blue-twitter))",
orcid: "hsl(var(--green-orcid))",
arxiv: "hsl(var(--red-arxiv))",
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "#f8fafc",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
},
},
plugins: [
require("tailwindcss-animate"),
require("@tailwindcss/typography"),
],
}