-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
39 lines (38 loc) · 910 Bytes
/
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
37
38
39
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
theme: {
extend: {},
fontFamily: {
filson: ['filson-pro', 'sans-serif'],
venn: ['venn-pro', 'sans-serif'],
},
},
daisyui: {
themes: [
{
mytheme: {
primary: '#0C70F2',
secondary: '#F224AC',
accent: '#F2A20C',
neutral: '#063573',
'base-100': '#051026',
info: '#FFFFFF',
success: '#36D399',
warning: '#F2D424',
error: '#F23924',
'primary-focus': '#063573',
'base-content': '#021733',
'primary-content': '#A8CDFB',
},
},
],
},
plugins: [require('daisyui'), require('@tailwindcss/typography')],
}