-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,svelte,js,ts}'],
theme: {
fontFamily: {
googlesansregular: ['Google Sans Display Regular', 'sans-serif'],
googlesansbold: ['Google Sans Display Bold', 'sans-serif'],
robotomono: ['Roboto Mono', 'monospace']
}
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
themes: [
{
gdglight: {
...require('daisyui/src/theming/themes')['light'],
primary: '#4285f4',
secondary: '#34a853',
accent: '#f9ab00',
neutral: '#212121',
'neutral-content': '#fff',
'base-100': '#f1f3f4',
'base-content': '#212121',
info: '#4285f4',
success: '#34a853',
warning: '#f9ab00',
error: '#ea4335',
'--rounded-btn': 'none'
}
},
{
gdgdark: {
...require('daisyui/src/theming/themes')['dark'],
primary: '#4285f4',
secondary: '#34a853',
accent: '#f9ab00',
neutral: '#212121',
'neutral-content': '#fff',
'base-100': '#212121',
'base-content': '#fff',
info: '#4285f4',
success: '#34a853',
warning: '#f9ab00',
error: '#ea4335',
'--rounded-btn': 'none'
}
}
]
}
};