-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (49 loc) · 1.48 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
import typography from '@tailwindcss/typography';
import daisyui from "daisyui";
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
container: {
center: true,
},
extend: {
colors: {
'background': '#F8F8F8',
},
fontFamily: {
sans: ['Gotham Rounded Book', 'Noto Sans', 'sans-serif'],
bold: ['Gotham Rounded Bold', 'Noto Sans', 'sans-serif'],
medium: ['Gotham Rounded', 'Noto Sans', 'sans-serif']
},
screens: {
'xs': '420px',
}
},
},
plugins: [
typography, daisyui
],
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
"primary": "#5A3184",
"secondary": "#4F525B",
"accent": "#040304",
"neutral": "#A0A2A7",
"neutral-content": "#E8E8E8",
"success": "#63B259",
"success-content": "#EBF8ED",
"error": "#BA381E",
"error-content": "#F9EEEC",
},
},
]
},
}