-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (60 loc) · 1.33 KB
/
tailwind.config.js
File metadata and controls
60 lines (60 loc) · 1.33 KB
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
module.exports = {
content: ["./web/templates/**/*.html", "./web/static/**/*.js"],
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
dark: {
50: '#f7f7f7',
100: '#e3e3e3',
200: '#c8c8c8',
300: '#a4a4a4',
400: '#818181',
500: '#666666',
600: '#515151',
700: '#434343',
800: '#383838',
900: '#1a1a1a',
},
success: {
300: '#4ade80',
400: '#22c55e',
500: '#16a34a',
600: '#15803d',
700: '#166534',
800: '#14532d',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
}
},
},
plugins: [
function({ addUtilities }) {
const newUtilities = {
'.scrollbar-thin': {
scrollbarWidth: 'thin',
},
'.scrollbar-thumb-dark-500': {
scrollbarColor: '#666666 #434343',
},
'.scrollbar-track-dark-800': {
scrollbarColor: '#434343 #383838',
},
}
addUtilities(newUtilities)
}
],
}