-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
116 lines (115 loc) · 3.5 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
import { fontFamily } from 'tailwindcss/defaultTheme';
export default <Partial<Config>>{
mode: 'jit',
content: [
`./app/components/**/*.{vue,js,ts}`,
`./app/layouts/**/*.vue`,
`./app/pages/**/*.vue`,
`./app/composables/**/*.{js,ts}`,
`./app/plugins/**/*.{js,ts}`,
`./app/store/**/*.{js,ts}`,
`./app/utils/**/*.{js,ts}`,
`./app/App.{js,ts,vue}`,
`./app/app.{js,ts,vue}`,
`./app/Error.{js,ts,vue}`,
`./app/error.{js,ts,vue}`,
`./app/app.config.{js,ts}`,
`./nuxt.config.{js,ts}`,
],
theme: {
extend: {
colors: {
base: {
100: '#e2e3e6',
200: '#c4c6cd',
300: '#a7aab4',
400: '#898d9b',
500: '#6c7182',
600: '#565a68',
700: '#41444e',
800: '#2b2d34',
900: '#16171a',
},
error: {
100: '#f7d4d7',
200: '#efa8af',
300: '#e77d88',
400: '#df5160',
500: '#d72638',
600: '#ac1e2d',
700: '#811722',
800: '#560f16',
900: '#2b080b',
},
warn: {
100: '#fdefd5',
200: '#fbdfab',
300: '#face81',
400: '#f8be57',
500: '#f6ae2d',
600: '#c58b24',
700: '#94681b',
800: '#624612',
900: '#312309',
},
info: {
100: '#ddf8f9',
200: '#bbf1f3',
300: '#99ebec',
400: '#77e4e6',
500: '#55dde0',
600: '#44b1b3',
700: '#338586',
800: '#22585a',
900: '#112c2d',
},
success: {
100: '#d3f5e1',
200: '#a7ebc4',
300: '#7be2a6',
400: '#4fd889',
500: '#23ce6b',
600: '#1ca556',
700: '#157c40',
800: '#0e522b',
900: '#072915',
},
},
fontFamily: {
sans: ['DM Sans', 'DM Sans fallback', ...fontFamily.sans],
},
maxWidth: {
screen: '100vw',
},
height: {
dscreen: '100dvh',
},
animation: {
wiggle: 'wiggle 1s infinite',
},
keyframes: {
wiggle: {
'0%': {
transform: 'rotate(0deg)',
},
'80%': {
transform: 'rotate(0deg)',
},
'85%': {
transform: 'rotate(5deg)',
},
'95%': {
transform: 'rotate(-5deg)',
},
'100%': {
transform: 'rotate(0deg)',
},
},
},
zIndex: {
'150': '150',
},
},
},
};