-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 871 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 871 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
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
],
theme: {
extend: {
colors: {
p2blue: {
100: "#F9FCFE",
200: "#EDF5FB",
500: "#5B9FDD",
700: "#1570C2",
900: "#3C474E",
},
p2gray: {
800: "#1C1D1E",
900: "#252627",
},
p2grad: {
100: "#739FE5",
200: "#295398",
},
p2dark: {
900: "#111111",
1000: "#000000",
},
},
dropShadow: {
"btn-dark": "0px 1px 8px rgba(11, 25, 35, 0.4)",
"btn-light": "0px 1px 8px rgba(11, 25, 35, 0.1)",
},
},
},
plugins: [],
};