-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
74 lines (73 loc) · 1.74 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
gridTemplateRows: {
'timetable1': '40px repeat(20, 8px) repeat(8, 48px) repeat(16, 8px) repeat(14, 48px) repeat(8, 8px) repeat(14, 48px) repeat(15, 8px)',
'timetable2': '40px repeat(21, 8px) repeat(8, 48px) repeat(13, 8px) repeat(14, 48px) repeat(8, 8px) repeat(14, 48px) repeat(28, 8px)',
},
gridTemplateColumns: {
'timetable': '100px repeat(5, 1fr) 100px',
}
},
fontFamily: {
montserrat: ['Montserrat Alternates', 'sans-serif'],
},
colors: {
primary: {
DEFAULT: '#90629D',
50: '#EDF1F7',
100: '#E9E0EB',
200: '#D3C0D8',
300: '#A682B0',
400: '#A682B0',
500: '#90629D',
600: '#734F7D',
700: '#3A273F',
800: '#563B5E',
900: '#1D141F',
},
secondary: {
DEFAULT: '#4D70B2',
50: '#EDF1F7',
100: '#DBE2F0',
200: '#B8C6E0',
300: '#94A9D1',
400: '#708DC2',
500: '#4D70B2',
600: '#3D5A8F',
700: '#2E436B',
800: '#1F2D47',
900: '#0F1624',
},
tertiary: {
DEFAULT: '#1ADFE5',
50: '#E8FCFC',
100: '#D1F9FA',
200: '#A3F2F5',
300: '#75ECF0',
400: '#47E5EB',
500: '#1ADFE5',
600: '#14B2B8',
700: '#0F868A',
800: '#0A595C',
900: '#052D2E',
},
'white': {
DEFAULT: '#FFFFFF',
},
'alt-white': {
DEFAULT: '#FDFCEE',
},
'alt-black': {
DEFAULT: '#111C3B',
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}