cjo93 commited on
Commit
98ee3b4
·
verified ·
1 Parent(s): 75cb143

Create tailwind.config.ts

Browse files
Files changed (1) hide show
  1. tailwind.config.ts +38 -0
tailwind.config.ts ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import type { Config } from 'tailwindcss';
2
+
3
+ const config: Config = {
4
+ content: [
5
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6
+ './src/components/**/*.{js,ts,jsx,tsx,mdx}',
7
+ './src/app/**/*.{js,ts,jsx,tsx,mdx}',
8
+ ],
9
+ theme: {
10
+ extend: {
11
+ colors: {
12
+ void: '#050508',
13
+ surface: '#0d0d14',
14
+ panel: '#13131e',
15
+ border: '#1e1e2e',
16
+ accent: '#7c3aed',
17
+ 'accent-glow': '#a855f7',
18
+ signal: '#06b6d4',
19
+ warn: '#f59e0b',
20
+ danger: '#ef4444',
21
+ muted: '#4b5563',
22
+ subtle: '#6b7280',
23
+ primary: '#e2e8f0',
24
+ },
25
+ fontFamily: {
26
+ mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
27
+ sans: ['Inter', 'system-ui', 'sans-serif'],
28
+ },
29
+ animation: {
30
+ 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
31
+ 'spin-slow': 'spin 8s linear infinite',
32
+ },
33
+ },
34
+ },
35
+ plugins: [],
36
+ };
37
+
38
+ export default config;