-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 926 Bytes
/
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
const srcDir = '.';
export default {
theme: {
extend: {
fontFamily: {
oswald: ['Oswald', 'sans-serif'],
inter: ['Inter', 'sans-serif']
},
gridTemplateColumns: {
game: 'repeat(8, minmax(150px, 1fr))'
},
colors: {
red: {
50: '#fef2f3',
100: '#fee2e4',
200: '#fecace',
300: '#fca5ab',
400: '#f9707a',
500: '#f04350',
600: '#dd2532',
700: '#c01c28',
800: '#9a1a23',
900: '#801c23',
950: '#450a0e'
},
graynurse: {
50: '#f7f7f6',
100: '#eceeea',
200: '#dce0d9',
300: '#b9c1b4',
400: '#939e8a',
500: '#717e69',
600: '#5b6653',
700: '#495144',
800: '#3d4338',
900: '#32382f',
950: '#191c17'
}
}
}
},
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./app.vue',
'./error.vue'
],
plugins: []
};