-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (42 loc) · 918 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (42 loc) · 918 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
"./projects/**/*.{html,ts}",
],
theme: {
extend: {
colors: {
primary: {
50 : '#eae8f8',
100 : '#cac6ef',
200 : '#a7a1e4',
300 : '#847bd9',
400 : '#695ed0',
500 : '#4f42c8',
600 : '#483cc2',
700 : '#3f33bb',
800 : '#362bb4',
900 : '#261da7',
A100 : '#e1e0ff',
A200 : '#b1adff',
A400 : '#807aff',
A700 : '#6860ff',
},
accent: {
50: '#e8feef',
100: '#c8fcd8',
200: '#a2fabf',
300: '#79f7a6',
400: '#59f192',
500: '#36eb7f',
600: '#2ada73',
700: '#1ac565',
800: '#0bb35a',
900: '#009144'
}
}
},
},
plugins: [],
}