summaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js13
1 files changed, 10 insertions, 3 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
index ce94ce1..74b3d31 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -2,17 +2,24 @@ const defaultTheme = require('tailwindcss/defaultTheme')
2 2
3module.exports = { 3module.exports = {
4 future: { 4 future: {
5 // removeDeprecatedGapUtilities: true,
6 // purgeLayersByDefault: true,
7 }, 5 },
8 purge: [], 6 purge: [],
9 theme: { 7 theme: {
10 extend: { 8 extend: {
9 colors: {
10 blue: {
11 light: '#f4f7fb',
12 DEFAULT: '#99c1f1',
13 dark: '#1b5eb4',
14 }
15 },
11 fontFamily: { 16 fontFamily: {
12 sans: ['Inter var', ...defaultTheme.fontFamily.sans], 17 sans: ['Inter var', ...defaultTheme.fontFamily.sans],
13 }, 18 },
14 }, 19 },
15 }, 20 },
16 variants: {}, 21 variants: {},
17 plugins: [], 22 plugins: [
23 require('@tailwindcss/forms'),
24 ],
18} 25}