diff options
| author | Jfriedli | 2021-03-18 10:38:18 +0100 |
|---|---|---|
| committer | Jfriedli | 2021-03-18 10:38:18 +0100 |
| commit | 7f253f71866a35a4c681a9ac37109d0ea4ab3d0e (patch) | |
| tree | 8f3dd049d4d75db00832017403cd7a0fc78f7616 /tailwind.config.js | |
| parent | 170d77b3ecb2d0c5c35263a2f5598002af599a43 (diff) | |
started restyling
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 13 |
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 | ||
| 3 | module.exports = { | 3 | module.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 | } |
