puwanath commited on
Commit
40cedfb
·
verified ·
1 Parent(s): 52a8032

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +44 -0
tailwind.config.js ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ module.exports = {
2
+ content: [
3
+ './pages/**/*.{js,ts,jsx,tsx}',
4
+ './components/**/*.{js,ts,jsx,tsx}',
5
+ ],
6
+ theme: {
7
+ extend: {
8
+ colors: {
9
+ primary: {
10
+ 50: '#eff6ff',
11
+ 100: '#dbeafe',
12
+ 200: '#bfdbfe',
13
+ 300: '#93c5fd',
14
+ 400: '#60a5fa',
15
+ 500: '#3b82f6',
16
+ 600: '#2563eb',
17
+ 700: '#1d4ed8',
18
+ 800: '#1e40af',
19
+ 900: '#1e3a8a',
20
+ },
21
+ pos: {
22
+ bg: '#f8fafc',
23
+ card: '#ffffff',
24
+ text: '#1e293b',
25
+ textSecondary: '#64748b',
26
+ border: '#e2e8f0',
27
+ accent: '#3b82f6',
28
+ success: '#10b981',
29
+ warning: '#f59e0b',
30
+ danger: '#ef4444',
31
+ }
32
+ },
33
+ spacing: {
34
+ '128': '32rem',
35
+ '144': '36rem',
36
+ },
37
+ borderRadius: {
38
+ '4xl': '2rem',
39
+ '5xl': '2.5rem',
40
+ },
41
+ },
42
+ },
43
+ plugins: [],
44
+ }