-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (61 loc) · 1.36 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`components/**/*.{vue,js}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`composables/**/*.{js,ts}`,
`plugins/**/*.{js,ts}`,
`App.{js,ts,vue}`,
`app.{js,ts,vue}`,
`error.{js,ts,vue}`,
],
theme: {
fontFamily: {
noto: ['Noto Serif', 'serif'],
inco: ['Inconsolata', 'monospace'],
},
extend: {
colors: {
logo: 'var(--logo)',
primary: 'var(--primary)',
secondary: 'var(--secondary)',
accent: 'var(--accent)',
neutral: 'var(--neutral)',
other: 'var(--other)',
background: 'var(--background)',
info: 'var(--info)',
success: 'var(--success)',
warning: 'var(--warning)',
error: 'var(--error)',
},
padding: {
'0dot5': '0.125rem',
},
height: {
'80vh': '80vh',
'90vh': '90vh',
'100vh': '100vh',
},
width: {
'1of2': '50%',
'1of3': '33.3333%',
'2of3': '66.6666%',
'1of4': '25%',
'3of4': '75%',
'1of5': '20%',
'2of5': '40%',
'3of5': '60%',
'4of5': '80%',
'1of6': '16.6666%',
'1of12': '8.3333%',
},
},
},
separator: '_',
plugins: [require('daisyui')],
daisyui: {
themes: [],
darkTheme: 'dark',
},
};