generated from redlotus-io/reactify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (34 loc) · 913 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./src/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
screens: {
min: "340px",
xs: "460px",
xs2: "500px",
// sm: "640px",
},
},
fontFamily: {
varela: ["Varela Round", "sans-serif"],
sans: ["Rubik", "sans-serif"],
},
linearBorderGradients: () => ({
colors: {
"light-green": [colors.emerald[500], colors.green[500], colors.lime[500]],
"light-blue": [colors.teal[500], colors.emerald[500], colors.green[500]],
},
background: {
white: "#fff",
},
}),
},
plugins: [
require("tailwind-scrollbar"),
require("tailwind-scrollbar-hide"),
require("tailwindcss-border-gradient-radius"),
],
};