-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 973 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
fontFamily: { sans: ['Poppins', 'sans-serif'] },
extend: {
keyframes: {
blink: {
'0%, 100%': { opacity: 1 },
'50%': { opacity: 0 }
}
},
animation: {
blink: 'blink 1s step-start infinite'
},
colors: {
bgColor: '#222224',
cardColor: '#404643',
textColor: '#fffffe',
'mountain-meadow': {
50: '#eefbf4',
100: '#d7f4e3',
200: '#b1e9ca',
300: '#7fd6ad',
400: '#4abd8a',
500: '#2cb67d',
600: '#198258',
700: '#146849',
800: '#12533c',
900: '#104432',
950: '#08261d'
},
silver: {
50: '#f7f7f7',
100: '#ededed',
200: '#dfdfdf',
300: '#c6c6c6',
400: '#adadad',
500: '#999999',
600: '#888888',
700: '#7b7b7b',
800: '#676767',
900: '#545454',
950: '#363636'
}
}
}
},
plugins: []
};