-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
78 lines (77 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import type { Config } from "tailwindcss";
// eslint-disable-next-line import/no-extraneous-dependencies -- Tailwind is build-time only
import * as colors from "tailwindcss/colors";
export default {
content: ["./app/**/*.{ts,tsx,jsx,js}"],
theme: {
extend: {
colors: {
primary: {
DEFAULT: colors.zinc[50],
muted: colors.zinc[500],
},
secondary: {
DEFAULT: colors.zinc[900],
section: colors.zinc[800],
},
outline: colors.zinc[400],
link: {
DEFAULT: colors.zinc[400],
hover: colors.zinc[500],
warning: {
DEFAULT: colors.yellow[300],
hover: colors.yellow[400],
},
},
button: {
muted: {
bg: {
DEFAULT: colors.zinc[600],
hover: colors.zinc[500],
},
text: {
DEFAULT: colors.zinc[200],
hover: colors.zinc[100],
},
border: colors.zinc[700],
},
primary: {
bg: {
DEFAULT: colors.blue[800],
hover: colors.blue[700],
},
text: {
DEFAULT: colors.zinc[100],
hover: colors.zinc[100],
},
border: colors.blue[700],
},
destructive: {
bg: {
DEFAULT: colors.red[800],
hover: colors.red[700],
},
text: {
DEFAULT: colors.zinc[100],
hover: colors.zinc[100],
},
border: colors.red[700],
},
},
input: {
bg: colors.zinc[700],
text: colors.zinc[100],
border: colors.zinc[600],
},
fieldset: {
DEFAULT: colors.zinc[600],
},
warning: {
bg: colors.orange[700],
},
error: colors.red[700],
},
},
},
plugins: [],
} satisfies Config;