-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (36 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export const content = ["./components/**/*.{js,vue,ts}", "./layouts/**/*.vue", "./pages/**/*.vue", "./plugins/**/*.{js,ts}", "./app.vue", "./error.vue"]
export const theme = {
extend: {
colors: {
aniPrimary: "#3db4f2",
aniBody: "#edf1f5",
aniWhite: "#fafafa",
aniGray: "#5c728a",
aniRed: "var(--color-red)",
aniPeach: "var(--color-peach)",
aniOrange: "var(--color-orange)",
aniYellow: "var(--color-yellow)",
aniGreen: "var(--color-green)",
aniPurple: "var(--color-purple)",
},
borderRadius: {
aniRounded: "4px",
},
lineHeight: {
aniLeading: "40px",
},
boxShadow: {
aniShadowButton: "0 1px 10px 0 rgba(49,54,68,0.15)",
aniShadow: "0px 14px 30px rgba(103, 132, 187, 0.1), 0px 4px 4px rgba(103, 132, 187, 0.04)",
},
},
}
export const safelist = [
{
pattern: /bg-(gray|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fucshia|pink|rose)-(50|100|200|300|400|500|600|700|800|900)/,
},
]
export const corePlugins = {
aspectRatio: false,
}