summaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..ce94ce1
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,18 @@
1const defaultTheme = require('tailwindcss/defaultTheme')
2
3module.exports = {
4 future: {
5 // removeDeprecatedGapUtilities: true,
6 // purgeLayersByDefault: true,
7 },
8 purge: [],
9 theme: {
10 extend: {
11 fontFamily: {
12 sans: ['Inter var', ...defaultTheme.fontFamily.sans],
13 },
14 },
15 },
16 variants: {},
17 plugins: [],
18}