-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
107 lines (90 loc) · 2.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* eslint-disable global-require */
/* eslint-disable prettier/prettier */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'node_modules/daisyui/dist/**/*.js',
'node_modules/react-daisyui/dist/**/*.js',
'./src/renderer/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['"Roboto"', "sans-serif"],
mono: ['"Roboto mono"',"mono" ],
serif: ['"Roboto serif"',"serif" ],
},
},
},
plugins: [require('daisyui')],
daisyui: {
base: true,
themes: [
{
'custom-light': {
'primary' : '#5576FF',
'primary-focus' : '#74A4FF',
'primary-content' : '#FFFFFF',
'secondary' : '#617898',
'secondary-focus' : '#8BA6CA',
'secondary-content' : '#010312',
'accent' : '#22865B',
'accent-focus' : '#41be88',
'accent-content' : '#010312',
'neutral' : '#161827',
'neutral-focus' : '#4F4D51',
'neutral-content' : '#eaf0f6',
'base-100' : '#ffffff',
'base-200' : '#f7fafd',
'base-300' : '#eaf0f6',
'base-content' : '#161827',
'info' : '#0177D7',
'success' : '#009485',
'warning' : '#9F6C1F',
'error' : '#DE3603',
'--rounded-box': '1rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '0',
'--animation-input': '0',
'--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
'--border-btn': '1px',
},
},
{
'dark': {
'primary' : '#793ef9',
'primary-focus' : '#570df8',
'primary-content' : '#ffffff',
'secondary' : '#D52B9D',
'secondary-focus' : '#bd0091',
'secondary-content' : '#ffffff',
'accent' : '#008673',
'accent-focus' : '#2ba69a',
'accent-content' : '#ffffff',
'neutral' : '#2a2e37',
'neutral-focus' : '#16181d',
'neutral-content' : '#ffffff',
'base-100' : '#000413',
'base-200' : '#2a2e37',
'base-300' : '#16181d',
'base-content' : '#ebecf0',
'info' : '#66c7ff',
'success' : '#87cf3a',
'warning' : '#e1d460',
'error' : '#ff6b6b',
'--rounded-box': '1rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '1.9rem',
'--animation-btn': '.25s',
'--animation-input': '.2s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '.5rem',
'--border-btn': '1px',
},
},
],
},
darkMode: ['class', '[data-theme="dark"]']
}