-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (60 loc) · 1.47 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
59
60
61
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
const autonomiColors = {
red: {
300: "#FF3355",
},
blue: {
200: "#A9A9F2",
600: "#26264C",
800: "#11113B",
},
gray: {
50: "#F8F8FA",
100: "#F2F2F6",
200: "#E4E7EC",
300: "#CCCCCC",
500: "#8994A3",
600: "#666666",
},
green: {
300: "#60C281",
},
};
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
colors: {
...colors,
autonomi: {
...autonomiColors,
header: {
text: {
DEFAULT: autonomiColors.blue[600],
dark: autonomiColors.blue[800],
},
},
text: {
primary: {
DEFAULT: autonomiColors.gray[500],
dark: autonomiColors.gray[300],
},
secondary: {
DEFAULT: autonomiColors.blue[600],
dark: autonomiColors.gray[300],
},
},
},
},
extend: {},
},
darkMode: ["class"],
plugins: [require("tailwindcss-primeui")]
};