-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (56 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
// relative: true,
// files: [
// './pages/**/*.{html,js}',
// './components/**/*.{html,js}',
// ],
},
safelist: [
// 'hover:bg-zinc-200',
],
theme: {
extend: {
colors: {
// TFM colors
brand: {
50: '#f1edff',
100: '#dbd3ff',
200: '#c9beff',
300: '#a18eff',
400: '#7a5eff',
500: '#6342ff',
600: '#5337d7',
700: '#3e28a3',
800: '#2b1c70',
900: '#1f1258',
950: '#0f082b'
},
main: {
50: '#edfffb',
100: '#dafff6',
200: '#b5ffed',
300: '#91ffe6',
400: '#6cffdd',
500: '#47ffd4',
600: '#41ebc3',
// 600: '#3cd7b3',
700: '#31af91',
800: '#268770',
900: '#1b5f4f',
950: '#0c2822'
}
}
},
fontFamily: {
'sans': ['Assistant', 'system-ui'],
'serif': ['ui-serif', 'Georgia'],
'mono': ['ui-monospace', 'SFMono-Regular'],
'display': ['Oswald'],
'body': ['"Open Sans"'],
// 'body': ['"Miriam Libre"'],
}
},
plugins: [],
}