-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
71 lines (71 loc) · 1.85 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
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false,
theme: {
extend: {
backgroundImage: () => ({
'sprite-background': "url('/images/icons.png')",
}),
boxShadow: {
fb: '0 -2px 5px rgb(128,128,128)',
fbpanel: '0 1px 10px grey',
img: '2px 3px 12px #d3d3d3',
},
// compiled the css with the below primary and secondary colors and linked with _app.tsx.
colors: {
primary: '#C54582',
secondary: '#F4DCF4',
'app-background': '#fff',
orange: '#ff5a42',
workItem: '#f5f5dc',
workItemActive: '#81816d',
plannedIncome: 'rgba(97,255,42,.43)',
plannedExpense: 'rgba(255,114,114,.49)',
summaryItemTitle: 'rgb(209,213,219)',
summaryModalBackground: 'rgb(255,255,255)',
summaryBackground: 'rgb(0,0,0,0.5)',
},
fontFamily: {
sans: [
'Source Sans Pro',
'sans-serif',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'"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',
],
},
flex: {
2: '2',
},
gridTemplateColumns: {
financeHeader: '24rem 1fr',
},
},
},
variants: {
extend: {},
},
plugins: [],
}