-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
114 lines (114 loc) · 2.56 KB
/
tailwind.config.js
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
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./node_modules/flowbite/**/*.{js,ts}",
],
theme: {
container: {
padding: '1rem',
center: true,
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1440px',
},
},
extend: {
fontFamily: {
inter: ['"Inter"', "sans-serif"]
},
colors: {
gray: {
25: '#FCFCFD',
50: '#F9FAFB',
100: '#F2F4F7',
200: '#EAECF0',
300: '#D0D5DD',
400: '#98A2B3',
500: '#667085',
600: '#475467',
700: '#344054',
800: '#182230',
900: '#101828',
950: '#0C111D'
},
brand: {
25: '#FCFDFF',
50: '#EBF1FF',
100: '#C2D4FD',
200: '#A5BFFD',
300: '#7CA1FC',
400: '#628FFB',
500: '#3B73FA',
600: '#3669E4',
700: '#2A52B2',
800: '#203F8A',
900: '#193069',
950: '#13244D'
},
error: {
25: '#FFFBFA',
50: '#FEF3F2',
100: '#FEE4E2',
200: '#FECDCA',
300: '#FDA29B',
400: '#F97066',
500: '#F04438',
600: '#D92D20',
700: '#B42318',
800: '#912018',
900: '#7A271A',
950: '#55160C'
},
warning: {
25: '#FFFCF5',
50: '#FFFAEB',
100: '#FEF0C7',
200: '#FEDF89',
300: '#FEC84B',
400: '#FDB022',
500: '#F79009',
600: '#DC6803',
700: '#B54708',
800: '#93370D',
900: '#7A2E0E',
950: '#4E1D09'
},
success: {
25: '#F6FEF9',
50: '#ECFDF3',
100: '#DCFAE6',
200: '#ABEFC6',
300: '#75E0A7',
400: '#47CD89',
500: '#17B26A',
600: '#079455',
700: '#067647',
800: '#085D3A',
900: '#074D31',
950: '#053321'
}
},
boxShadow: {
'xs': '0 1px 2px 0 #1018280D',
'field': '0 2px 4px -2px #3B73FA0F, 0 4px 8px -2px #3B73FA1A'
},
backgroundImage: (theme) => ({
"overlay-gradient-45": [
"45deg",
theme("colors.brand.800"),
theme("colors.brand.600"),
],
})
}
},
plugins: [
require('flowbite/plugin')
],
}