generated from defientco/CRE8ORS-UI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
46 lines (45 loc) · 1002 Bytes
/
tailwind.config.js
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
43
44
45
46
/* eslint-disable global-require */
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
"./shared/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
hanson: ["Hanson", "serif"],
quicksand: ["Quicksand", "sans-serif"],
},
screens: {
ios: "320px",
samsungS8: "360px",
xs: "390px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1150px",
"2xl": "1315px",
"3xl": "1920px",
},
},
},
variants: {
extend: {
display: ["dark"],
},
},
darkMode: ["class"],
plugins: [
require("@tailwindcss/forms"),
require("tailwind-scrollbar")({ nocompatible: true }),
// ...
],
}