-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
49 lines (47 loc) · 1.11 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
const { guessProductionMode } = require('@ngneat/tailwind');
process.env.TAILWIND_MODE = guessProductionMode() ? 'build' : 'watch';
module.exports = {
prefix: '',
mode: 'jit',
purge: {
content: ['./apps/**/*.{html,ts,css,scss,sass,less,styl}', './libs/**/*.{html,ts,css,scss,sass,less,styl}']
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
50: '#f4fbfa',
100: '#e9f7f5',
200: '#c7ebe5',
300: '#a5dfd6',
400: '#62c7b7',
500: '#1faf98',
600: '#1c9e89',
700: '#178372',
800: '#13695b',
900: '#0f564a'
},
secondary: {
50: '#f5fcfe',
100: '#ebf8fd',
200: '#cdeefb',
300: '#afe4f8',
400: '#72d0f3',
500: '#36bcee',
600: '#31a9d6',
700: '#298db3',
800: '#20718f',
900: '#1a5c75'
}
},
animation: {
pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite'
}
}
},
variants: {
extend: {}
},
plugins: []
};