-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (57 loc) · 1.29 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
57
58
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./content/**/*.{md,yml,json,yaml,toml,csv}",
"./app.vue",
],
darkMode: "class",
theme: {
letterSpacing: {
wider: "0.1em",
widest: "0.2em",
},
extend: {
colors: {
primary: {
DEFAULT: colors.orange[400],
...colors.orange,
},
secondary: {
DEFAULT: colors.slate[50],
...colors.slate,
},
accent: {
DEFAULT: "#098fe5",
...colors.cyan,
},
dprimary: {
DEFAULT: colors.blue[500],
...colors.blue,
},
dsecondary: {
DEFAULT: colors.slate[900],
...colors.slate,
},
daccent: {
DEFAULT: colors.blue[800],
...colors.blue,
},
},
fontFamily: {
sans: ["Inter"],
serif: ["DM Serif Display"],
logo: ["Subway graph, Inter"],
},
boxShadow: {
md: "0 0 8px rgb(0 220 130 / 67%)",
md2: "0 0 16px rgb(0 220 130 / 67%)",
},
},
},
plugins: [require("@tailwindcss/typography")],
};