santiagr7776 commited on
Commit
957183b
·
verified ·
1 Parent(s): 0fbd996

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,mdx}',
5
+ './components/**/*.{js,ts,jsx,tsx,mdx}',
6
+ './app/**/*.{js,ts,jsx,tsx,mdx}',
7
+ ],
8
+ theme: {
9
+ extend: {
10
+ colors: {
11
+ titan: {
12
+ 900: '#0f172a',
13
+ 800: '#1e293b',
14
+ 700: '#334155',
15
+ accent: '#3b82f6',
16
+ danger: '#ef4444',
17
+ success: '#10b981',
18
+ warning: '#f59e0b',
19
+ }
20
+ },
21
+ fontFamily: {
22
+ mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
23
+ }
24
+ },
25
+ },
26
+ plugins: [],
27
+ }