-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (40 loc) · 1.04 KB
/
tailwind.config.ts
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
import defaultTheme from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
'./vueform.config.ts',
'./node_modules/@vueform/vueform/themes/tailwind/**/*.vue',
'./node_modules/@vueform/vueform/themes/tailwind/**/*.js',
],
theme: {
extend: {
fontFamily: {
sans: ['quicksand', 'sans-serif']
},
colors: {
primary: {
DEFAULT: '#59c3c8', // Lavender
light: '#a4f2f6', // Light variant
dark: '#3b8e94', // Dark variant
},
success: '#3ecd64',
completed: '#3ea4cd',
canceled: '#959595',
warning: '#edae56',
danger: '#d03931',
error: '#d03931',
},
},
},
darkMode: 'class', // Disable automatic dark mode
plugins: [
require("@tailwindcss/typography"),
require('@vueform/vueform/tailwind')
],
};