hasanalrobasi commited on
Commit
ba2f950
·
verified ·
1 Parent(s): 59a2a65

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +21 -0
tailwind.config.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 500: '#6366f1',
11
+ 600: '#4f46e5',
12
+ },
13
+ dark: {
14
+ 800: '#1e293b',
15
+ 900: '#0f172a',
16
+ }
17
+ }
18
+ },
19
+ },
20
+ plugins: [],
21
+ }