forked from SwiftChainn/SwiftChain_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (38 loc) · 891 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
39 lines (38 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// @ts-ignore - Tailwind CSS v4 type resolution
import type { Config } from 'tailwindcss';
// Tailwind CSS configuration
const config: Config = {
darkMode: 'class',
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./features/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
primary: {
DEFAULT: '#0066FF',
dark: '#004Cbf',
light: '#3385ff',
50: '#e5f0ff',
100: '#cce0ff',
500: '#0066FF',
900: '#002966',
},
secondary: {
DEFAULT: '#F59E0B',
dark: '#D97706',
},
success: {
DEFAULT: '#10B981',
dark: '#059669',
},
},
},
},
plugins: [],
};
export default config;