-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1020 Bytes
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1020 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
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
],
presets: [require('uniwind/tailwind')],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#4C6FFF',
dark: '#3B5BDB',
light: '#6B8AFF',
},
secondary: {
DEFAULT: '#6C5CE7',
dark: '#5B4BCE',
light: '#8B7CF0',
},
success: '#2ECC71',
warning: '#F39C12',
error: '#E74C3C',
info: '#3498DB',
background: '#F7F9FC',
surface: '#FFFFFF',
border: '#E5E7EB',
text: {
primary: '#1F1F1F',
secondary: '#7A7A7A',
tertiary: '#A0A0A0',
light: '#FFFFFF',
},
},
borderRadius: {
'xl': '16px',
'2xl': '20px',
'3xl': '24px',
},
spacing: {
'18': '72px',
'22': '88px',
},
},
},
plugins: [],
};