-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (33 loc) · 913 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js}'],
theme: {
extend: {
colors: {
mainColorDark: '#121212',
mainColorLight: '#F6F4F4',
textColorDark: '#E0E0E0',
textColorLight: '#212121',
secondaryColorDark: '#1E1E1E',
secondaryColorLight: '#D2D2E3',
addTaskButtonColorDark: '#555B6E',
addTaskButtonColorLight: '#A6A8BF',
timerAlertMainDark: '#334155',
timerAlertMainLight: '#E2E8F0',
timerAlertTextDark: '#E5E7EB',
timerAlertTextLight: '#1E293B',
timerAlertBorderDark: '#475569',
timerAlertBorderLight: '#CBD5E1',
},
fontFamily: {
'sans': ['Work Sans', 'Arial', 'Helvetica', 'Sans-serif']
},
screens: {
'sm': '750px',
'md': '900px',
'lg': '1400px'
}
},
},
plugins: [],
}