-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
154 lines (148 loc) · 5.01 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors')
module.exports = {
purge: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
fontFamily: {
// sans: ['Nunito', ...defaultTheme.fontFamily.sans],
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
sniglet: ['Sniglet']
},
colors: {
lime: colors.lime,
orange: colors.orange,
amber: colors.amber,
emerald: colors.emerald,
teal: colors.teal,
cyan: colors.cyan,
sky: colors.sky,
purple: colors.purple,
violet: colors.violet,
fuchsia: colors.fuchsia,
rose: colors.rose,
warmGray: colors.warmGray,
blueGray: colors.blueGray,
// parentPrimay: '#06B6D4',
// parentPrimaryHover: '#0891B2',
// kidsPrimary: '#F59E0B',
// kidsPrimaryHover: '#D97706',
// kidsSecondary: '#FACC15',
// kidsSecondaryHover: '#EAB308',
'parent-50':'#EFFCF6',
'parent-100':'#C6F7E2',
'parent-200':'#8EEDC7',
'parent-300':'#65D6AD',
'parent-400':'#3EBD93',
'parent-500':'#27AB83',
'parent-600':'#199473',
'parent-700':'#147D64',
'parent-800':'#0C6B0C',
'parent-900':'014D40',
'kid-50': '#FFE8D9',
'kid-100': '#FFD0B5',
'kid-200': '#FFB088',
'kid-300': '#FF9466',
'kid-400': '#F9703E',
'kid-500': '#F35627',
'kid-600': '#DE3A11',
'kid-700': '#C52707',
'kid-800': '#AD1D07',
'kid-900': '#841003',
},
boarderColor: {
lime: colors.lime,
orange: colors.orange,
amber: colors.amber,
emerald: colors.emerald,
teal: colors.teal,
cyan: colors.cyan,
sky: colors.sky,
purple: colors.purple,
violet: colors.violet,
fuchsia: colors.fuchsia,
rose: colors.rose,
warmGray: colors.warmGray,
blueGray: colors.blueGray,
'parent-50':'#EFFCF6',
'parent-100':'#C6F7E2',
'parent-200':'#8EEDC7',
'parent-300':'#65D6AD',
'parent-400':'#3EBD93',
'parent-500':'#27AB83',
'parent-600':'#199473',
'parent-700':'#147D64',
'parent-800':'#0C6B0C',
'parent-900':'014D40',
'kid-50': '#FFE8D9',
'kid-100': '#FFD0B5',
'kid-200': '#FFB088',
'kid-300': '#FF9466',
'kid-400': '#F9703E',
'kid-500': '#F35627',
'kid-600': '#DE3A11',
'kid-700': '#C52707',
'kid-800': '#AD1D07',
'kid-900': '#841003',
},
height: {
'kids': 'calc(100vh - 10%)',
'90v': '90vh',
'85v': '85vh',
'80v': '80vh',
'30v': '30vh',
'25v': '25vh',
'20v': '20vh',
'128': '32rem',
},
maxWidth: {
'8xl': '92rem'
},
minHeight: {
'90v': '90vh',
'85v': '85vh',
'80v': '80vh',
'kids': 'calc(100vh - 10%)'
},
width: {
'128': '32rem',
'148': '42rem',
'90v': '90vw',
'85v': '85vw',
'80v': '80vw',
'30v': '30vw',
'25v': '25vw',
'20v': '20vw',
'15v': '15vw',
'10v': '10vw',
},
borderWidth: {
'3': '3px',
},
fontWeight: {
'normalHeavy': '450',
},
inset: {
'1/5': '20%',
'1/6': '16.7%',
'1/8': '12.5%',
'1/10': '10%',
}
},
},
variants: {
extend: {
opacity: ['disabled'],
display: ["group-hover"],
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
};