forked from cursive-team/nfc-denver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
61 lines (60 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
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",
},
fontFamily: {
sans: "var(--font-dm-sans)",
},
colors: {
skeleton: "#1b1b1b",
main: "var(--bg-primary)",
primary: "var(--color-primary)",
secondary: "var(--color-secondary)",
tertiary: "var(--color-tertiary)",
error: "var(--color-error)",
iron: {
50: "#F6F7F8",
200: "#D8DCDF",
300: "#C3C9CD",
600: "#7E8792",
800: "#5F656E",
900: "#4F5259",
950: "#323539",
},
black: {
DEFAULT: "#111",
},
gray: {
100: "#D7D7D7",
200: "#1B1B1B",
300: "#282828",
400: "#303030",
600: "#606060",
700: "#4A4A4A",
900: "#6E6E6E",
10: "#818181",
11: "#B1B1B1",
12: "#EEE",
},
},
},
},
plugins: [require("daisyui")],
};
export default config;