-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
65 lines (65 loc) · 2.27 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
module.exports = {
content: ["./public/**/*.{html,js}","./pages/**/*.{html,js}"],
theme: {
fontFamily: {
"sans": 'ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
"serif": 'ui-serif, Georgia, Cambria, "Times New Roman", Times, serif',
"mono": 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
"bitovipoopins": 'Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"'
},
extend: {
colors: {
notstarted: '#97A0AF', /* N80 - Spooky ghost */
complete: '#36B37E',
ontrack: '#4C9AFF',
behind: '#FFC400',
blue: {
500: '#0747A6',
400: '#0052CC', // primary color
300: '#0065FF', // this is what we use
200: '#4C9AFF',
// 100: '#4C9AFF',
75: '#B3D4FF' // highlight effect
},
green: {
500: '#006644',
400: '#00875A',
300: '#36B37E',
200: '#57D9A3',
// 100: '#79F2C0',
75: '#ABF5D1'
},
red: {
500: '#BF2600'
},
yellow: {
500: '#FF8B00',
300: '#FFAB00',
},
neutral: {
800: '#172B4D',
600: '#344563',
200: '#6B778C',
100: '#7A869A',
80: '#97A0AF',
50: '#C1C7D0',
40: '#DFE1E6', // secondary buttton color
30: '#EBECF0',
20: '#F4F5F7', // stripe color
10: '#FAFBFC' //
},
orange: {
400: '#F5532D' // Bitovi color
},
slate: {
400: '#505F79'
}
},
spacing: {
'112': '28rem',
'128': '32rem',
}
},
},
plugins: [],
}