forked from rapidez/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (41 loc) · 1.84 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
module.exports = {
content: [
'./resources/views/**/*.blade.php',
'./resources/css/**/*.css',
'./resources/js/**/*.vue',
'./vendor/rapidez/**/*.blade.php',
'./vendor/rapidez/**/*.css',
'./vendor/rapidez/**/*.vue',
'./config/rapidez/frontend.php',
'./vendor/rapidez/core/config/rapidez/frontend.php',
'./config/rapidez/menu.php',
'./vendor/rapidez/menu/config/rapidez/menu.php',
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/tailwind.blade.php',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: 'rgb(var(--primary) / <alpha-value>)', // Theme color
text: 'rgb(var(--primary-text) / <alpha-value>)', // Text color that goes onto primary color
},
secondary: {
DEFAULT: 'rgb(var(--secondary) / <alpha-value>)', // Conversion color
text: 'rgb(var(--secondary-text) / <alpha-value>)', // Text color that goes onto secondary color
},
neutral: 'rgb(var(--neutral) / <alpha-value>)', // Default text color
inactive: 'rgb(var(--inactive) / <alpha-value>)', // Inactive text color
highlight: 'rgb(var(--highlight) / <alpha-value>)', // Background highlight color
border: 'rgb(var(--border) / <alpha-value>)', // Border color
},
borderColor: {
DEFAULT: 'rgb(var(--border) / <alpha-value>)', // Border color default so it gets used when only using border
},
},
container: {
center: true,
padding: '1.25rem',
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography'), require('tailwind-scrollbar-hide')],
}