-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.31 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
fontFamily: {
sans: ["Lato", "Fallback", "sans-serif"],
},
extend: {
colors: {
primary: {
"2%": "rgba(0, 0, 255, 0.02)",
"4%": "rgba(0, 0, 255, 0.04)",
"8%": "rgba(0, 0, 255, 0.08)",
"32%": "rgba(0, 0, 255, 0.32)",
50: "#EBEBFF",
500: "#0101FF",
600: "#0000b0",
},
secondary: {
"2%": "rgba(255, 0, 122, 0.02)",
"4%": "rgba(255, 0, 122, 0.04)",
"60%": "rgba(255, 0, 122, 0.60)",
500: "#FF007A",
},
dark: {
"2%": "rgba(0, 0, 26, 0.02)",
"4%": "rgba(0, 0, 26, 0.04)",
"8%": "rgba(0, 0, 26, 0.08)",
"32%": "rgba(0, 0, 26, 0.32)",
"60%": "rgba(0, 0, 26, 0.6)",
"80%": "rgba(0, 0, 26, 0.8)",
500: "#00001A",
},
light: {
50: "#f7f7f7",
},
"white-40%": "rgba(255, 255, 255, 0.4)",
"white-60%": "rgba(255, 255, 255, 0.6)",
success: "#3ec300",
error: "#ed1d01",
},
},
},
plugins: [],
};