-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#FF6B35', // Sunset Orange
foreground: '#FFFFFF',
},
secondary: {
DEFAULT: '#F7931E', // Honey Gold
foreground: '#FFFFFF',
},
tertiary: {
DEFAULT: '#C44536', // Deep Coral
foreground: '#FFFFFF',
},
background: '#FFFBF5', // Warm white
surface: '#FFFFFF', // Pure white
text: {
primary: '#2C2C2C', // Almost black
secondary: '#6B6B6B', // Medium gray
},
border: '#E5E5E5', // Light gray
success: '#00B894', // Mint green
warning: '#FDCB6E', // Soft yellow
error: '#D63031', // Red
info: '#0984E3', // Blue
},
fontFamily: {
sans: ['Quicksand', 'sans-serif'],
}
},
},
plugins: [],
}