-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 816 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 816 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue"
],
theme: {
extend: {
fontFamily: {
sans: ['Nunito', 'sans-serif'],
display: ['Quicksand', 'sans-serif'],
},
colors: {
primary: {
light: '#FF8A65', // playful orange
DEFAULT: '#FF5722',
dark: '#E64A19',
},
secondary: {
light: '#4FC3F7', // sky blue
DEFAULT: '#03A9F4',
dark: '#0288D1',
},
success: '#81C784', // friendly green
danger: '#E57373', // soft red
warning: '#FFF176', // soft yellow
}
},
},
plugins: [],
}