This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
95 lines (95 loc) · 2.18 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
module.exports = {
content: [
'start/**/*.ts',
'./resources/views/**/*.edge',
'./resources/css/**/*.css',
'./resources/js/**/*.js',
'./resources/js/**/*.ts',
'./start/view.ts',
],
theme: {
extend: {
colors: {
mee: {
primary: {
base: '#931c1c',
dark: '#5f0000',
light: '#d56d6d',
grey: {
base: '#c6bfbf',
dark: '#746363',
light: '#e2dede',
},
},
secondary: {
base: '#1c9284',
dark: '#006156',
light: '#6dd5c8',
},
},
associations: {
primary: {
base: '#1c8b92',
dark: '#005a61',
light: '#6dced5',
grey: {
base: '#bec5c5',
dark: '#637374',
light: '#dee2e2',
},
},
secondary: {
base: '#921c6a',
dark: '#610041',
light: '#d56db2',
},
},
evenements: {
primary: {
base: '#9a8019',
dark: '#655410',
light: '#ffe46b',
grey: {
base: '#c5c4be',
dark: '#747063',
light: '#e2e2df',
},
},
secondary: {
base: '#4720bb',
dark: '#2b1371',
light: '#6b86ff',
grey: {
base: '#c0bec5',
dark: '#676374',
light: '#dcdde0',
},
},
},
tutorat: {
primary: {
base: '#1c5392',
dark: '#002d61',
light: '#6d9dd5',
grey: {
base: '#bec2c5',
dark: '#636b74',
light: '#dee0e2',
},
},
secondary: {
base: '#1c925d',
dark: '#006135',
light: '#6dd5a6',
grey: {
base: '#bec5c2',
dark: '#63746c',
light: '#dee2e0',
},
},
},
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
}