Mehdi commited on
Commit
927ea9b
·
verified ·
1 Parent(s): 3ebd701

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +27 -0
tailwind.config.js ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ "./pages/**/*.{js,ts,jsx,tsx}",
5
+ "./components/**/*.{js,ts,jsx,tsx}",
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ primary: '#3b82f6',
11
+ secondary: '#1e40af',
12
+ accent: '#8b5cf6',
13
+ success: '#10b981',
14
+ warning: '#f59e0b',
15
+ danger: '#ef4444',
16
+ info: '#06b6d4'
17
+ },
18
+ fontFamily: {
19
+ mono: ['"Fira Code"', 'monospace']
20
+ }
21
+ },
22
+ },
23
+ plugins: [
24
+ require('@tailwindcss/forms'),
25
+ require('@tailwindcss/typography')
26
+ ],
27
+ }