-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
126 lines (126 loc) · 3.55 KB
/
Copy pathtailwind.config.js
File metadata and controls
126 lines (126 loc) · 3.55 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/renderer/index.html',
'./src/renderer/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#3B82F6',
50: '#EBF2FE',
100: '#D7E6FD',
200: '#AFCDFB',
300: '#87B4F9',
400: '#5F9BF7',
500: '#3B82F6',
600: '#0B61EE',
700: '#084BB8',
800: '#063582',
900: '#041F4C',
},
secondary: {
DEFAULT: '#8B5CF6',
50: '#F5F0FE',
100: '#EBE1FD',
200: '#D7C3FB',
300: '#C3A5F9',
400: '#AF87F7',
500: '#8B5CF6',
600: '#7C3AED',
700: '#6D28D9',
800: '#5B21B6',
900: '#4C1D95',
},
background: {
DEFAULT: '#0A0A0F',
50: '#3A3A4F',
100: '#2A2A3F',
200: '#1A1A2F',
300: '#12121F',
400: '#0F0F18',
500: '#0A0A0F',
600: '#070709',
700: '#040405',
800: '#020202',
900: '#000000',
},
surface: {
DEFAULT: '#12121A',
50: '#42425A',
100: '#32324A',
200: '#22223A',
300: '#1A1A2A',
400: '#16162A',
500: '#12121A',
600: '#0E0E15',
700: '#0A0A10',
800: '#06060B',
900: '#020206',
},
border: {
DEFAULT: '#1E1E2E',
50: '#5E5E7E',
100: '#4E4E6E',
200: '#3E3E5E',
300: '#2E2E4E',
400: '#26263E',
500: '#1E1E2E',
600: '#16162A',
700: '#0E0E1A',
800: '#06060E',
900: '#020206',
},
success: '#10B981',
warning: '#F59E0B',
error: '#EF4444',
info: '#3B82F6',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin-slow': 'spin 3s linear infinite',
'fade-in': 'fadeIn 0.3s ease-in-out',
'slide-up': 'slideUp 0.3s ease-out',
'slide-down': 'slideDown 0.3s ease-out',
'scale-in': 'scaleIn 0.2s ease-out',
'shimmer': 'shimmer 2s linear infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(10px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideDown: {
'0%': { transform: 'translateY(-10px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.95)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
shimmer: {
'0%': { backgroundPosition: '-1000px 0' },
'100%': { backgroundPosition: '1000px 0' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'starfield': 'radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 50%), radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.15) 0%, transparent 50%)',
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
};