-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (55 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
`./components/**/*.{vue,js,ts}`,
`./layouts/**/*.vue`,
`./pages/**/*.vue`,
`./composables/**/*.{js,ts}`,
`./plugins/**/*.{js,ts}`,
`./utils/**/*.{js,ts}`,
`./App.{js,ts,vue}`,
`./app.{js,ts,vue}`,
`./Error.{js,ts,vue}`,
`./error.{js,ts,vue}`,
`./app.config.{js,ts}`,
"docs/content/**/*.md",
],
theme: {
extend: {
fontFamily: {
inter: ["Inter", "sans-serif"],
barlow: ["Barlow", "sans-serif"],
dmsans: ["DM Sans", "sans-serif"],
},
colors: {
mirage: {
50: "#f0f7fe",
100: "#deecfb",
200: "#c4e0f9",
300: "#9cccf4",
400: "#6dafed",
500: "#4b90e6",
600: "#3674da",
700: "#2d60c8",
800: "#2a4fa3",
900: "#274481",
950: "#0f172a",
},
emerald: {
50: "#edfff7",
100: "#d5ffee",
200: "#aeffde",
300: "#70ffc6",
400: "#2bfda7",
500: "#00dc82",
600: "#00c06d",
700: "#009658",
800: "#067549",
900: "#07603e",
950: "#003721",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};