00Boobs00 commited on
Commit
f574a4a
·
verified ·
1 Parent(s): b6bbc65

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +35 -0
tailwind.config.js ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,ts,jsx,tsx,mdx}',
5
+ './components/**/*.{js,ts,jsx,tsx,mdx}',
6
+ ],
7
+ darkMode: 'class',
8
+ theme: {
9
+ extend: {
10
+ colors: {
11
+ primary: {
12
+ 50: '#eff6ff',
13
+ 100: '#dbeafe',
14
+ 200: '#bfdbfe',
15
+ 300: '#93c5fd',
16
+ 400: '#60a5fa',
17
+ 500: '#3b82f6',
18
+ 600: '#2563eb',
19
+ 700: '#1d4ed8',
20
+ 800: '#1e40af',
21
+ 900: '#1e3a8a',
22
+ },
23
+ dark: {
24
+ bg: '#0f172a',
25
+ surface: '#1e293b',
26
+ border: '#334155'
27
+ }
28
+ },
29
+ fontFamily: {
30
+ sans: ['Inter', 'sans-serif'],
31
+ },
32
+ },
33
+ },
34
+ plugins: [],
35
+ }