forked from cursive-team/nfc-denver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
48 lines (47 loc) · 1.03 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
screens: {
xs: "376px",
},
fontSize: {
xs: "12px",
},
lineHeight: {
4: "16px",
8: "24px",
},
colors: {
skeleton: "#1b1b1b",
candy: {
DEFAULT: "#8C00A3",
200: "#580067",
},
black: {
DEFAULT: "#111",
},
gray: {
100: "#D7D7D7",
200: "#1B1B1B",
300: "#282828",
400: "#303030",
600: "#606060",
700: "#4A4A4A",
900: "#6E6E6E",
10: "#808080",
11: "#B1B1B1",
12: "#EEE",
},
},
},
},
plugins: [require("daisyui")],
};
export default config;