Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/tailwind.config.js')
-rw-r--r--assets/css/tailwind.config.js39
1 files changed, 37 insertions, 2 deletions
diff --git a/assets/css/tailwind.config.js b/assets/css/tailwind.config.js
index 6e75cf0..ac6d7f2 100644
--- a/assets/css/tailwind.config.js
+++ b/assets/css/tailwind.config.js
@@ -1,9 +1,44 @@
module.exports = {
theme: {
- extend: {}
+ fontFamily: {
+ sans: [
+ 'Inter',
+ 'system-ui',
+ '-apple-system',
+ 'BlinkMacSystemFont',
+ 'Segoe UI',
+ 'Roboto',
+ 'Helvetica Neue',
+ 'Arial',
+ 'Noto Sans',
+ 'sans-serif',
+ 'Apple Color Emoji',
+ 'Segoe UI Emoji',
+ 'Segoe UI Symbol',
+ 'Noto Color Emoji',
+ ],
+ serif: [
+ 'Georgia',
+ 'Cambria',
+ 'Times New Roman',
+ 'Times',
+ 'serif',
+ ],
+ mono: [
+ 'Menlo',
+ 'Monaco',
+ 'Consolas',
+ 'Liberation Mono',
+ 'Courier New',
+ 'monospace'
+ ]
+ },
},
variants: {},
plugins: [
require('@tailwindcss/ui'),
- ]
+ ],
+ future: {
+ removeDeprecatedGapUtilities: true,
+ },
}