forked from serversideup/financial-freedom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (64 loc) · 1.99 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: [
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
colors: {
'modal-background': 'rgba( 17, 34, 60, .6)',
'astronaut': {
50: '#F3F5F8',
100: '#E8EBF1',
200: '#C5CDDB',
300: '#A2AEC5',
400: '#5C729A',
500: '#16356E',
600: '#143063',
700: '#0D2042',
800: '#0A1832',
900: '#071021',
},
'golden-grass': {
50: '#FDFAF4',
100: '#FBF6EA',
200: '#F4E8C9',
300: '#EDDBA9',
400: '#E0BF69',
500: '#D3A428',
600: '#BE9424',
700: '#7F6218',
800: '#5F4A12',
900: '#3F310C',
},
'himalaya': {
50: '#F7F7F4',
100: '#F0EFE8',
200: '#D8D6C6',
300: '#C1BDA4',
400: '#938C5F',
500: '#645A1B',
600: '#5A5118',
700: '#3C3610',
800: '#2D290C',
900: '#1E1B08',
}
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
zIndex: {
'modal': 9999999,
}
},
},
variants: {
opacity: ['responsive', 'hover', 'focus', 'disabled'],
},
plugins: [
require('@tailwindcss/forms'),
],
};