-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 917 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 917 Bytes
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
module.exports = {
theme: {
extend: {
colors: {
foreground: {
primary: "var(--color-text-primary)",
secondary: "var(--color-text-secondary)",
tertiary: "var(--color-text-tertiary)",
},
background: {
primary: "var(--color-bg-primary)",
secondary: "var(--color-bg-secondary)",
},
border: {
primary: "var(--color-border-primary)",
active: "var(--color-href-hover)",
},
href: {
base: "var(--color-href-base)",
hover: "var(--color-href-hover)",
active: "var(--color-href-active)",
},
discord: "#5865F2",
},
},
},
variants: {},
plugins: [
require('@tailwindcss/aspect-ratio'),
],
content: [
'./src/components/*.tsx',
'./src/components/**/*.tsx',
'./src/pages/*.tsx',
'./src/pages/**/*.tsx',
],
};