-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (50 loc) · 1.19 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./*.html",
"./*.js",
"./public/**/*.html",
"./public/**/*.js",
"./app/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{html,js}",
"./node_modules/tw-elements/dist/js/**/*.js",
],
theme: {
extend: {
colors: {
primary: {
1: "#1D0707",
11: "#180707",
111: "#120707",
2: "#7c68c0",
3: "#e9e6f4",
4: "#8c7ac7",
5: "#A699CD",
100: "#E5E7EB",
200: "#b0ded2",
201: "#d7a1d8",
},
},
fontFamily: {
TheNeue: ["TheNeue", "Arial", "sans-serif"],
Inter: ["Inter", "Arial", "sans-serif"],
},
},
screens: {
sm: "360px",
// => @media (min-width: 640px) { ... }
md: "640px",
// => @media (min-width: 768px) { ... }
lg: "1280px",
// => @media (min-width: 1024px) { ... }
xl: "1920px",
// => @media (min-width: 1280px) { ... }
"2xl": "2560px",
// => @media (min-width: 1536px) { ... }
"3xl": "3840px",
},
},
mode: "jit",
plugins: [require("tw-elements/dist/plugin.cjs")],
darkMode: "class",
};