-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 1.11 KB
/
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
// 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
// md 768px
// lg 1024px
// xl 1280px
// 2xl 1536px
},
},
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]],
purple: [colors.blue[500], colors.pink[500], colors.purple[500]],
gray: [colors.gray[300], colors.slate[100], colors.gray[300]],
},
background: {
white: "#fff",
},
}),
},
plugins: [
require("tailwind-scrollbar"),
require("tailwind-scrollbar-hide"),
require("tailwindcss-border-gradient-radius"),
],
};