-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 881 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 881 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
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
],
theme: {
container: {
center: true,
},
extend: {
colors: {
// light
primary: '#AD3889',
secondary: '#112943',
accent: '#f05423',
'light-text': '#999',
'dark-text': '#5B5E5E',
// dark
// dark: '#22272D',
dark: '#0A0A0A',
'primary-dark': '#AD3889',
'secondary-dark': '#15263A',
'accent-dark': '#f05423',
'light-text-dark': '#A69F94',
'dark-text-dark': '#B2ADA3',
'secondary-dark-text': '#C8C5C0',
},
},
},
// eslint-disable-next-line comma-spacing
plugins: [require('daisyui')],
darkMode: 'class',
important: true,
}