raouldukelivesagain commited on
Commit
a1ee2f3
·
verified ·
1 Parent(s): 4727466

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +19 -0
tailwind.config.js ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ primary: '#1e40af',
11
+ secondary: '#3b82f6',
12
+ accent: '#60a5fa',
13
+ dark: '#0f172a',
14
+ light: '#f8fafc',
15
+ },
16
+ },
17
+ },
18
+ plugins: [],
19
+ }