-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 877 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 877 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
const colors = require('tailwindcss/colors')
module.exports = {
future: {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
theme: {
extend: {
screens: {
'touch': { raw: '(hover: none)' },
'mouse': { raw: '(hover: hover)' },
},
colors: {
primary: colors.cyan,
secondary: colors.blue,
primary2: colors.purple,
secondary2: colors.pink,
incorrect: colors.rose,
correct: colors.lime,
skipped: colors.neutral,
submit: colors.purple,
},
inset: {
'1/16': '6.25%',
'2/16': '12.5%',
'4/16': '25%',
'7/16': '43.75%',
'11/16': '68.75%',
},
borderColor: {
DEFAULT: colors.white,
},
},
},
plugins: [
],
content: [
"./src/**/*.svelte",
"./src/**/*.js",
]
};