-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 1.21 KB
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (38 loc) · 1.21 KB
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
import colors from 'tailwindcss/colors'
import forms from '@tailwindcss/forms';
import daisyui from 'daisyui'
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/js/**/*.js',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Satoshi', 'sans-serif'],
},
colors: {
gym: {
primary: colors.yellow[400],
secondary: colors.white,
accent: colors.yellow[200],
background: colors.black,
surface: colors.zinc[900],
'surface-hover': colors.zinc[800],
border: colors.zinc[800],
muted: colors.gray[400],
meta: colors.gray[500],
icon: colors.zinc[600],
divider: colors.zinc[700],
'text-light': colors.gray[300],
}
}
}
},
plugins: [
daisyui, forms
],
}