-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1.64 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
import forms from '@tailwindcss/forms';
import colors from 'tailwindcss/colors';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'selector',
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./vendor/livewire/flux-pro/stubs/**/*.blade.php',
'./vendor/livewire/flux/stubs/**/*.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
abel: ['Abel', 'cursive'],
},
colors: {
laravel: {
50: '#FFE5E3', // Lightest shade
100: '#FFC9C5', // Very light shade
200: '#FFAFA9', // Lighter shade
300: '#FF9389', // Light-mid shade
400: '#FF776B', // Slightly darker
500: '#FF2D20', // Default primary color
600: '#E6291D', // Darker shade
700: '#CC2519', // Even darker
800: '#B32216', // Darker still
900: '#991D12', // Darkest shade
},
// Accent variables are defined in resources/css/app.css...
accent: {
DEFAULT: 'var(--color-accent)',
content: 'var(--color-accent-content)',
foreground: 'var(--color-accent-foreground)',
},
},
},
},
plugins: [forms, typography],
};